
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  
  
  
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  --color-text-light: #cbd5e1;
  
  
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #e0e7ff;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.15);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
  
  
  --z-dropdown: 1000;
  --z-sticky: 100;
  --z-fixed: 999;
  --z-modal: 9999;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--text-5xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
  font-weight: 600;
}

h5 {
  font-size: var(--text-xl);
  font-weight: 600;
}

h6 {
  font-size: var(--text-lg);
  font-weight: 600;
}

p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-hover);
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

.container-sm {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-md {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-lg {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-start {
  display: flex;
  align-items: flex-start;
}

.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-lg {
  padding: var(--space-2xl);
}

.card-sm {
  padding: var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #ffffff;
}

.btn-secondary:hover {
  background: var(--color-secondary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-bg-secondary);
}

.btn-ghost:hover {
  background: var(--color-bg-secondary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--text-lg);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
}

.btn-block {
  width: 100%;
}

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  transition: all var(--transition-fast);
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--color-text-primary);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-secondary);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.badge-error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.alert {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border-left: 4px solid;
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.alert-primary {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  color: #10b981;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  color: #92400e;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #991b1b;
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-xl) 0;
}

.section-lg {
  padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
  .section,
  .section-lg {
    padding: var(--space-2xl) 0;
  }
  
  .section-sm {
    padding: var(--space-xl) 0;
  }
}

.hero {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero {
    padding: var(--space-2xl) 0;
  }
  
  .hero::before {
    width: 300px;
    height: 300px;
    right: -20%;
  }
}

.text-primary { color: var(--color-text-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-primary); }

.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }

.text-bold { font-weight: 700; }
.text-semibold { font-weight: 600; }
.text-medium { font-weight: 500; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.my-xs { margin: var(--space-xs) 0; }
.my-sm { margin: var(--space-sm) 0; }
.my-md { margin: var(--space-md) 0; }
.my-lg { margin: var(--space-lg) 0; }
.my-xl { margin: var(--space-xl) 0; }

.mx-auto { margin: 0 auto; }

.pt-xs { padding-top: var(--space-xs); }
.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }

.pb-xs { padding-bottom: var(--space-xs); }
.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }

.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

.hidden { display: none !important; }
.visible { display: block !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .show-mobile { display: none !important; }
}

.link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.link:hover {
  color: var(--color-primary-hover);
}

.link-underline {
  position: relative;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

.link-underline:hover::after {
  width: 100%;
}

ul, ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

hr {
  border: none;
  height: 1px;
  background: var(--color-bg-secondary);
  margin: var(--space-lg) 0;
}

blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
  color: var(--color-text-secondary);
  font-style: italic;
}

code {
  background: var(--color-bg-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: var(--color-primary);
}

pre {
  background: var(--color-bg-secondary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-md);
}

pre code {
  background: none;
  padding: 0;
  color: var(--color-text-primary);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}

th {
  background: var(--color-bg-secondary);
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  color: var(--color-text-primary);
  border-bottom: 2px solid var(--color-bg-secondary);
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-bg-secondary);
  color: var(--color-text-secondary);
}

tr:hover {
  background: var(--color-bg-tertiary);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.breadcrumb-item {
  color: var(--color-text-secondary);
}

.breadcrumb-item.active {
  color: var(--color-text-primary);
  font-weight: 600;
}

.breadcrumb-item::after {
  content: '/';
  margin-left: var(--space-sm);
  color: var(--color-text-muted);
}

.breadcrumb-item:last-child::after {
  content: '';
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fadeIn {
  animation: fadeIn var(--transition-slow) ease-out;
}

.animate-slideInUp {
  animation: slideInUp var(--transition-slow) ease-out;
}

.animate-slideInDown {
  animation: slideInDown var(--transition-slow) ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft var(--transition-slow) ease-out;
}

.animate-slideInRight {
  animation: slideInRight var(--transition-slow) ease-out;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 1s ease-in-out infinite;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-shadow:hover {
  box-shadow: var(--shadow-lg);
}

.transition-all {
  transition: all var(--transition-base);
}

.transition-colors {
  transition: color var(--transition-fast), background var(--transition-fast);
}

.transition-transform {
  transition: transform var(--transition-fast);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .no-print {
    display: none !important;
  }
}

@media (prefers-color-scheme: dark) {
  
}
.comm-hub {
width: 100%;
background: #f8fafc;
}

.hero-section-index {
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
padding: clamp(3rem, 8vw, 6rem) 0;
position: relative;
overflow: hidden;
}

.hero-content-index {
display: flex;
flex-direction: column;
gap: clamp(2rem, 5vw, 3rem);
align-items: center;
}

@media (min-width: 768px) {
.hero-content-index {
flex-direction: row;
align-items: center;
gap: clamp(2rem, 6vw, 4rem);
}
}

.hero-text-index {
flex: 1 1 45%;
display: flex;
flex-direction: column;
gap: clamp(1rem, 3vw, 1.5rem);
}

.hero-title-index {
font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
color: #0f172a;
font-weight: 700;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
word-break: break-all;
}

.hero-subtitle-index {
font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
color: #475569;
line-height: 1.6;
margin: 0;
}

.hero-ctas-index {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 1rem 0;
}

.btn-primary-index {
background: #4f46e5;
color: #ffffff;
padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.btn-primary-index:hover {
background: #4338ca;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-secondary-index {
background: transparent;
color: #4f46e5;
padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
border: 2px solid #4f46e5;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.btn-secondary-index:hover {
background: #e0e7ff;
transform: translateY(-2px);
}

.btn-outline-index {
background: transparent;
color: #4f46e5;
padding: 0.75rem 1.5rem;
border: 2px solid #4f46e5;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.btn-outline-index:hover {
background: #e0e7ff;
}

.hero-stats-index {
display: flex;
flex-wrap: wrap;
gap: clamp(1rem, 3vw, 2rem);
margin-top: 2rem;
}

.stat-card-index {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
padding: 1.5rem;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
flex: 1 1 120px;
min-width: 120px;
}

.stat-number-index {
font-size: clamp(1.5rem, 3vw, 2.5rem);
font-weight: 700;
color: #4f46e5;
}

.stat-label-index {
font-size: 0.875rem;
color: #475569;
text-align: center;
}

.hero-image-index {
flex: 1 1 45%;
width: 100%;
display: none;
}

@media (min-width: 768px) {
.hero-image-index {
display: block;
}
}

.hero-img-index {
width: 100%;
height: auto;
max-height: 450px;
object-fit: cover;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.about-section-index {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.about-content-index {
display: flex;
flex-direction: column;
gap: clamp(2rem, 5vw, 3rem);
align-items: center;
}

@media (min-width: 768px) {
.about-content-index {
flex-direction: row;
gap: clamp(2rem, 6vw, 4rem);
}
}

.about-text-index {
flex: 1 1 45%;
display: flex;
flex-direction: column;
gap: 1rem;
}

.about-title-index {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
word-wrap: break-word;
overflow-wrap: break-word;
}

.about-description-index {
font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
color: #475569;
margin: 0;
line-height: 1.6;
}

.about-text-body-index {
font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
color: #475569;
margin: 0;
line-height: 1.6;
}

.about-highlights-index {
display: flex;
flex-direction: column;
gap: 1rem;
margin-top: 1.5rem;
}

.highlight-item-index {
display: flex;
align-items: flex-start;
gap: 1rem;
}

.highlight-icon-index {
font-size: 1.5rem;
color: #10b981;
font-weight: 700;
flex-shrink: 0;
}

.highlight-text-index {
font-size: 0.95rem;
color: #475569;
}

.about-image-index {
flex: 1 1 45%;
width: 100%;
display: none;
}

@media (min-width: 768px) {
.about-image-index {
display: block;
}
}

.about-img-index {
width: 100%;
height: auto;
max-height: 450px;
object-fit: cover;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.features-section-index {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.features-content-index {
display: flex;
flex-direction: column;
gap: clamp(2rem, 5vw, 3rem);
}

.features-header-index {
text-align: center;
margin-bottom: 2rem;
}

.features-title-index {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
margin-bottom: 1rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.features-subtitle-index {
font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
color: #475569;
margin: 0;
}

.features-cards-index {
display: flex;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2rem);
justify-content: center;
}

.feature-card-index {
flex: 1 1 280px;
max-width: 380px;
background: #ffffff;
border-radius: 12px;
padding: clamp(1.5rem, 3vw, 2rem);
box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
gap: 1rem;
}

.feature-card-index:hover {
transform: translateY(-4px);
box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.feature-icon-index {
width: 50px;
height: 50px;
background: #e0e7ff;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: #4f46e5;
font-size: 1.5rem;
}

.feature-title-index {
font-size: 1.125rem;
color: #0f172a;
font-weight: 600;
margin: 0;
}

.feature-text-index {
font-size: 0.95rem;
color: #475569;
margin: 0;
line-height: 1.5;
}

.process-section-index {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.process-content-index {
display: flex;
flex-direction: column;
gap: clamp(2rem, 5vw, 3rem);
}

.process-header-index {
text-align: center;
margin-bottom: 2rem;
}

.process-title-index {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
margin-bottom: 1rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.process-subtitle-index {
font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
color: #475569;
margin: 0;
}

.process-steps-index {
display: flex;
flex-direction: column;
gap: clamp(2rem, 4vw, 3rem);
}

.process-step-index {
display: flex;
gap: clamp(1.5rem, 3vw, 2.5rem);
align-items: flex-start;
}

.step-number-index {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 800;
color: #4f46e5;
flex-shrink: 0;
min-width: 70px;
text-align: center;
}

.step-content-index {
flex: 1;
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.step-title-index {
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
color: #0f172a;
font-weight: 600;
margin: 0;
}

.step-text-index {
font-size: 0.95rem;
color: #475569;
margin: 0;
line-height: 1.6;
}

.posts-section-index {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.posts-content-index {
display: flex;
flex-direction: column;
gap: clamp(2rem, 5vw, 3rem);
}

.posts-header-index {
text-align: center;
margin-bottom: 2rem;
}

.posts-title-index {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
margin-bottom: 1rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.posts-subtitle-index {
font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
color: #475569;
margin: 0;
}

.posts-cards-index {
display: flex;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2rem);
justify-content: center;
}

.post-card-index {
flex: 1 1 300px;
max-width: 400px;
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}

.post-card-index:hover {
transform: translateY(-4px);
box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.post-image-index {
width: 100%;
height: 220px;
overflow: hidden;
background: #e2e8f0;
}

.post-img-index {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-body-index {
padding: clamp(1.5rem, 3vw, 2rem);
display: flex;
flex-direction: column;
gap: 1rem;
flex: 1;
}

.post-title-index {
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
color: #0f172a;
font-weight: 600;
margin: 0;
line-height: 1.4;
}

.post-text-index {
font-size: 0.9rem;
color: #475569;
margin: 0;
line-height: 1.6;
flex: 1;
}

.post-link-index {
color: #4f46e5;
font-weight: 600;
text-decoration: none;
transition: color 0.3s ease;
align-self: flex-start;
}

.post-link-index:hover {
color: #4338ca;
text-decoration: underline;
}

.posts-footer-index {
text-align: center;
margin-top: 2rem;
}

.testimonials-section-index {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.testimonials-content-index {
display: flex;
flex-direction: column;
gap: clamp(2rem, 5vw, 3rem);
}

.testimonials-header-index {
text-align: center;
margin-bottom: 2rem;
}

.testimonials-title-index {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
margin-bottom: 1rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.testimonials-subtitle-index {
font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
color: #475569;
margin: 0;
}

.testimonials-cards-index {
display: flex;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2rem);
justify-content: center;
}

.testimonial-card-index {
flex: 1 1 300px;
max-width: 380px;
background: #f8fafc;
border-radius: 12px;
padding: clamp(1.5rem, 3vw, 2rem);
border-left: 4px solid #4f46e5;
display: flex;
flex-direction: column;
gap: 1rem;
}

.testimonial-text-index {
font-size: 0.95rem;
color: #475569;
margin: 0;
line-height: 1.6;
font-style: italic;
}

.testimonial-author-index {
display: flex;
flex-direction: column;
gap: 0.5rem;
margin-top: 1rem;
}

.author-name-index {
font-size: 0.95rem;
color: #0f172a;
font-weight: 600;
}

.faq-section-index {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.faq-content-index {
display: flex;
flex-direction: column;
gap: clamp(2rem, 5vw, 3rem);
}

.faq-header-index {
text-align: center;
margin-bottom: 2rem;
}

.faq-title-index {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
margin-bottom: 1rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.faq-subtitle-index {
font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
color: #475569;
margin: 0;
}

.faq-items-index {
display: flex;
flex-direction: column;
gap: 1.5rem;
max-width: 800px;
margin: 0 auto;
width: 100%;
}

.faq-item-index {
background: #ffffff;
border-radius: 8px;
padding: clamp(1.25rem, 3vw, 1.75rem);
box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.faq-question-index {
font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
color: #0f172a;
font-weight: 600;
margin: 0 0 0.75rem 0;
}

.faq-answer-index {
font-size: 0.95rem;
color: #475569;
margin: 0;
line-height: 1.6;
}

.benefits-section-index {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.benefits-content-index {
display: flex;
flex-direction: column;
gap: clamp(2rem, 5vw, 3rem);
}

.benefits-header-index {
text-align: center;
margin-bottom: 2rem;
}

.benefits-title-index {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: #0f172a;
font-weight: 700;
margin-bottom: 1rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.benefits-subtitle-index {
font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
color: #475569;
margin: 0;
}

.benefits-grid-index {
display: flex;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2rem);
justify-content: center;
}

.benefit-item-index {
flex: 1 1 240px;
max-width: 300px;
background: #f8fafc;
border-radius: 12px;
padding: clamp(1.5rem, 3vw, 2rem);
display: flex;
flex-direction: column;
gap: 1rem;
text-align: center;
}

.benefit-icon-index {
width: 50px;
height: 50px;
background: #e0e7ff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #4f46e5;
font-size: 1.5rem;
margin: 0 auto;
}

.benefit-title-index {
font-size: 1.05rem;
color: #0f172a;
font-weight: 600;
margin: 0;
}

.benefit-text-index {
font-size: 0.9rem;
color: #475569;
margin: 0;
line-height: 1.5;
}

.cta-section-index {
background: #e0e7ff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.cta-content-index {
display: flex;
flex-direction: column;
gap: 2rem;
align-items: center;
}

.cta-box-index {
background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
padding: clamp(2rem, 5vw, 3.5rem);
border-radius: 16px;
text-align: center;
color: #ffffff;
max-width: 700px;
}

.cta-title-index {
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
color: #ffffff;
font-weight: 700;
margin: 0 0 1rem 0;
word-wrap: break-word;
overflow-wrap: break-word;
}

.cta-text-index {
font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
color: rgba(255, 255, 255, 0.95);
margin: 0 0 1.5rem 0;
line-height: 1.6;
}

.cta-buttons-index {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}

.cookie-banner-index {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #1e293b;
padding: clamp(1rem, 2vw, 1.5rem);
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 1.5rem;
z-index: 9999;
box-shadow: 0 -4px 12px rgba(15, 23, 42, 0.2);
}

.cookie-banner-index.hidden {
display: none;
}

.cookie-banner-text-index {
color: #e2e8f0;
font-size: 0.875rem;
margin: 0;
line-height: 1.5;
max-width: 400px;
}

.cookie-banner-buttons-index {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
padding: 0.5rem 1.25rem;
border: none;
border-radius: 6px;
font-weight: 500;
cursor: pointer;
font-size: 0.875rem;
transition: all 0.3s ease;
}

.cookie-btn-accept-index {
background: #4f46e5;
color: #ffffff;
}

.cookie-btn-accept-index:hover {
background: #4338ca;
}

.cookie-btn-decline-index {
background: transparent;
color: #e2e8f0;
border: 1px solid rgba(226, 232, 240, 0.3);
}

.cookie-btn-decline-index:hover {
border-color: #e2e8f0;
}

.container {
max-width: 1440px;
width: 100%;
margin: 0 auto;
padding: 0 clamp(1rem, 4vw, 2rem);
}

@media (max-width: 768px) {
.cta-buttons-index {
flex-direction: column;
width: 100%;
}

.cta-buttons-index .btn-primary-index,
.cta-buttons-index .btn-outline-index {
width: 100%;
}
}

    .footer {
  background: var(--color-text-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  color: var(--color-text-light);
  overflow: hidden;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.footer-content {
  display: block;
}

.footer-about {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-about h3 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-about p {
  color: var(--color-text-light);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 500px;
}

.footer-sections {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-nav,
.footer-contact,
.footer-legal {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-nav h4,
.footer-contact h4,
.footer-legal h4 {
  font-family: var(--font-primary);
  color: #ffffff;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li,
.footer-legal-list li {
  margin-bottom: 0.75rem;
}

.footer-nav a,
.footer-legal a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: color var(--transition-base);
  display: inline-block;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-contact p {
  color: var(--color-text-light);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-copyright {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(203, 213, 225, 0.2);
  text-align: center;
}

.footer-copyright p {
  color: var(--color-text-light);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-sections {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .footer-nav,
  .footer-contact,
  .footer-legal {
    flex: 1 1 100%;
  }

  .footer-about {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 480px) {
  .footer-nav-list li,
  .footer-legal-list li {
    margin-bottom: 0.6rem;
  }

  .footer-nav h4,
  .footer-contact h4,
  .footer-legal h4 {
    font-size: 0.95rem;
  }
}
    

.category-page-communication-skills {
  background: #f8fafc;
  color: #0f172a;
  overflow: hidden;
}

.hero-section-communication-skills {
  background: linear-gradient(135deg, #e0e7ff 0%, #f0f4ff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-communication-skills {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-text-communication-skills {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title-communication-skills {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle-communication-skills {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
}

.hero-description-communication-skills {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.posts-section-communication-skills {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-communication-skills {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.posts-header-communication-skills {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.posts-title-communication-skills {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 700;
}

.posts-subtitle-communication-skills {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.posts-grid-communication-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.card-communication-skills {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 420px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.card-communication-skills:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.card-communication-skills img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-communication-skills {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.card-description-communication-skills {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.card-meta-communication-skills {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(0.75rem, 1.5vw, 1rem);
  border-top: 1px solid #e2e8f0;
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
}

.meta-reading-communication-skills,
.meta-level-communication-skills,
.meta-date-communication-skills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
}

.meta-reading-communication-skills i,
.meta-level-communication-skills i,
.meta-date-communication-skills i {
  color: #4f46e5;
  font-size: 0.875rem;
}

.card-link-communication-skills {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.card-link-communication-skills:hover {
  color: #4338ca;
  transform: translateX(4px);
}

.principles-section-communication-skills {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-content-communication-skills {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.principles-header-communication-skills {
  text-align: center;
}

.principles-title-communication-skills {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 0;
  font-weight: 700;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.principles-list-communication-skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.principle-item-communication-skills {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.principle-number-communication-skills {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #4f46e5;
  font-weight: 700;
  margin: 0 0 clamp(0.5rem, 1vw, 1rem) 0;
  line-height: 1;
}

.principle-name-communication-skills {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #0f172a;
  font-weight: 700;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
}

.principle-text-communication-skills {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.insights-section-communication-skills {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-communication-skills {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.insights-header-communication-skills {
  text-align: center;
}

.insights-title-communication-skills {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1.25rem) 0;
  font-weight: 700;
}

.insights-intro-communication-skills {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.insights-text-communication-skills {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.insights-text-communication-skills p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-communication-skills {
    padding: 2rem 0;
  }

  .posts-section-communication-skills {
    padding: 2rem 0;
  }

  .principles-section-communication-skills {
    padding: 2rem 0;
  }

  .insights-section-communication-skills {
    padding: 2rem 0;
  }

  .principles-list-communication-skills {
    grid-template-columns: 1fr;
  }

  .card-communication-skills {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-text-communication-skills {
    padding: 0;
  }

  .card-meta-communication-skills {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .posts-grid-communication-skills {
    gap: 1rem;
  }
}

.main-selbstvertrauen-beim-sprechen {
  width: 100%;
}

.hero-section-selbstvertrauen-beim-sprechen {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.breadcrumbs-selbstvertrauen-beim-sprechen a {
  color: #4f46e5;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}

.breadcrumbs-selbstvertrauen-beim-sprechen a:hover {
  color: #4338ca;
  text-decoration: underline;
}

.breadcrumbs-selbstvertrauen-beim-sprechen span {
  color: #94a3b8;
}

.hero-content-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-selbstvertrauen-beim-sprechen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-selbstvertrauen-beim-sprechen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-selbstvertrauen-beim-sprechen {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-selbstvertrauen-beim-sprechen {
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.7;
}

.hero-meta-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #64748b;
}

.meta-item-selbstvertrauen-beim-sprechen {
  color: #64748b;
}

.meta-separator-selbstvertrauen-beim-sprechen {
  color: #cbd5e1;
}

.hero-img-selbstvertrauen-beim-sprechen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .hero-content-selbstvertrauen-beim-sprechen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-text-selbstvertrauen-beim-sprechen,
  .hero-image-selbstvertrauen-beim-sprechen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-selbstvertrauen-beim-sprechen {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .hero-description-selbstvertrauen-beim-sprechen {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  }

  .hero-img-selbstvertrauen-beim-sprechen {
    max-height: 350px;
  }
}

.intro-section-selbstvertrauen-beim-sprechen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-selbstvertrauen-beim-sprechen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-selbstvertrauen-beim-sprechen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-selbstvertrauen-beim-sprechen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-paragraph-selbstvertrauen-beim-sprechen {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.intro-img-selbstvertrauen-beim-sprechen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .intro-content-selbstvertrauen-beim-sprechen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .intro-text-selbstvertrauen-beim-sprechen,
  .intro-image-selbstvertrauen-beim-sprechen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-img-selbstvertrauen-beim-sprechen {
    max-height: 300px;
  }
}

.techniques-section-selbstvertrauen-beim-sprechen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-content-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.techniques-title-selbstvertrauen-beim-sprechen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.technique-item-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.technique-item-selbstvertrauen-beim-sprechen:nth-child(even) {
  flex-direction: row-reverse;
}

.technique-text-selbstvertrauen-beim-sprechen {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-image-selbstvertrauen-beim-sprechen {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-subtitle-selbstvertrauen-beim-sprechen {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.technique-description-selbstvertrauen-beim-sprechen {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.technique-img-selbstvertrauen-beim-sprechen {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .technique-item-selbstvertrauen-beim-sprechen,
  .technique-item-selbstvertrauen-beim-sprechen:nth-child(even) {
    flex-direction: column;
  }

  .technique-text-selbstvertrauen-beim-sprechen,
  .technique-image-selbstvertrauen-beim-sprechen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .technique-img-selbstvertrauen-beim-sprechen {
    max-height: 300px;
  }
}

.preparation-section-selbstvertrauen-beim-sprechen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.preparation-content-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.preparation-title-selbstvertrauen-beim-sprechen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.preparation-steps-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-selbstvertrauen-beim-sprechen {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.25rem);
  transition: all 200ms ease-in-out;
}

.step-card-selbstvertrauen-beim-sprechen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

.step-number-selbstvertrauen-beim-sprechen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #4f46e5;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.step-body-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.step-title-selbstvertrauen-beim-sprechen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.step-text-selbstvertrauen-beim-sprechen {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-card-selbstvertrauen-beim-sprechen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mindset-section-selbstvertrauen-beim-sprechen {
  background: #e2e8f0;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mindset-content-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mindset-text-selbstvertrauen-beim-sprechen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-image-selbstvertrauen-beim-sprechen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-title-selbstvertrauen-beim-sprechen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mindset-paragraph-selbstvertrauen-beim-sprechen {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.mindset-img-selbstvertrauen-beim-sprechen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
  .mindset-content-selbstvertrauen-beim-sprechen {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .mindset-text-selbstvertrauen-beim-sprechen,
  .mindset-image-selbstvertrauen-beim-sprechen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .mindset-img-selbstvertrauen-beim-sprechen {
    max-height: 300px;
  }
}

.practice-section-selbstvertrauen-beim-sprechen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-content-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.practice-title-selbstvertrauen-beim-sprechen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.practice-intro-selbstvertrauen-beim-sprechen {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #475569;
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.7;
}

.practice-list-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.list-item-selbstvertrauen-beim-sprechen {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #4f46e5;
}

.list-title-selbstvertrauen-beim-sprechen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.list-text-selbstvertrauen-beim-sprechen {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

.conclusion-section-selbstvertrauen-beim-sprechen {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-box-selbstvertrauen-beim-sprechen {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

.conclusion-title-selbstvertrauen-beim-sprechen {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-text-selbstvertrauen-beim-sprechen {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.btn-back-selbstvertrauen-beim-sprechen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #4f46e5;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 600;
  transition: all 200ms ease-in-out;
}

.btn-back-selbstvertrauen-beim-sprechen:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.1);
}

.disclaimer-section-selbstvertrauen-beim-sprechen {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-selbstvertrauen-beim-sprechen {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.disclaimer-title-selbstvertrauen-beim-sprechen {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-selbstvertrauen-beim-sprechen {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

.related-section-selbstvertrauen-beim-sprechen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-selbstvertrauen-beim-sprechen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.related-cards-selbstvertrauen-beim-sprechen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-selbstvertrauen-beim-sprechen {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.1);
  transition: all 200ms ease-in-out;
  display: flex;
  flex-direction: column;
}

.related-card-selbstvertrauen-beim-sprechen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

.related-card-img-selbstvertrauen-beim-sprechen {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-title-selbstvertrauen-beim-sprechen {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(0.5rem, 1vw, 0.75rem);
}

.related-card-text-selbstvertrauen-beim-sprechen {
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  color: #475569;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-selbstvertrauen-beim-sprechen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  transition: color 150ms ease-in-out;
}

.related-card-link-selbstvertrauen-beim-sprechen:hover {
  color: #4338ca;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-selbstvertrauen-beim-sprechen {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-selbstvertrauen-beim-sprechen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.main-aktives-zuhoeren-techniken {
  width: 100%;
  overflow: hidden;
}

.hero-section-aktives-zuhoeren-techniken {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-aktives-zuhoeren-techniken {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-aktives-zuhoeren-techniken a {
  color: #4f46e5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-aktives-zuhoeren-techniken a:hover {
  color: #4338ca;
  text-decoration: underline;
}

.breadcrumbs-aktives-zuhoeren-techniken span {
  color: #94a3b8;
}

.breadcrumbs-aktives-zuhoeren-techniken span:last-child {
  color: #0f172a;
  font-weight: 600;
}

.hero-content-aktives-zuhoeren-techniken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-aktives-zuhoeren-techniken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-aktives-zuhoeren-techniken {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-aktives-zuhoeren-techniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-aktives-zuhoeren-techniken {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.meta-item-aktives-zuhoeren-techniken {
  color: #475569;
  font-weight: 500;
}

.meta-divider-aktives-zuhoeren-techniken {
  color: #cbd5e1;
}

.hero-image-aktives-zuhoeren-techniken {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.hero-img-aktives-zuhoeren-techniken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-aktives-zuhoeren-techniken {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hero-text-aktives-zuhoeren-techniken,
  .hero-image-aktives-zuhoeren-techniken {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-image-aktives-zuhoeren-techniken {
    min-height: 250px;
  }
}

.intro-section-aktives-zuhoeren-techniken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-aktives-zuhoeren-techniken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-aktives-zuhoeren-techniken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-paragraph-aktives-zuhoeren-techniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-aktives-zuhoeren-techniken {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.intro-image-aktives-zuhoeren-techniken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-aktives-zuhoeren-techniken {
    flex-direction: column;
  }
  
  .intro-text-aktives-zuhoeren-techniken,
  .intro-image-aktives-zuhoeren-techniken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-aktives-zuhoeren-techniken {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-content-aktives-zuhoeren-techniken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.benefits-title-aktives-zuhoeren-techniken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-grid-aktives-zuhoeren-techniken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.benefit-card-aktives-zuhoeren-techniken {
  flex: 1 1 calc(50% - clamp(0.5rem, 1.5vw, 1rem));
  max-width: 280px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(8px, 2vw, 12px);
  text-align: center;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
  transition: all 0.3s ease;
}

.benefit-card-aktives-zuhoeren-techniken:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.benefit-icon-aktives-zuhoeren-techniken {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #4f46e5;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.benefit-heading-aktives-zuhoeren-techniken {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.benefit-text-aktives-zuhoeren-techniken {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefit-card-aktives-zuhoeren-techniken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-section-aktives-zuhoeren-techniken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-content-aktives-zuhoeren-techniken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.techniques-title-aktives-zuhoeren-techniken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.technique-block-aktives-zuhoeren-techniken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.technique-block-aktives-zuhoeren-techniken:nth-child(even) {
  flex-direction: row-reverse;
}

.technique-text-aktives-zuhoeren-techniken {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-heading-aktives-zuhoeren-techniken {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.technique-paragraph-aktives-zuhoeren-techniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.technique-image-aktives-zuhoeren-techniken {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.technique-image-aktives-zuhoeren-techniken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 12px);
  display: block;
}

@media (max-width: 768px) {
  .technique-block-aktives-zuhoeren-techniken,
  .technique-block-aktives-zuhoeren-techniken:nth-child(even) {
    flex-direction: column;
  }
  
  .technique-text-aktives-zuhoeren-techniken,
  .technique-image-aktives-zuhoeren-techniken {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .technique-image-aktives-zuhoeren-techniken {
    min-height: 250px;
  }
}

.mistakes-section-aktives-zuhoeren-techniken {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mistakes-content-aktives-zuhoeren-techniken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.mistakes-title-aktives-zuhoeren-techniken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mistakes-wrapper-aktives-zuhoeren-techniken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mistakes-text-aktives-zuhoeren-techniken {
  flex: 1 1 50%;
  max-width: 50%;
}

.mistakes-paragraph-aktives-zuhoeren-techniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mistakes-list-aktives-zuhoeren-techniken {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mistake-item-aktives-zuhoeren-techniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding-left: 0;
}

.mistake-item-aktives-zuhoeren-techniken strong {
  color: #0f172a;
  font-weight: 700;
}

.mistakes-image-aktives-zuhoeren-techniken {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.mistakes-image-aktives-zuhoeren-techniken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 12px);
  display: block;
}

@media (max-width: 768px) {
  .mistakes-wrapper-aktives-zuhoeren-techniken {
    flex-direction: column;
  }
  
  .mistakes-text-aktives-zuhoeren-techniken,
  .mistakes-image-aktives-zuhoeren-techniken {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .mistakes-image-aktives-zuhoeren-techniken {
    min-height: 250px;
  }
}

.practice-section-aktives-zuhoeren-techniken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-content-aktives-zuhoeren-techniken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.practice-title-aktives-zuhoeren-techniken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-steps-aktives-zuhoeren-techniken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.practice-step-aktives-zuhoeren-techniken {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-number-aktives-zuhoeren-techniken {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #4f46e5;
  line-height: 1;
}

.step-content-aktives-zuhoeren-techniken {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.step-title-aktives-zuhoeren-techniken {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 700;
}

.step-text-aktives-zuhoeren-techniken {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .practice-step-aktives-zuhoeren-techniken {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
  }
}

@media (max-width: 640px) {
  .practice-step-aktives-zuhoeren-techniken {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.quote-section-aktives-zuhoeren-techniken {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-aktives-zuhoeren-techniken {
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-quote-aktives-zuhoeren-techniken {
  max-width: 700px;
  text-align: center;
  border: none;
  padding: 0;
  background: none;
  margin: 0;
}

.quote-text-aktives-zuhoeren-techniken {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: #ffffff;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-aktives-zuhoeren-techniken {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #e0e7ff;
  font-style: normal;
  display: block;
}

.conclusion-section-aktives-zuhoeren-techniken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-aktives-zuhoeren-techniken {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-title-aktives-zuhoeren-techniken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-aktives-zuhoeren-techniken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.cta-box-aktives-zuhoeren-techniken {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: clamp(8px, 2vw, 16px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 2rem);
}

.cta-title-aktives-zuhoeren-techniken {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-aktives-zuhoeren-techniken {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #e0e7ff;
  line-height: 1.6;
}

.btn-cta-aktives-zuhoeren-techniken {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #4f46e5;
  text-decoration: none;
  border-radius: clamp(6px, 1vw, 8px);
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 0 auto;
}

.btn-cta-aktives-zuhoeren-techniken:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-aktives-zuhoeren-techniken {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-aktives-zuhoeren-techniken {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #4f46e5;
  border-radius: clamp(6px, 1vw, 8px);
}

.disclaimer-title-aktives-zuhoeren-techniken {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-aktives-zuhoeren-techniken {
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.related-section-aktives-zuhoeren-techniken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-aktives-zuhoeren-techniken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-aktives-zuhoeren-techniken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-grid-aktives-zuhoeren-techniken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-aktives-zuhoeren-techniken {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  min-width: 280px;
  max-width: 380px;
  background: #f8fafc;
  border-radius: clamp(8px, 2vw, 12px);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
}

.related-card-aktives-zuhoeren-techniken:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.related-image-aktives-zuhoeren-techniken {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-image-aktives-zuhoeren-techniken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-aktives-zuhoeren-techniken:hover .related-image-aktives-zuhoeren-techniken img {
  transform: scale(1.05);
}

.related-text-aktives-zuhoeren-techniken {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  flex: 1;
}

.related-card-title-aktives-zuhoeren-techniken {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-aktives-zuhoeren-techniken {
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  color: #475569;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .related-card-aktives-zuhoeren-techniken {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }
}

@media (max-width: 640px) {
  .related-card-aktives-zuhoeren-techniken {
    flex: 1 1 100%;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
}

@media (max-width: 480px) {
  .hero-section-aktives-zuhoeren-techniken,
  .intro-section-aktives-zuhoeren-techniken,
  .benefits-section-aktives-zuhoeren-techniken,
  .techniques-section-aktives-zuhoeren-techniken,
  .mistakes-section-aktives-zuhoeren-techniken,
  .practice-section-aktives-zuhoeren-techniken,
  .quote-section-aktives-zuhoeren-techniken,
  .conclusion-section-aktives-zuhoeren-techniken,
  .disclaimer-section-aktives-zuhoeren-techniken,
  .related-section-aktives-zuhoeren-techniken {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

.main-emotionale-intelligenz-kommunikation {
  width: 100%;
  overflow: hidden;
}

.hero-section-emotionale-intelligenz-kommunikation {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-emotionale-intelligenz-kommunikation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-emotionale-intelligenz-kommunikation {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-emotionale-intelligenz-kommunikation {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-emotionale-intelligenz-kommunikation {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-lead-emotionale-intelligenz-kommunikation {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.breadcrumbs-emotionale-intelligenz-kommunikation {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  color: #94a3b8;
}

.breadcrumbs-emotionale-intelligenz-kommunikation a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-emotionale-intelligenz-kommunikation a:hover {
  color: #0891b2;
  text-decoration: underline;
}

.breadcrumbs-emotionale-intelligenz-kommunikation span {
  color: #64748b;
}

.hero-meta-emotionale-intelligenz-kommunikation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #94a3b8;
}

.meta-item-emotionale-intelligenz-kommunikation {
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 20px;
  color: #06b6d4;
}

.hero-img-emotionale-intelligenz-kommunikation {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.intro-section-emotionale-intelligenz-kommunikation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-emotionale-intelligenz-kommunikation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-emotionale-intelligenz-kommunikation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-emotionale-intelligenz-kommunikation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-emotionale-intelligenz-kommunikation {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-emotionale-intelligenz-kommunikation {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #334155;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.intro-image-emotionale-intelligenz-kommunikation img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.pillars-section-emotionale-intelligenz-kommunikation {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.pillars-content-emotionale-intelligenz-kommunikation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.pillars-header-emotionale-intelligenz-kommunikation {
  text-align: center;
}

.pillars-title-emotionale-intelligenz-kommunikation {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pillars-subtitle-emotionale-intelligenz-kommunikation {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.pillars-grid-emotionale-intelligenz-kommunikation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.pillar-card-emotionale-intelligenz-kommunikation {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  max-width: 350px;
  background: rgba(30, 41, 59, 0.6);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.pillar-card-emotionale-intelligenz-kommunikation:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateY(-4px);
}

.pillar-number-emotionale-intelligenz-kommunikation {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.pillar-card-title-emotionale-intelligenz-kommunikation {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

.pillar-card-text-emotionale-intelligenz-kommunikation {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-emotionale-intelligenz-kommunikation {
    flex-direction: column;
  }

  .hero-text-emotionale-intelligenz-kommunikation,
  .hero-image-emotionale-intelligenz-kommunikation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-content-emotionale-intelligenz-kommunikation {
    flex-direction: column;
  }

  .intro-text-emotionale-intelligenz-kommunikation,
  .intro-image-emotionale-intelligenz-kommunikation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .pillar-card-emotionale-intelligenz-kommunikation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-emotionale-intelligenz-kommunikation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-content-emotionale-intelligenz-kommunikation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.practice-text-emotionale-intelligenz-kommunikation {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-emotionale-intelligenz-kommunikation {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-emotionale-intelligenz-kommunikation {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-intro-emotionale-intelligenz-kommunikation {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #334155;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.practice-steps-emotionale-intelligenz-kommunikation {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-item-emotionale-intelligenz-kommunikation {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-left: 4px solid #06b6d4;
  border-radius: 6px;
}

.step-title-emotionale-intelligenz-kommunikation {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-text-emotionale-intelligenz-kommunikation {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #334155;
  line-height: 1.6;
  margin: 0;
}

.practice-image-emotionale-intelligenz-kommunikation img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.communication-section-emotionale-intelligenz-kommunikation {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.communication-content-emotionale-intelligenz-kommunikation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.communication-image-emotionale-intelligenz-kommunikation {
  flex: 1 1 50%;
  max-width: 50%;
}

.communication-text-emotionale-intelligenz-kommunikation {
  flex: 1 1 50%;
  max-width: 50%;
}

.communication-title-emotionale-intelligenz-kommunikation {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.communication-paragraph-emotionale-intelligenz-kommunikation {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.communication-highlight-emotionale-intelligenz-kommunikation {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(6, 182, 212, 0.1);
  border-left: 4px solid #06b6d4;
  border-radius: 6px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-emotionale-intelligenz-kommunikation {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  margin: 0;
  font-style: italic;
  line-height: 1.7;
}

.communication-image-emotionale-intelligenz-kommunikation img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .practice-content-emotionale-intelligenz-kommunikation {
    flex-direction: column;
  }

  .practice-text-emotionale-intelligenz-kommunikation,
  .practice-image-emotionale-intelligenz-kommunikation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .communication-content-emotionale-intelligenz-kommunikation {
    flex-direction: column;
  }

  .communication-image-emotionale-intelligenz-kommunikation,
  .communication-text-emotionale-intelligenz-kommunikation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.impact-section-emotionale-intelligenz-kommunikation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.impact-content-emotionale-intelligenz-kommunikation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.impact-header-emotionale-intelligenz-kommunikation {
  text-align: center;
}

.impact-title-emotionale-intelligenz-kommunikation {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.impact-subtitle-emotionale-intelligenz-kommunikation {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #334155;
  line-height: 1.6;
}

.impact-columns-emotionale-intelligenz-kommunikation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.impact-column-emotionale-intelligenz-kommunikation {
  flex: 1 1 calc(50% - clamp(1rem, 2vw, 1.5rem));
  max-width: 400px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.impact-column-title-emotionale-intelligenz-kommunikation {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.impact-column-text-emotionale-intelligenz-kommunikation {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .impact-columns-emotionale-intelligenz-kommunikation {
    flex-direction: column;
  }

  .impact-column-emotionale-intelligenz-kommunikation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.journey-section-emotionale-intelligenz-kommunikation {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.journey-content-emotionale-intelligenz-kommunikation {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.journey-title-emotionale-intelligenz-kommunikation {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.journey-text-emotionale-intelligenz-kommunikation {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.journey-cta-emotionale-intelligenz-kommunikation {
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-link-emotionale-intelligenz-kommunikation {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #06b6d4;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-link-emotionale-intelligenz-kommunikation:hover {
  background: #0891b2;
  transform: translateY(-2px);
}

.related-section-emotionale-intelligenz-kommunikation {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-emotionale-intelligenz-kommunikation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-emotionale-intelligenz-kommunikation {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-emotionale-intelligenz-kommunikation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-emotionale-intelligenz-kommunikation {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  max-width: 320px;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-emotionale-intelligenz-kommunikation:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.related-card-image-emotionale-intelligenz-kommunikation {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-body-emotionale-intelligenz-kommunikation {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-emotionale-intelligenz-kommunikation {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-emotionale-intelligenz-kommunikation {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #334155;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-emotionale-intelligenz-kommunikation {
  display: inline-block;
  padding: 0.5rem 0;
  color: #06b6d4;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: color 0.2s ease;
}

.related-card-link-emotionale-intelligenz-kommunikation:hover {
  color: #0891b2;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-emotionale-intelligenz-kommunikation {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .related-card-emotionale-intelligenz-kommunikation {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-emotionale-intelligenz-kommunikation {
  background: #e2e8f0;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-emotionale-intelligenz-kommunikation {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-emotionale-intelligenz-kommunikation {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-emotionale-intelligenz-kommunikation {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

@media (max-width: 768px) {
  .hero-section-emotionale-intelligenz-kommunikation,
  .intro-section-emotionale-intelligenz-kommunikation,
  .practice-section-emotionale-intelligenz-kommunikation,
  .communication-section-emotionale-intelligenz-kommunikation {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .pillars-section-emotionale-intelligenz-kommunikation,
  .impact-section-emotionale-intelligenz-kommunikation,
  .journey-section-emotionale-intelligenz-kommunikation,
  .related-section-emotionale-intelligenz-kommunikation,
  .disclaimer-section-emotionale-intelligenz-kommunikation {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }
}

.main-konflikte-loesen-strategien {
  width: 100%;
  overflow: hidden;
}

.hero-section-konflikte-loesen-strategien {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-section-konflikte-loesen-strategien .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-konflikte-loesen-strategien {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-konflikte-loesen-strategien a {
  color: #4f46e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-konflikte-loesen-strategien a:hover {
  color: #4338ca;
  text-decoration: underline;
}

.breadcrumbs-konflikte-loesen-strategien span {
  color: #94a3b8;
}

.breadcrumbs-konflikte-loesen-strategien span:last-child {
  color: #0f172a;
  font-weight: 600;
}

.hero-content-konflikte-loesen-strategien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-block-konflikte-loesen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-konflikte-loesen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-konflikte-loesen-strategien {
  color: #0f172a;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-konflikte-loesen-strategien {
  color: #475569;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-konflikte-loesen-strategien {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
}

.meta-item-konflikte-loesen-strategien {
  color: #64748b;
}

.meta-divider-konflikte-loesen-strategien {
  color: #cbd5e1;
}

.hero-image-konflikte-loesen-strategien {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-konflikte-loesen-strategien {
    flex-direction: column;
  }

  .hero-text-block-konflikte-loesen-strategien,
  .hero-image-block-konflikte-loesen-strategien {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-konflikte-loesen-strategien {
    max-height: 350px;
  }
}

.intro-section-konflikte-loesen-strategien {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-section-konflikte-loesen-strategien .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.intro-content-konflikte-loesen-strategien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-konflikte-loesen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-konflikte-loesen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-konflikte-loesen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-konflikte-loesen-strategien {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-konflikte-loesen-strategien {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-konflikte-loesen-strategien {
    flex-direction: column;
  }

  .intro-text-konflikte-loesen-strategien,
  .intro-image-konflikte-loesen-strategien {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-img-konflikte-loesen-strategien {
    max-height: 300px;
  }
}

.strategies-section-konflikte-loesen-strategien {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-section-konflikte-loesen-strategien .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.strategies-header-konflikte-loesen-strategien {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-konflikte-loesen-strategien {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.strategies-title-konflikte-loesen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategies-wrapper-konflikte-loesen-strategien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategies-text-konflikte-loesen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-image-konflikte-loesen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-paragraph-konflikte-loesen-strategien {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.strategies-paragraph-konflikte-loesen-strategien strong {
  color: #0f172a;
  font-weight: 600;
}

.strategies-img-konflikte-loesen-strategien {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .strategies-wrapper-konflikte-loesen-strategien {
    flex-direction: column;
  }

  .strategies-text-konflikte-loesen-strategien,
  .strategies-image-konflikte-loesen-strategien {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .strategies-img-konflikte-loesen-strategien {
    max-height: 300px;
  }
}

.communication-section-konflikte-loesen-strategien {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.communication-section-konflikte-loesen-strategien .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.communication-wrapper-konflikte-loesen-strategien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.communication-image-konflikte-loesen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.communication-text-konflikte-loesen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.communication-title-konflikte-loesen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.communication-paragraph-konflikte-loesen-strategien {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.communication-paragraph-konflikte-loesen-strategien strong {
  color: #0f172a;
  font-weight: 600;
}

.communication-img-konflikte-loesen-strategien {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .communication-wrapper-konflikte-loesen-strategien {
    flex-direction: column-reverse;
  }

  .communication-image-konflikte-loesen-strategien,
  .communication-text-konflikte-loesen-strategien {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .communication-img-konflikte-loesen-strategien {
    max-height: 300px;
  }
}

.steps-section-konflikte-loesen-strategien {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-section-konflikte-loesen-strategien .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.steps-header-konflikte-loesen-strategien {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.steps-title-konflikte-loesen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-subtitle-konflikte-loesen-strategien {
  color: #64748b;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
}

.steps-grid-konflikte-loesen-strategien {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-konflikte-loesen-strategien {
  flex: 1 1 clamp(250px, 45%, 280px);
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-card-konflikte-loesen-strategien:hover {
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.step-number-konflikte-loesen-strategien {
  color: #4f46e5;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.step-content-konflikte-loesen-strategien {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-konflikte-loesen-strategien {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-konflikte-loesen-strategien {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-card-konflikte-loesen-strategien {
    flex: 1 1 100%;
  }
}

.quote-section-konflikte-loesen-strategien {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-section-konflikte-loesen-strategien .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.featured-quote-konflikte-loesen-strategien {
  border-left: 4px solid #4f46e5;
  padding-left: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-konflikte-loesen-strategien {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
}

.quote-author-konflikte-loesen-strategien {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-style: normal;
  display: block;
}

.practical-section-konflikte-loesen-strategien {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-section-konflikte-loesen-strategien .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.practical-wrapper-konflikte-loesen-strategien {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-text-konflikte-loesen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-konflikte-loesen-strategien {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-konflikte-loesen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-paragraph-konflikte-loesen-strategien {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practical-paragraph-konflikte-loesen-strategien strong {
  color: #0f172a;
  font-weight: 600;
}

.practical-img-konflikte-loesen-strategien {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .practical-wrapper-konflikte-loesen-strategien {
    flex-direction: column;
  }

  .practical-text-konflikte-loesen-strategien,
  .practical-image-konflikte-loesen-strategien {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-img-konflikte-loesen-strategien {
    max-height: 300px;
  }
}

.conclusion-section-konflikte-loesen-strategien {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-section-konflikte-loesen-strategien .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.conclusion-content-konflikte-loesen-strategien {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-konflikte-loesen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-konflikte-loesen-strategien {
  color: #475569;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-cta-konflikte-loesen-strategien {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-text-konflikte-loesen-strategien {
  color: #64748b;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
}

.related-section-konflikte-loesen-strategien {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-section-konflikte-loesen-strategien .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-header-konflikte-loesen-strategien {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-konflikte-loesen-strategien {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-konflikte-loesen-strategien {
  color: #64748b;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

.related-cards-konflikte-loesen-strategien {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-konflikte-loesen-strategien {
  flex: 1 1 clamp(280px, 30%, 380px);
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.related-card-konflikte-loesen-strategien:hover {
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.related-image-wrapper-konflikte-loesen-strategien {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-image-konflikte-loesen-strategien {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-konflikte-loesen-strategien {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-konflikte-loesen-strategien {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-konflikte-loesen-strategien {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.related-link-konflikte-loesen-strategien {
  color: #4f46e5;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
  display: inline-block;
}

.related-link-konflikte-loesen-strategien:hover {
  color: #4338ca;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-konflikte-loesen-strategien {
    flex: 1 1 100%;
  }

  .related-image-wrapper-konflikte-loesen-strategien {
    height: 220px;
  }
}

.disclaimer-section-konflikte-loesen-strategien {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-section-konflikte-loesen-strategien .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-content-konflikte-loesen-strategien {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #4f46e5;
}

.disclaimer-title-konflikte-loesen-strategien {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-konflikte-loesen-strategien {
  color: #475569;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-content-konflikte-loesen-strategien {
    padding: 1.5rem;
    border-left: none;
    border-top: 4px solid #4f46e5;
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-accent: #f59e0b;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition-base: 200ms ease-in-out;
}

* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.communication-mastery-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block !important;
}

.hero-foundation-about {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
}

.hero-header-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw + 1rem, 4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-accent);
  font-weight: 600;
}

.hero-description-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.stats-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.stat-card-about {
  flex: 1 1 200px;
  max-width: 280px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  text-align: center;
  border-left: 3px solid var(--color-accent);
}

.stat-number-about {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-weight: 600;
}

.expertise-landscape-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expertise-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.expertise-header-about {
  text-align: center;
}

.section-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.expertise-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.expertise-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.expertise-body-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.expertise-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 900px;
}

.expertise-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: clamp(1rem, 3vw, 2rem) auto 0;
}

.methodology-framework-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methodology-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.methodology-header-about {
  text-align: center;
}

.methodology-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.methodology-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.process-step-about {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.process-step-about:hover {
  transform: translateY(-4px);
}

.step-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.step-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.approach-pillars-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.approach-header-about {
  text-align: center;
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.feature-card-about {
  flex: 1 1 280px;
  max-width: 360px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-top: 3px solid var(--color-accent);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card-about:hover {
  transform: translateY(-5px);
}

.card-icon-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-accent);
  height: 50px;
  display: flex;
  align-items: center;
}

.card-title-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.featured-quote-about {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-accent);
  border-radius: 4px;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  max-width: 700px;
}

.quote-text-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-accent);
  font-weight: 600;
}

.vision-impact-about {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.vision-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
}

.vision-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vision-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.vision-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  line-height: 1.8;
}

.vision-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  color: var(--color-accent);
  font-size: 1.25rem;
}

.disclaimer-text-about {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 900px;
}

@media (max-width: 768px) {
  .stats-grid-about {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .process-steps-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-step-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .features-cards-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .feature-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .featured-quote-about {
    margin: 1.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title-about {
    font-size: 1.875rem;
  }

  .expertise-title-about,
  .methodology-title-about,
  .approach-title-about,
  .vision-title-about {
    font-size: 1.5rem;
  }

  .step-number-about {
    font-size: 2rem;
  }
}

.faq-page {
  width: 100%;
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 5vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: 1.2;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.faq-content {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  background-color: var(--color-bg-tertiary);
  border: none;
  border-bottom: 1px solid var(--color-bg-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  text-align: left;
}

.faq-question:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-light);
}

.faq-question-text {
  flex: 1;
}

.faq-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: var(--space-sm);
  font-size: var(--text-xl);
  color: var(--color-primary);
  font-weight: 300;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item[data-open="true"] .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: var(--space-lg);
  background-color: var(--color-bg-tertiary);
  border-top: 1px solid var(--color-bg-secondary);
  animation: slideDown var(--transition-base);
}

.faq-answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-cta {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.2;
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
  opacity: 0.95;
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background-color: var(--color-bg-tertiary);
  color: var(--color-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

.faq-cta-button:hover {
  background-color: var(--color-bg-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-question {
    padding: var(--space-lg) var(--space-2xl);
  }

  .faq-answer {
    padding: var(--space-lg) var(--space-2xl);
  }

  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) 0;
  }

  .faq-content {
    padding: var(--space-3xl) 0;
  }

  .faq-cta {
    padding: var(--space-3xl) 0;
  }
}

.services-page {
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-lg);
  border-bottom: 1px solid var(--color-bg-secondary);
  overflow: hidden;
}

.services-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 4rem var(--space-2xl);
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .services-content {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
  
  .services-content {
    padding: 4rem var(--space-2xl);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.service-card-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.4;
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card-topics {
  list-style: none;
  margin: var(--space-md) 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card-topics li {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding-left: var(--space-md);
  position: relative;
}

.service-card-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.services-cta {
  background-color: var(--color-bg-card);
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--color-bg-secondary);
  overflow: hidden;
}

.services-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.7;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

.services-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 4rem var(--space-2xl);
  }
}

:root {
  --color-bg-primary: #f8fafc;
  --color-bg-secondary: #e2e8f0;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;
  --color-text-light: #cbd5e1;
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #e0e7ff;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 25px rgba(15, 23, 42, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;
  --z-dropdown: 1000;
  --z-sticky: 100;
  --z-fixed: 999;
  --z-modal: 9999;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.dialog-docs {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  padding: var(--space-lg) var(--space-md);
  font-family: var(--font-primary), sans-serif;
}

.dialog-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.dialog-docs .content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.dialog-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading), serif;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.dialog-docs .last-updated {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  display: block;
}

.dialog-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading), serif;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.dialog-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.dialog-docs ul {
  list-style: none;
  margin: var(--space-md) 0 var(--space-md) var(--space-lg);
}

.dialog-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
}

.dialog-docs li:before {
  content: "";
  color: var(--color-primary);
  font-weight: bold;
  display: inline-block;
  width: var(--space-md);
  margin-left: calc(var(--space-md) * -1);
}

.dialog-docs .section {
  margin-bottom: var(--space-2xl);
}

.dialog-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-2xl);
}

.dialog-docs .contact-section h2 {
  margin-top: 0;
}

.dialog-docs .contact-section p {
  margin-bottom: var(--space-sm);
}

.dialog-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .dialog-docs {
    padding: var(--space-xl) var(--space-lg);
  }

  .dialog-docs .content {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .dialog-docs {
    padding: var(--space-2xl) var(--space-lg);
  }

  .dialog-docs .content {
    padding: var(--space-3xl);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.thank-icon {
  width: clamp(80px, 20vw, 120px);
  height: clamp(80px, 20vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-primary);
  stroke-width: 1.5;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: var(--space-md);
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.thank-lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-primary);
  font-weight: 600;
  animation: fadeInUp 0.7s ease-out 0.3s both;
}

.thank-message {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  animation: fadeInUp 0.7s ease-out 0.4s both;
  padding: 0 var(--space-sm);
}

.thank-next {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  animation: fadeInUp 0.7s ease-out 0.5s both;
  padding: 0 var(--space-sm);
}

.btn-primary {
  display: inline-block;
  padding: var(--space-sm) var(--space-2xl);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-lg);
  animation: fadeInUp 0.7s ease-out 0.6s both;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .thank-content {
    gap: var(--space-xl);
  }

  .thank-message {
    padding: 0;
  }

  .thank-next {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .container {
    padding: 0 var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .container {
    padding: 0 var(--space-2xl);
  }

  .thank-title {
    margin-top: var(--space-lg);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: var(--space-3xl) 0;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--color-bg-primary);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl);
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.error-code-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-code {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1;
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 40vw, 400px);
  height: clamp(200px, 40vw, 400px);
  border: 3px solid var(--color-primary-light);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.6;
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.error-message h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.error-suggestion {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  padding: var(--space-md);
  background-color: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.btn-primary {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-md);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .error-code-container {
    margin-bottom: var(--space-lg);
  }

  .error-decoration {
    width: 180px;
    height: 180px;
    border-width: 2px;
  }

  .error-message {
    gap: var(--space-sm);
  }
}

@media (min-width: 768px) {
  .error-wrapper {
    gap: var(--space-2xl);
  }

  .error-visual {
    margin-bottom: var(--space-xl);
  }

  .error-message {
    gap: var(--space-lg);
  }

  .btn-primary {
    padding: var(--space-md) var(--space-xl);
    margin-top: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .error-code-container {
    margin-bottom: var(--space-2xl);
  }

  .error-decoration {
    width: 500px;
    height: 500px;
  }

  .error-wrapper {
    gap: var(--space-3xl);
  }
}

.contact-get-started {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.contact-get-started-hero {
  width: 100%;
  background-color: var(--color-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-get-started-hero-content {
  width: 100%;
  text-align: center;
}

.contact-get-started-hero h1 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.contact-get-started-hero-subtitle {
  color: #e0e7ff;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .contact-get-started-hero {
    padding: 4.5rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-get-started-hero {
    padding: 6rem 0;
  }
}

.contact-get-started-main {
  width: 100%;
  background-color: var(--color-bg-primary);
  padding: 2.5rem 0;
  overflow: hidden;
}

.contact-get-started-main-content {
  width: 100%;
}

.contact-get-started-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.contact-get-started-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-started-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-started-form-header h2,
.contact-get-started-info-header h2 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.contact-get-started-form-header p,
.contact-get-started-info-header p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
  margin-bottom: 1.5rem;
}

.contact-get-started-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-get-started-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-get-started-label {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  display: block;
  margin: 0;
}

.contact-get-started-input,
.contact-get-started-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-tertiary);
  border: 1.5px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.5;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  box-sizing: border-box;
}

.contact-get-started-input::placeholder,
.contact-get-started-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-get-started-input:focus,
.contact-get-started-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-get-started-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-get-started-privacy-notice {
  margin-top: 0.5rem;
}

.contact-get-started-privacy-notice p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}

.contact-get-started-privacy-notice a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-get-started-privacy-notice a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-started-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0.5rem;
}

.contact-get-started-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-get-started-submit:active {
  transform: translateY(0);
}

.contact-get-started-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-get-started-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.contact-get-started-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-get-started-info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-get-started-info-icon i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-get-started-info-content h3 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin: 0;
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}

.contact-get-started-info-content p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.contact-get-started-info-content a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-get-started-info-content a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-started-info-highlight {
  background-color: var(--color-bg-tertiary);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.contact-get-started-info-highlight h3 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin: 0;
  margin-bottom: 0.75rem;
  letter-spacing: -0.2px;
}

.contact-get-started-info-highlight p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-get-started-main {
    padding: 3.5rem 0;
  }

  .contact-get-started-grid {
    gap: 3rem;
    align-items: stretch;
  }

  .contact-get-started-form-wrapper,
  .contact-get-started-info-wrapper {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (min-width: 1024px) {
  .contact-get-started-main {
    padding: 5rem 0;
  }

  .contact-get-started-grid {
    gap: 4rem;
  }
}

@media (max-width: 767px) {
  .contact-get-started-form-wrapper,
  .contact-get-started-info-wrapper {
    background-color: var(--color-bg-tertiary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
  }
}

.header-dialogue-hub {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-bg-secondary);
  position: sticky;
  top: 0;
  z-index: var(--z-fixed);
  box-shadow: var(--shadow-sm);
}

.header-dialogue-hub-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header-dialogue-hub-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.header-dialogue-hub-brand:hover {
  opacity: 0.8;
}

.header-dialogue-hub-logo-img {
  height: 40px;
  width: auto;
}

.header-dialogue-hub-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.header-dialogue-hub-desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header-dialogue-hub-nav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-base);
  transition: color var(--transition-fast);
  position: relative;
}

.header-dialogue-hub-nav-link:hover {
  color: var(--color-primary);
}

.header-dialogue-hub-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

.header-dialogue-hub-nav-link:hover::after {
  width: 100%;
}

.header-dialogue-hub-cta-button {
  display: none;
  padding: 0.625rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.header-dialogue-hub-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.header-dialogue-hub-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.header-dialogue-hub-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-dialogue-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-tertiary);
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-slow);
  z-index: var(--z-modal);
  overflow-y: auto;
}

.header-dialogue-hub-mobile-menu.active {
  right: 0;
}

.header-dialogue-hub-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-bg-secondary);
}

.header-dialogue-hub-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.header-dialogue-hub-mobile-close:hover {
  color: var(--color-primary);
}

.header-dialogue-hub-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.5rem;
}

.header-dialogue-hub-mobile-link {
  display: block;
  padding: 1rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-lg);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.header-dialogue-hub-mobile-link:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.header-dialogue-hub-mobile-cta {
  display: block;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: var(--text-lg);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.header-dialogue-hub-mobile-cta:hover {
  background: var(--color-primary-hover);
}

@media (min-width: 768px) {
  .header-dialogue-hub-container {
    height: 80px;
  }

  .header-dialogue-hub-desktop-nav {
    display: flex;
  }

  .header-dialogue-hub-cta-button {
    display: inline-block;
  }

  .header-dialogue-hub-mobile-toggle {
    display: none;
  }

  .header-dialogue-hub-mobile-menu {
    display: none;
  }
}