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

:root {
  
  
  
  
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0d1526;
  --color-bg-dark-tertiary: #111d2f;
  --color-bg-dark-card: rgba(16, 185, 129, 0.08);
  
  
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-light-card: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #64748b;
  
  
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #94a3b8;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-dark: #047857;
  --color-secondary: #34d399;
  --color-accent-warm: #f59e0b;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --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;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  font-size: 1rem;
}

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  line-height: 1.25;
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
}

p, li, span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  gap: 0.5rem;
}

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

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

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

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

.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: currentColor;
  color: #ffffff;
}

input, textarea, select {
  font-family: var(--font-primary);
  padding: var(--space-md);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.hero-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-section h1 {
  color: var(--color-text-dark-primary);
  letter-spacing: -0.02em;
}

.hero-section .hero-subtitle {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 500;
}

.hero-section .hero-description {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

.hero-section .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .hero-section .btn {
    width: auto;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.stat-label {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.features-section {
  background: var(--color-bg-light-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.features-content {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.features-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.features-section h2 {
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
}

.features-section .features-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-card {
  background: var(--color-bg-light-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.feature-card h3 {
  color: var(--color-text-light-primary);
}

.feature-card p {
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.benefits-section {
  background: var(--color-bg-dark-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.benefits-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.benefits-section h2 {
  color: var(--color-text-dark-primary);
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: var(--space-md);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.benefit-icon {
  font-size: 2rem;
  color: var(--color-secondary);
}

.benefit-item h3 {
  color: var(--color-text-dark-primary);
}

.benefit-item p {
  color: var(--color-text-dark-muted);
  line-height: 1.7;
}

.testimonials-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testimonials-content {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.testimonials-section h2 {
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
}

.testimonials-section .testimonials-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.testimonial-card {
  background: var(--color-bg-light-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--color-accent-warm);
  font-size: 1rem;
}

.testimonial-text {
  color: var(--color-text-light-primary);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 1px solid #e5e7eb;
}

.author-name {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

.author-title {
  color: var(--color-text-light-secondary);
  font-size: 0.9rem;
}

.cta-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--color-text-dark-primary);
}

.cta-section .cta-description {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.cta-button-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
  width: 100%;
}

@media (min-width: 640px) {
  .cta-button-group {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
}

.cta-section .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .cta-section .btn {
    width: auto;
  }
}

.pricing-section {
  background: var(--color-bg-light-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.pricing-content {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.pricing-section h2 {
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
}

.pricing-section .pricing-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.pricing-card {
  background: var(--color-bg-light-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  border: 2px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
}

.pricing-card h3 {
  color: var(--color-text-light-primary);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-amount {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
}

.price-period {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
}

.price-description {
  color: var(--color-text-light-secondary);
  font-size: 0.9375rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-light-primary);
  font-size: 0.9375rem;
}

.pricing-feature i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.faq-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
}

.faq-section h2 {
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
}

.faq-section .faq-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--color-bg-light-card);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: var(--space-md);
}

.faq-question h3 {
  color: var(--color-text-light-primary);
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  flex: 1;
  text-align: left;
}

.faq-toggle {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
}

.faq-answer p {
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.contact-section {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-section h2 {
  color: var(--color-text-dark-primary);
}

.contact-section .contact-description {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-secondary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-item h3 {
  color: var(--color-text-dark-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.contact-item p {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group label {
  color: var(--color-text-dark-primary);
  font-weight: 500;
  font-size: clamp(0.9375rem, 1vw, 1rem);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--color-text-dark-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-dark-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
}

.form-submit-btn {
  background: var(--color-primary);
  color: #ffffff;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: var(--space-md);
}

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

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .hero-section .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .faq-item {
    border-radius: var(--radius-md);
  }
}

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

.mt-lg {
  margin-top: var(--space-lg);
}

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

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  section {
    page-break-inside: avoid;
  }
}
:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0d1526;
  --color-bg-dark-tertiary: #111d2f;
  --color-bg-dark-card: rgba(16, 185, 129, 0.08);
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-light-card: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #64748b;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #94a3b8;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-dark: #047857;
  --color-secondary: #34d399;
  --color-accent-warm: #f59e0b;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

.header-klank-navigator {
  background: var(--color-bg-dark-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-klank-navigator-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-klank-navigator-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-klank-navigator-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.header-klank-navigator-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.header-klank-navigator-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  justify-content: flex-end;
}

.header-klank-navigator-nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  transition: color 300ms ease;
  position: relative;
}

.header-klank-navigator-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms ease;
}

.header-klank-navigator-nav-link:hover {
  color: #ffffff;
}

.header-klank-navigator-nav-link:hover::after {
  width: 100%;
}

.header-klank-navigator-cta-button {
  background: var(--color-primary);
  color: #0f172a;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}

.header-klank-navigator-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.header-klank-navigator-cta-button:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.header-klank-navigator-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 102;
  transition: all 300ms ease;
}

.header-klank-navigator-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.header-klank-navigator-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-klank-navigator-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header-klank-navigator-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-klank-navigator-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-dark-secondary);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 101;
  padding-top: clamp(1rem, 3vw, 1.5rem);
}

.header-klank-navigator-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header-klank-navigator-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  margin-bottom: 2rem;
}

.header-klank-navigator-mobile-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.header-klank-navigator-mobile-close {
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 300ms ease;
}

.header-klank-navigator-mobile-close:hover {
  color: #ffffff;
}

.header-klank-navigator-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 clamp(1rem, 4vw, 1.5rem);
  flex: 1;
}

.header-klank-navigator-mobile-link {
  color: #cbd5e1;
  text-decoration: none;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 300ms ease;
}

.header-klank-navigator-mobile-link:hover {
  background: rgba(16, 185, 129, 0.1);
  color: #ffffff;
}

.header-klank-navigator-mobile-cta {
  background: var(--color-primary);
  color: #0f172a;
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  margin: 1.5rem clamp(1rem, 4vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
}

.header-klank-navigator-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

@media (min-width: 768px) {
  .header-klank-navigator-mobile-toggle {
    display: none;
  }

  .header-klank-navigator-mobile-menu {
    display: none;
  }

  .header-klank-navigator-desktop-nav {
    display: flex;
  }

  .header-klank-navigator-container {
    padding: 1.25rem clamp(1.5rem, 5vw, 2.5rem);
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .header-klank-navigator-desktop-nav {
    display: none !important;
  }
}

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

@supports (backdrop-filter: blur(10px)) {
  .header-klank-navigator {
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(10px);
  }
}

    
.dutch-learning-hub {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-light-primary);
  overflow-x: hidden;
}

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

.hero-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: rgba(52, 211, 153, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-accent-2 {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 200px;
  height: 120px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-radiant-orb {
  position: absolute;
  top: 40%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(34, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-corner-element {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 20% 80% 70% 30% / 80% 20% 80% 20%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-line {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 700px;
}

.hero-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-secondary);
  font-weight: 600;
  line-height: 1.4;
}

.hero-description {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

.hero-cta-group .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .hero-cta-group .btn {
    width: auto;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.stat-label {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.875rem, 1vw, 1rem);
  display: block;
}

.features-section {
  background: var(--color-bg-light-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.features-color-field-1 {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-accent {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-shape-element {
  position: absolute;
  bottom: 5%;
  left: 8%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.features-line-divider {
  position: absolute;
  top: 25%;
  right: 20%;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.features-floating-panel {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 180px;
  height: 120px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.features-secondary-glow {
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 153, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.features-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.features-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.features-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.features-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.features-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-light-card);
  border-radius: var(--radius-xl);
  border: 1px solid #e5e7eb;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.feature-card-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.3;
}

.feature-card-text {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  flex: 1;
}

@media (max-width: 768px) {
  .feature-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

.about-section {
  background: var(--color-bg-dark-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.about-gradient-backdrop {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.about-accent-shape {
  position: absolute;
  bottom: 10%;
  left: -8%;
  width: 300px;
  height: 300px;
  background: rgba(52, 211, 153, 0.08);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.about-glow-left {
  position: absolute;
  left: 5%;
  top: 30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.about-glow-right {
  position: absolute;
  right: 10%;
  bottom: 20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(34, 211, 153, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-floating-element {
  position: absolute;
  top: 15%;
  right: 8%;
  width: 120px;
  height: 120px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex-direction: column;
}

.about-text-block {
  flex: 1 1 350px;
  min-width: 0;
}

.about-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.about-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.about-description {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.about-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.benefit-item i {
  color: var(--color-secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-text {
  color: var(--color-text-dark-primary);
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  font-weight: 500;
}

.about-image-block {
  flex: 1 1 350px;
  min-width: 0;
}

.about-section-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

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

.process-section {
  background: var(--color-bg-light-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.process-color-field {
  position: absolute;
  top: -15%;
  left: -8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-accent-orb-1 {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.process-accent-orb-2 {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.process-shape-element {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 70% 30% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.process-line-accent {
  position: absolute;
  bottom: 30%;
  right: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.process-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.process-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.process-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.process-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid #e5e7eb;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

.process-step-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 70px;
  line-height: 1;
}

.process-step-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.process-step-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.3;
}

.process-step-text {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.posts-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.posts-gradient-mesh {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.posts-floating-accent {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-glow-element {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 200px;
  height: 200px;
  background: rgba(52, 211, 153, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.posts-shape-decoration {
  position: absolute;
  bottom: 5%;
  right: 8%;
  width: 250px;
  height: 150px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 50% 50% / 50% 60% 30% 40%;
  z-index: 1;
  pointer-events: none;
}

.posts-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

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

.posts-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.posts-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.posts-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.post-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-secondary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.post-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-card-content {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.post-card-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
}

.post-card-text {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
  flex: 1;
}

.post-card-link {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 300ms ease-in-out;
  text-decoration: none;
}

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

.posts-footer {
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.posts-footer-text {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .post-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

.benefits-section {
  background: var(--color-bg-dark-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.benefits-accent-glow-1 {
  position: absolute;
  top: -10%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-accent-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-left {
  position: absolute;
  left: -5%;
  top: 30%;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 153, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-right {
  position: absolute;
  right: 5%;
  bottom: 15%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.benefits-line-element {
  position: absolute;
  top: 25%;
  left: 20%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.benefits-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-dark-primary);
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.benefit-card {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: var(--color-secondary);
  transform: translateY(-4px);
}

.benefit-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.benefit-card-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
}

.benefit-card-text {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

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

.cta-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-gradient-backdrop {
  position: absolute;
  top: -15%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-accent-element-1 {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 180px;
  height: 180px;
  background: rgba(34, 211, 153, 0.05);
  border-radius: 60% 40% 50% 50% / 50% 60% 30% 40%;
  z-index: 1;
  pointer-events: none;
}

.cta-accent-element-2 {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.cta-floating-shape {
  position: absolute;
  bottom: 30%;
  right: 15%;
  width: 200px;
  height: 120px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.cta-description {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  max-width: 600px;
}

.cta-button-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
  width: 100%;
}

@media (min-width: 640px) {
  .cta-button-group {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
}

.cta-section .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .cta-section .btn {
    width: auto;
  }
}

.contact-section {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.contact-shape-decoration {
  position: absolute;
  top: 15%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-accent {
  position: absolute;
  bottom: -15%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 153, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.contact-floating-element {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 180px;
  height: 180px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 30% 60%;
  z-index: 1;
  pointer-events: none;
}

.contact-line-accent {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.contact-section-subtitle {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-form-label {
  color: var(--color-text-dark-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.contact-form-input,
.contact-form-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--color-text-dark-primary);
  padding: clamp(0.75rem, 2vw, 1rem);
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-family: var(--font-primary);
  transition: all 300ms ease;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: var(--color-text-dark-muted);
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.contact-form-submit {
  background: var(--color-primary);
  color: #0f172a;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  margin-top: var(--space-md);
}

.contact-form-submit:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.contact-form-submit:active {
  transform: translateY(0);
}

.contact-privacy-note {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  text-align: center;
}

.contact-privacy-link {
  color: var(--color-secondary);
  text-decoration: underline;
  transition: color 300ms ease;
}

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

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-bottom: var(--space-lg);
  border: none !important;
  background: transparent;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
}

.faq-answer-text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 700;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-align: center;
  gap: 0.5rem;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
  transition-duration: 150ms;
}

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

.btn-secondary:hover {
  background: var(--color-text-dark-primary);
  color: var(--color-bg-dark-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
  transition: all 350ms ease;
}

.btn-outline:hover {
  background: currentColor;
  color: #ffffff;
}

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

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

.cookie-banner-text {
  color: #f1f5f9;
  margin: 0;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.cookie-banner-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  transition: all 300ms ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--color-primary);
  color: #0f172a;
}

.cookie-btn-accept:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.cookie-btn-decline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    gap: var(--space-sm);
  }
  
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-banner-buttons {
    width: 100%;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    min-width: 120px;
  }
}

@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;
  }
}

    .footer {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.footer-about {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-about-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.footer-about-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: var(--color-text-dark-secondary);
  font-weight: 400;
}

.footer-navigation {
  flex: 1 1 200px;
}

.footer-nav-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer-nav-link:hover::before {
  width: 100%;
}

.footer-nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 2px;
}

.footer-contact {
  flex: 1 1 280px;
}

.footer-contact-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-item {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin: 0;
}

.footer-contact-label {
  display: block;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
}

.footer-contact-value {
  display: block;
  font-weight: 400;
  color: var(--color-text-dark-secondary);
}

.footer-legal {
  flex: 1 1 200px;
}

.footer-legal-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal-link {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-legal-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer-legal-link:hover::before {
  width: 100%;
}

.footer-legal-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 2px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 185, 129, 0.2),
    transparent
  );
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.footer-bottom {
  text-align: center;
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

.footer-copyright {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: #64748b;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .footer-content {
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .footer-about {
    flex: 1 1 100%;
  }

  .footer-navigation,
  .footer-contact,
  .footer-legal {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .footer-nav-title,
  .footer-contact-title,
  .footer-legal-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .footer-navigation,
  .footer-contact,
  .footer-legal {
    flex: 1 1 100%;
  }

  .footer-content {
    gap: clamp(1.25rem, 3vw, 1.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-nav-link,
  .footer-legal-link,
  .footer-nav-link::before,
  .footer-legal-link::before {
    transition: none;
  }
}
    

.category-page-dutch-pronunciation {
  width: 100%;
}

.hero-section-dutch-pronunciation {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-glow-accent-dutch {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh-dutch {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-dutch {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-dutch-pronunciation {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-title-dutch-pronunciation {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-subtitle-dutch-pronunciation {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #34d399;
  font-weight: 600;
}

.hero-description-dutch-pronunciation {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 650px;
}

.hero-cta-group-dutch-pronunciation {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .hero-cta-group-dutch-pronunciation {
    flex-direction: row;
  }
}

.hero-stats-dutch-pronunciation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item-dutch {
  text-align: center;
}

.stat-number-dutch {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #34d399;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.stat-label-dutch {
  display: block;
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.posts-section-dutch-pronunciation {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-header-dutch-pronunciation {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.posts-title-dutch-pronunciation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.posts-subtitle-dutch-pronunciation {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.posts-grid-dutch-pronunciation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-dutch-pronunciation {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-dutch-pronunciation:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #10b981;
}

.card-image-dutch-pronunciation {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.card-title-dutch-pronunciation {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.card-description-dutch-pronunciation {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.card-link-dutch-pronunciation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.card-link-dutch-pronunciation:hover {
  color: #059669;
  transform: translateX(4px);
}

.learning-path-section-dutch-pronunciation {
  background: #0d1526;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.learning-path-section-dutch-pronunciation::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.learning-header-dutch-pronunciation {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.learning-title-dutch-pronunciation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.learning-subtitle-dutch-pronunciation {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.learning-steps-dutch-pronunciation {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.learning-step-dutch-pronunciation {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.learning-step-dutch-pronunciation:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateX(4px);
}

.learning-step-number-dutch {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #34d399;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

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

.learning-step-title-dutch {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.learning-step-text-dutch {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.insights-section-dutch-pronunciation {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-dutch-pronunciation {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #10b981;
  background: #ffffff;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  max-width: 800px;
  border-radius: 8px;
}

.quote-text-dutch {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #0f172a;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-author-dutch {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-style: normal;
  display: block;
}

.insights-content-dutch-pronunciation {
  max-width: 800px;
  margin: 0 auto;
}

.insights-subheading-dutch {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.insights-text-dutch {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
}

.resources-section-dutch-pronunciation {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.resources-header-dutch-pronunciation {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.resources-title-dutch-pronunciation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.resources-description-dutch {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

.resources-features-dutch-pronunciation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.resource-feature-dutch {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-feature-dutch:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
}

.feature-icon-dutch {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: #10b981;
  font-size: 1.5rem;
}

.feature-title-dutch {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  font-weight: 600;
  color: #0f172a;
}

.feature-text-dutch {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .card-dutch-pronunciation {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .hero-cta-group-dutch-pronunciation {
    flex-direction: column;
  }
  
  .learning-step-dutch-pronunciation {
    flex-direction: column;
  }
  
  .learning-step-number-dutch {
    min-width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.main-nederlandse-vocalen-uitspraak {
  width: 100%;
}

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

.hero-section-nederlandse-vocalen-uitspraak {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-nederlandse-vocalen-uitspraak::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-nederlandse-vocalen-uitspraak::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-nederlandse-vocalen-uitspraak {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  position: relative;
  z-index: 1;
}

.breadcrumb-link-nederlandse-vocalen-uitspraak {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlandse-vocalen-uitspraak:hover {
  color: #10b981;
}

.breadcrumb-separator-nederlandse-vocalen-uitspraak {
  color: #64748b;
}

.breadcrumb-current-nederlandse-vocalen-uitspraak {
  color: #10b981;
  font-weight: 600;
}

.hero-content-nederlandse-vocalen-uitspraak {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
  max-width: 700px;
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.hero-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #34d399;
}

.hero-description-nederlandse-vocalen-uitspraak {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.hero-cta-group-nederlandse-vocalen-uitspraak {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .hero-cta-group-nederlandse-vocalen-uitspraak {
    flex-direction: row;
  }
}

.hero-section-nederlandse-vocalen-uitspraak .btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.9375rem, 1vw, 1rem);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-section-nederlandse-vocalen-uitspraak .btn {
    width: auto;
  }
}

.btn-primary {
  background: #10b981;
  color: #0f172a;
}

.btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
}

.btn-secondary:hover {
  background: #10b981;
  color: #ffffff;
}

.hero-stats-nederlandse-vocalen-uitspraak {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item-nederlandse-vocalen-uitspraak {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.stat-number-nederlandse-vocalen-uitspraak {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #34d399;
  line-height: 1;
}

.stat-label-nederlandse-vocalen-uitspraak {
  color: #94a3b8;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

.hero-image-wrapper-nederlandse-vocalen-uitspraak {
  position: relative;
  z-index: 2;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.hero-image-nederlandse-vocalen-uitspraak {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.introduction-section-nederlandse-vocalen-uitspraak {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.introduction-content-nederlandse-vocalen-uitspraak {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 768px) {
  .introduction-content-nederlandse-vocalen-uitspraak {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

.introduction-text-nederlandse-vocalen-uitspraak {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 767px) {
  .introduction-text-nederlandse-vocalen-uitspraak {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.introduction-paragraph-nederlandse-vocalen-uitspraak {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-image-wrapper-nederlandse-vocalen-uitspraak {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 767px) {
  .introduction-image-wrapper-nederlandse-vocalen-uitspraak {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-image-nederlandse-vocalen-uitspraak {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.content-section-nederlandse-vocalen-uitspraak {
  background: #0d1526;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-wrapper-nederlandse-vocalen-uitspraak {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 768px) {
  .content-wrapper-nederlandse-vocalen-uitspraak {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

.content-text-nederlandse-vocalen-uitspraak {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 767px) {
  .content-text-nederlandse-vocalen-uitspraak {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-paragraph-nederlandse-vocalen-uitspraak {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-highlight-box-nederlandse-vocalen-uitspraak {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #34d399;
  margin-bottom: 1rem;
}

.highlight-list-nederlandse-vocalen-uitspraak {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item-nederlandse-vocalen-uitspraak {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
}

.content-image-wrapper-nederlandse-vocalen-uitspraak {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 767px) {
  .content-image-wrapper-nederlandse-vocalen-uitspraak {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-image-nederlandse-vocalen-uitspraak {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.methodology-section-nederlandse-vocalen-uitspraak {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.methodology-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

.methodology-steps-nederlandse-vocalen-uitspraak {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.methodology-step-nederlandse-vocalen-uitspraak {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.methodology-step-nederlandse-vocalen-uitspraak:hover {
  border-color: #10b981;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.methodology-step-number-nederlandse-vocalen-uitspraak {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #10b981;
  flex-shrink: 0;
  min-width: 60px;
}

.methodology-step-content-nederlandse-vocalen-uitspraak {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.methodology-step-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.methodology-step-text-nederlandse-vocalen-uitspraak {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.methodology-image-wrapper-nederlandse-vocalen-uitspraak {
  margin-top: clamp(1rem, 3vw, 2rem);
}

.methodology-image-nederlandse-vocalen-uitspraak {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (min-width: 768px) {
  .methodology-image-wrapper-nederlandse-vocalen-uitspraak {
    max-width: 600px;
    margin: clamp(2rem, 5vw, 3rem) auto 0;
  }
}

.techniques-section-nederlandse-vocalen-uitspraak {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.techniques-section-nederlandse-vocalen-uitspraak::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.techniques-wrapper-nederlandse-vocalen-uitspraak {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .techniques-wrapper-nederlandse-vocalen-uitspraak {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
}

.techniques-text-nederlandse-vocalen-uitspraak {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 767px) {
  .techniques-text-nederlandse-vocalen-uitspraak {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.techniques-paragraph-nederlandse-vocalen-uitspraak {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.techniques-cards-nederlandse-vocalen-uitspraak {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.technique-card-nederlandse-vocalen-uitspraak {
  background: rgba(16, 185, 129, 0.08);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.technique-card-nederlandse-vocalen-uitspraak:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
}

.technique-card-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #34d399;
  margin-bottom: 0.5rem;
}

.technique-card-text-nederlandse-vocalen-uitspraak {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.techniques-image-wrapper-nederlandse-vocalen-uitspraak {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 767px) {
  .techniques-image-wrapper-nederlandse-vocalen-uitspraak {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-image-nederlandse-vocalen-uitspraak {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.quote-section-nederlandse-vocalen-uitspraak {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-nederlandse-vocalen-uitspraak {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #10b981;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quote-text-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: #0f172a;
  line-height: 1.8;
  margin: 0 0 1rem 0;
  font-style: italic;
}

.quote-author-nederlandse-vocalen-uitspraak {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-style: normal;
}

.tips-section-nederlandse-vocalen-uitspraak {
  background: #111d2f;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.tips-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

.tips-grid-nederlandse-vocalen-uitspraak {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tip-card-nederlandse-vocalen-uitspraak {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.tip-card-nederlandse-vocalen-uitspraak:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .tip-card-nederlandse-vocalen-uitspraak {
    flex: 1 1 100%;
    max-width: none;
  }
}

.tip-icon-nederlandse-vocalen-uitspraak {
  font-size: 2rem;
  line-height: 1;
}

.tip-card-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #34d399;
  margin: 0;
}

.tip-card-text-nederlandse-vocalen-uitspraak {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.conclusion-section-nederlandse-vocalen-uitspraak {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-nederlandse-vocalen-uitspraak {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.conclusion-paragraph-nederlandse-vocalen-uitspraak {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-cta-nederlandse-vocalen-uitspraak {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.conclusion-btn-nederlandse-vocalen-uitspraak {
  display: inline-block;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.75rem, 3vw, 2.5rem);
  background: #10b981;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.conclusion-btn-nederlandse-vocalen-uitspraak:hover {
  background: #059669;
  transform: translateY(-2px);
}

.disclaimer-section-nederlandse-vocalen-uitspraak {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-nederlandse-vocalen-uitspraak {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
}

.disclaimer-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #34d399;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlandse-vocalen-uitspraak {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.related-section-nederlandse-vocalen-uitspraak {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

.related-cards-nederlandse-vocalen-uitspraak {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-nederlandse-vocalen-uitspraak {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.related-card-nederlandse-vocalen-uitspraak:hover {
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .related-card-nederlandse-vocalen-uitspraak {
    flex: 1 1 100%;
    max-width: none;
  }
}

.related-card-title-nederlandse-vocalen-uitspraak {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.related-card-description-nederlandse-vocalen-uitspraak {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-nederlandse-vocalen-uitspraak {
  display: inline-block;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-nederlandse-vocalen-uitspraak:hover {
  color: #059669;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .introduction-content-nederlandse-vocalen-uitspraak,
  .content-wrapper-nederlandse-vocalen-uitspraak,
  .techniques-wrapper-nederlandse-vocalen-uitspraak {
    flex-direction: column;
  }

  .introduction-text-nederlandse-vocalen-uitspraak,
  .introduction-image-wrapper-nederlandse-vocalen-uitspraak,
  .content-text-nederlandse-vocalen-uitspraak,
  .content-image-wrapper-nederlandse-vocalen-uitspraak,
  .techniques-text-nederlandse-vocalen-uitspraak,
  .techniques-image-wrapper-nederlandse-vocalen-uitspraak {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .methodology-step-nederlandse-vocalen-uitspraak {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .introduction-section-nederlandse-vocalen-uitspraak,
  .content-section-nederlandse-vocalen-uitspraak,
  .methodology-section-nederlandse-vocalen-uitspraak,
  .techniques-section-nederlandse-vocalen-uitspraak,
  .conclusion-section-nederlandse-vocalen-uitspraak {
    padding: clamp(5rem, 10vw, 6rem) 0;
  }
}

a:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

button:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.main-luisterbegrip-trainingsprogramma {
  width: 100%;
  font-family: var(--font-primary);
  color: #0f172a;
}

.hero-section-luisterbegrip-trainingsprogramma {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-luisterbegrip-trainingsprogramma::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-luisterbegrip-trainingsprogramma::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-luisterbegrip-trainingsprogramma .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.breadcrumbs-luisterbegrip-trainingsprogramma {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-bottom: var(--space-md);
}

.breadcrumb-link-luisterbegrip-trainingsprogramma {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-luisterbegrip-trainingsprogramma:hover {
  color: #34d399;
}

.breadcrumb-separator-luisterbegrip-trainingsprogramma,
.breadcrumb-current-luisterbegrip-trainingsprogramma {
  color: #64748b;
}

.hero-content-luisterbegrip-trainingsprogramma {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 100%;
}

.hero-title-luisterbegrip-trainingsprogramma {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle-luisterbegrip-trainingsprogramma {
  color: #34d399;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.hero-description-luisterbegrip-trainingsprogramma {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 650px;
}

.hero-stats-luisterbegrip-trainingsprogramma {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  width: 100%;
}

.stat-item-luisterbegrip-trainingsprogramma {
  text-align: center;
}

.stat-number-luisterbegrip-trainingsprogramma {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #34d399;
  margin-bottom: var(--space-xs);
}

.stat-label-luisterbegrip-trainingsprogramma {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
  display: block;
}

.hero-image-wrapper-luisterbegrip-trainingsprogramma {
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 768px) {
  .hero-section-luisterbegrip-trainingsprogramma .container {
    align-items: center;
  }

  .hero-content-luisterbegrip-trainingsprogramma {
    max-width: 100%;
  }
}

.intro-section-luisterbegrip-trainingsprogramma {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-wrapper-luisterbegrip-trainingsprogramma {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-luisterbegrip-trainingsprogramma {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.intro-title-luisterbegrip-trainingsprogramma {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-paragraph-luisterbegrip-trainingsprogramma {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.intro-image-luisterbegrip-trainingsprogramma {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .intro-wrapper-luisterbegrip-trainingsprogramma {
    flex-direction: column;
  }

  .intro-text-luisterbegrip-trainingsprogramma,
  .intro-image-luisterbegrip-trainingsprogramma {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.methods-section-luisterbegrip-trainingsprogramma {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-header-luisterbegrip-trainingsprogramma {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.methods-title-luisterbegrip-trainingsprogramma {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.methods-subtitle-luisterbegrip-trainingsprogramma {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.methods-grid-luisterbegrip-trainingsprogramma {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.method-card-luisterbegrip-trainingsprogramma {
  flex: 1 1 300px;
  max-width: 450px;
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.method-card-luisterbegrip-trainingsprogramma:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
}

.method-number-luisterbegrip-trainingsprogramma {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #10b981;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.method-content-luisterbegrip-trainingsprogramma {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.method-title-luisterbegrip-trainingsprogramma {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin: 0;
}

.method-text-luisterbegrip-trainingsprogramma {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .method-card-luisterbegrip-trainingsprogramma {
    flex: 1 1 100%;
    max-width: none;
  }
}

.practice-section-luisterbegrip-trainingsprogramma {
  background: #0d1526;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.practice-section-luisterbegrip-trainingsprogramma::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.practice-wrapper-luisterbegrip-trainingsprogramma {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.practice-image-luisterbegrip-trainingsprogramma {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-luisterbegrip-trainingsprogramma {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.practice-text-luisterbegrip-trainingsprogramma {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.practice-title-luisterbegrip-trainingsprogramma {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.practice-paragraph-luisterbegrip-trainingsprogramma {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.practice-checklist-luisterbegrip-trainingsprogramma {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.checklist-item-luisterbegrip-trainingsprogramma {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.checklist-icon-luisterbegrip-trainingsprogramma {
  color: #34d399;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-text-luisterbegrip-trainingsprogramma {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.practice-note-luisterbegrip-trainingsprogramma {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 768px) {
  .practice-wrapper-luisterbegrip-trainingsprogramma {
    flex-direction: column;
  }

  .practice-image-luisterbegrip-trainingsprogramma,
  .practice-text-luisterbegrip-trainingsprogramma {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-luisterbegrip-trainingsprogramma {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-header-luisterbegrip-trainingsprogramma {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.tips-title-luisterbegrip-trainingsprogramma {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.tips-subtitle-luisterbegrip-trainingsprogramma {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.tips-wrapper-luisterbegrip-trainingsprogramma {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tips-content-luisterbegrip-trainingsprogramma {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.tip-block-luisterbegrip-trainingsprogramma {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid #e2e8f0;
}

.tip-block-luisterbegrip-trainingsprogramma:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tip-title-luisterbegrip-trainingsprogramma {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin: 0;
}

.tip-text-luisterbegrip-trainingsprogramma {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

.tips-image-luisterbegrip-trainingsprogramma {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-img-luisterbegrip-trainingsprogramma {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .tips-wrapper-luisterbegrip-trainingsprogramma {
    flex-direction: column;
  }

  .tips-content-luisterbegrip-trainingsprogramma,
  .tips-image-luisterbegrip-trainingsprogramma {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.resources-section-luisterbegrip-trainingsprogramma {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.resources-header-luisterbegrip-trainingsprogramma {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.resources-title-luisterbegrip-trainingsprogramma {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.resources-subtitle-luisterbegrip-trainingsprogramma {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.resources-grid-luisterbegrip-trainingsprogramma {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.resource-card-luisterbegrip-trainingsprogramma {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.resource-card-luisterbegrip-trainingsprogramma:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
  transform: translateY(-4px);
}

.resource-name-luisterbegrip-trainingsprogramma {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin: 0;
}

.resource-description-luisterbegrip-trainingsprogramma {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .resource-card-luisterbegrip-trainingsprogramma {
    flex: 1 1 100%;
    max-width: none;
  }
}

.cta-section-luisterbegrip-trainingsprogramma {
  background: #111d2f;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section-luisterbegrip-trainingsprogramma::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content-luisterbegrip-trainingsprogramma {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title-luisterbegrip-trainingsprogramma {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.cta-description-luisterbegrip-trainingsprogramma {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.cta-quote-luisterbegrip-trainingsprogramma {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #34d399;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 8px;
  margin: var(--space-lg) 0;
  width: 100%;
}

.quote-text-luisterbegrip-trainingsprogramma {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 var(--space-md);
}

.quote-author-luisterbegrip-trainingsprogramma {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
  display: block;
}

.cta-buttons-luisterbegrip-trainingsprogramma {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-md);
}

.btn-primary-luisterbegrip-trainingsprogramma {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #10b981;
  color: #0f172a;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-luisterbegrip-trainingsprogramma:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.disclaimer-section-luisterbegrip-trainingsprogramma {
  background: #f1f5f9;
  padding: clamp(3rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-luisterbegrip-trainingsprogramma {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-luisterbegrip-trainingsprogramma {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin: 0 0 var(--space-md);
}

.disclaimer-text-luisterbegrip-trainingsprogramma {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

.related-section-luisterbegrip-trainingsprogramma {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-luisterbegrip-trainingsprogramma {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.related-grid-luisterbegrip-trainingsprogramma {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-luisterbegrip-trainingsprogramma {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-luisterbegrip-trainingsprogramma:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
  transform: translateY(-4px);
}

.related-image-luisterbegrip-trainingsprogramma {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  background: #e2e8f0;
}

.related-image-luisterbegrip-trainingsprogramma img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-luisterbegrip-trainingsprogramma {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.related-card-text-luisterbegrip-trainingsprogramma {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.related-link-luisterbegrip-trainingsprogramma {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.related-link-luisterbegrip-trainingsprogramma:hover {
  color: #059669;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-card-luisterbegrip-trainingsprogramma {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero-section-luisterbegrip-trainingsprogramma .container {
    flex-direction: column;
  }

  .hero-content-luisterbegrip-trainingsprogramma {
    max-width: 100%;
  }

  .hero-image-wrapper-luisterbegrip-trainingsprogramma {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .breadcrumbs-luisterbegrip-trainingsprogramma {
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  .hero-stats-luisterbegrip-trainingsprogramma {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.main-gespreksvaardigheden-nederlands {
  width: 100%;
}

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

.hero-section-gespreksvaardigheden-nederlands::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-section-gespreksvaardigheden-nederlands::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

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

.breadcrumbs-gespreksvaardigheden-nederlands {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  position: relative;
  z-index: 1;
}

.breadcrumb-link-gespreksvaardigheden-nederlands {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-gespreksvaardigheden-nederlands:hover {
  color: #34d399;
}

.breadcrumb-separator-gespreksvaardigheden-nederlands {
  color: #475569;
}

.breadcrumb-current-gespreksvaardigheden-nederlands {
  color: #34d399;
  font-weight: 500;
}

.hero-content-gespreksvaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 700px;
  position: relative;
  z-index: 1;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-title-gespreksvaardigheden-nederlands {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle-gespreksvaardigheden-nederlands {
  color: #34d399;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
}

.hero-description-gespreksvaardigheden-nederlands {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 650px;
}

.hero-cta-group-gespreksvaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .hero-cta-group-gespreksvaardigheden-nederlands {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  gap: 0.5rem;
  text-decoration: none;
  width: 100%;
}

@media (min-width: 640px) {
  .btn {
    width: auto;
  }
}

.btn-primary-gespreksvaardigheden-nederlands {
  background: #10b981;
  color: #ffffff;
}

.btn-primary-gespreksvaardigheden-nederlands:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary-gespreksvaardigheden-nederlands {
  background: transparent;
  color: #34d399;
  border: 2px solid #34d399;
}

.btn-secondary-gespreksvaardigheden-nederlands:hover {
  background: #34d399;
  color: #0a0f1e;
}

.hero-stats-gespreksvaardigheden-nederlands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item-gespreksvaardigheden-nederlands {
  text-align: center;
}

.stat-number-gespreksvaardigheden-nederlands {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #34d399;
  margin-bottom: 0.5rem;
}

.stat-label-gespreksvaardigheden-nederlands {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.hero-image-wrapper-gespreksvaardigheden-nederlands {
  position: relative;
  z-index: 1;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.hero-image-gespreksvaardigheden-nederlands {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.intro-section-gespreksvaardigheden-nederlands {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.intro-text-block-gespreksvaardigheden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-gespreksvaardigheden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-gespreksvaardigheden-nederlands {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.intro-paragraph-gespreksvaardigheden-nederlands {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-gespreksvaardigheden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-wrapper-gespreksvaardigheden-nederlands {
    flex-direction: column;
  }
  
  .intro-text-block-gespreksvaardigheden-nederlands,
  .intro-image-block-gespreksvaardigheden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.methodology-section-gespreksvaardigheden-nederlands {
  background: #0d1526;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.methodology-section-gespreksvaardigheden-nederlands::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.methodology-header-gespreksvaardigheden-nederlands {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.methodology-title-gespreksvaardigheden-nederlands {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.methodology-subtitle-gespreksvaardigheden-nederlands {
  color: #94a3b8;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
}

.methodology-steps-gespreksvaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.methodology-step-gespreksvaardigheden-nederlands {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.methodology-step-gespreksvaardigheden-nederlands:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateX(8px);
}

.methodology-step-number-gespreksvaardigheden-nederlands {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #34d399;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.methodology-step-content-gespreksvaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.methodology-step-title-gespreksvaardigheden-nederlands {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
}

.methodology-step-text-gespreksvaardigheden-nederlands {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.techniques-section-gespreksvaardigheden-nederlands {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.techniques-content-wrapper-gespreksvaardigheden-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.techniques-text-block-gespreksvaardigheden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-block-gespreksvaardigheden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-gespreksvaardigheden-nederlands {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.techniques-paragraph-gespreksvaardigheden-nederlands {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.techniques-list-gespreksvaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-item-gespreksvaardigheden-nederlands {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #10b981;
  transition: all 0.3s ease;
}

.technique-item-gespreksvaardigheden-nederlands:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.technique-item-title-gespreksvaardigheden-nederlands {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.technique-item-text-gespreksvaardigheden-nederlands {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.techniques-image-gespreksvaardigheden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .techniques-content-wrapper-gespreksvaardigheden-nederlands {
    flex-direction: column;
  }
  
  .techniques-text-block-gespreksvaardigheden-nederlands,
  .techniques-image-block-gespreksvaardigheden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-gespreksvaardigheden-nederlands {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.practice-header-gespreksvaardigheden-nederlands {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.practice-title-gespreksvaardigheden-nederlands {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.practice-subtitle-gespreksvaardigheden-nederlands {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
}

.practice-cards-gespreksvaardigheden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.practice-card-gespreksvaardigheden-nederlands {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.practice-card-gespreksvaardigheden-nederlands:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.practice-card-icon-gespreksvaardigheden-nederlands {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.75rem;
}

.practice-card-title-gespreksvaardigheden-nederlands {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
}

.practice-card-text-gespreksvaardigheden-nederlands {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .practice-card-gespreksvaardigheden-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

.results-section-gespreksvaardigheden-nederlands {
  background: #f1f5f9;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.results-content-wrapper-gespreksvaardigheden-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.results-image-block-gespreksvaardigheden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  order: 2;
}

.results-text-block-gespreksvaardigheden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  order: 1;
}

.results-title-gespreksvaardigheden-nederlands {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.results-paragraph-gespreksvaardigheden-nederlands {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.results-quote-gespreksvaardigheden-nederlands {
  padding: 2rem 2.5rem;
  border-left: 4px solid #10b981;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-gespreksvaardigheden-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.quote-author-gespreksvaardigheden-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.results-list-gespreksvaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  list-style: none;
}

.results-list-item-gespreksvaardigheden-nederlands {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #0f172a;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.6;
}

.results-list-item-gespreksvaardigheden-nederlands::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.results-image-gespreksvaardigheden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .results-content-wrapper-gespreksvaardigheden-nederlands {
    flex-direction: column;
  }
  
  .results-image-block-gespreksvaardigheden-nederlands,
  .results-text-block-gespreksvaardigheden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

.cta-section-gespreksvaardigheden-nederlands {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section-gespreksvaardigheden-nederlands::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}

.cta-content-gespreksvaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title-gespreksvaardigheden-nederlands {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
}

.cta-description-gespreksvaardigheden-nederlands {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  max-width: 600px;
}

.cta-button-group-gespreksvaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-button-group-gespreksvaardigheden-nederlands {
    flex-direction: row;
  }
}

.related-section-gespreksvaardigheden-nederlands {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-gespreksvaardigheden-nederlands {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.related-title-gespreksvaardigheden-nederlands {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.related-subtitle-gespreksvaardigheden-nederlands {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
}

.related-cards-gespreksvaardigheden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-gespreksvaardigheden-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.related-card-gespreksvaardigheden-nederlands:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.related-card-title-gespreksvaardigheden-nederlands {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.related-card-text-gespreksvaardigheden-nederlands {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
  flex: 1;
}

.related-card-link-gespreksvaardigheden-nederlands {
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.related-card-link-gespreksvaardigheden-nederlands:hover {
  color: #059669;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-card-gespreksvaardigheden-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-gespreksvaardigheden-nederlands {
  background: #f1f5f9;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-gespreksvaardigheden-nederlands {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.disclaimer-title-gespreksvaardigheden-nederlands {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-gespreksvaardigheden-nederlands {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-section-gespreksvaardigheden-nederlands {
    padding: 2.5rem 0 4rem;
  }

  .hero-image-wrapper-gespreksvaardigheden-nederlands {
    margin-top: 2rem;
  }

  .intro-section-gespreksvaardigheden-nederlands,
  .techniques-section-gespreksvaardigheden-nederlands,
  .results-section-gespreksvaardigheden-nederlands {
    padding: 3rem 0;
  }

  .methodology-section-gespreksvaardigheden-nederlands,
  .practice-section-gespreksvaardigheden-nederlands,
  .related-section-gespreksvaardigheden-nederlands {
    padding: 3rem 0;
  }
}

@media (max-width: 640px) {
  .hero-cta-group-gespreksvaardigheden-nederlands {
    gap: 0.75rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .methodology-step-gespreksvaardigheden-nederlands {
    flex-direction: column;
    align-items: flex-start;
  }

  .practice-cards-gespreksvaardigheden-nederlands {
    gap: 1rem;
  }

  .cta-button-group-gespreksvaardigheden-nederlands {
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  section {
    page-break-inside: avoid;
  }
}

.main-nederlandse-consonanten-gids {
  width: 100%;
  background: #ffffff;
  font-family: var(--font-primary);
}

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

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

.breadcrumb-link-nederlandse-consonanten-gids {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-nederlandse-consonanten-gids:hover {
  color: #1e40af;
  text-decoration: underline;
}

.breadcrumb-separator-nederlandse-consonanten-gids {
  color: #cbd5e1;
}

.breadcrumb-current-nederlandse-consonanten-gids {
  color: #64748b;
}

.hero-section-nederlandse-consonanten-gids {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-nederlandse-consonanten-gids::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-nederlandse-consonanten-gids::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-nederlandse-consonanten-gids {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.hero-title-nederlandse-consonanten-gids {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlandse-consonanten-gids {
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #34d399;
  line-height: 1.2;
}

.hero-description-nederlandse-consonanten-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
  max-width: 680px;
}

.hero-cta-group-nederlandse-consonanten-gids {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 640px) {
  .hero-cta-group-nederlandse-consonanten-gids {
    flex-direction: row;
  }
}

.hero-section-nederlandse-consonanten-gids .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-section-nederlandse-consonanten-gids .btn-primary {
  background: #10b981;
  color: #0f172a;
}

.hero-section-nederlandse-consonanten-gids .btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.hero-section-nederlandse-consonanten-gids .btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hero-section-nederlandse-consonanten-gids .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #34d399;
  color: #34d399;
}

.hero-stats-nederlandse-consonanten-gids {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  max-width: 500px;
}

.stat-item-nederlandse-consonanten-gids {
  text-align: center;
}

.stat-number-nederlandse-consonanten-gids {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #34d399;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label-nederlandse-consonanten-gids {
  display: block;
  color: #a7f3d0;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.hero-image-container-nederlandse-consonanten-gids {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image-nederlandse-consonanten-gids {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.introduction-section-nederlandse-consonanten-gids {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.introduction-wrapper-nederlandse-consonanten-gids {
  display: flex;
  flex-direction: row;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .introduction-wrapper-nederlandse-consonanten-gids {
    flex-direction: column;
  }
}

.introduction-text-nederlandse-consonanten-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .introduction-text-nederlandse-consonanten-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-title-nederlandse-consonanten-gids {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.introduction-paragraph-nederlandse-consonanten-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.introduction-image-nederlandse-consonanten-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .introduction-image-nederlandse-consonanten-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-img-nederlandse-consonanten-gids {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fundamentals-section-nederlandse-consonanten-gids {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.fundamentals-header-nederlandse-consonanten-gids {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.fundamentals-title-nederlandse-consonanten-gids {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.fundamentals-subtitle-nederlandse-consonanten-gids {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  line-height: 1.6;
}

.fundamentals-grid-nederlandse-consonanten-gids {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.fundamentals-card-nederlandse-consonanten-gids {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.fundamentals-card-nederlandse-consonanten-gids:hover {
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
  transform: translateY(-4px);
}

.fundamentals-card-number-nederlandse-consonanten-gids {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.fundamentals-card-title-nederlandse-consonanten-gids {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.fundamentals-card-text-nederlandse-consonanten-gids {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.techniques-section-nederlandse-consonanten-gids {
  background: #0d1526;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.techniques-section-nederlandse-consonanten-gids::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.techniques-wrapper-nederlandse-consonanten-gids {
  display: flex;
  flex-direction: row;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .techniques-wrapper-nederlandse-consonanten-gids {
    flex-direction: column;
  }
}

.techniques-image-nederlandse-consonanten-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .techniques-image-nederlandse-consonanten-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-img-nederlandse-consonanten-gids {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.techniques-text-nederlandse-consonanten-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .techniques-text-nederlandse-consonanten-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-title-nederlandse-consonanten-gids {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.techniques-paragraph-nederlandse-consonanten-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.techniques-paragraph-nederlandse-consonanten-gids strong {
  color: #ffffff;
  font-weight: 600;
}

.challenges-section-nederlandse-consonanten-gids {
  background: #f1f5f9;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-header-nederlandse-consonanten-gids {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.challenges-title-nederlandse-consonanten-gids {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.challenges-subtitle-nederlandse-consonanten-gids {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  line-height: 1.6;
}

.challenges-wrapper-nederlandse-consonanten-gids {
  display: flex;
  flex-direction: row;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .challenges-wrapper-nederlandse-consonanten-gids {
    flex-direction: column;
  }
}

.challenges-text-nederlandse-consonanten-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .challenges-text-nederlandse-consonanten-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-subheading-nederlandse-consonanten-gids {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.challenges-content-nederlandse-consonanten-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.challenges-image-nederlandse-consonanten-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .challenges-image-nederlandse-consonanten-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-img-nederlandse-consonanten-gids {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practice-section-nederlandse-consonanten-gids {
  background: #111d2f;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.practice-section-nederlandse-consonanten-gids::before {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.practice-content-nederlandse-consonanten-gids {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.practice-title-nederlandse-consonanten-gids {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.practice-intro-nederlandse-consonanten-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.practice-steps-nederlandse-consonanten-gids {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.practice-step-nederlandse-consonanten-gids {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border-left: 4px solid #10b981;
  transition: all 0.3s ease;
}

.practice-step-nederlandse-consonanten-gids:hover {
  background: rgba(16, 185, 129, 0.15);
  border-left-color: #34d399;
}

.practice-step-number-nederlandse-consonanten-gids {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #34d399;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.practice-step-content-nederlandse-consonanten-gids {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practice-step-title-nederlandse-consonanten-gids {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.practice-step-text-nederlandse-consonanten-gids {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.practice-note-nederlandse-consonanten-gids {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.practice-note-text-nederlandse-consonanten-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #e0f2fe;
  line-height: 1.7;
  margin: 0;
}

.practice-note-text-nederlandse-consonanten-gids strong {
  color: #ffffff;
  font-weight: 600;
}

.resources-section-nederlandse-consonanten-gids {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.resources-header-nederlandse-consonanten-gids {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.resources-title-nederlandse-consonanten-gids {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.resources-subtitle-nederlandse-consonanten-gids {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  line-height: 1.6;
}

.resources-image-wrapper-nederlandse-consonanten-gids {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  border-radius: 12px;
  overflow: hidden;
}

.resources-image-nederlandse-consonanten-gids {
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resources-text-nederlandse-consonanten-gids {
  max-width: 900px;
  margin: 0 auto;
}

.resources-description-nederlandse-consonanten-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-section-nederlandse-consonanten-gids {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-section-nederlandse-consonanten-gids::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.conclusion-content-nederlandse-consonanten-gids {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-nederlandse-consonanten-gids {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.conclusion-paragraph-nederlandse-consonanten-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.conclusion-cta-nederlandse-consonanten-gids {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 640px) {
  .conclusion-cta-nederlandse-consonanten-gids {
    flex-direction: row;
    justify-content: center;
  }
}

.conclusion-section-nederlandse-consonanten-gids .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.conclusion-section-nederlandse-consonanten-gids .btn-primary {
  background: #10b981;
  color: #0f172a;
  width: 100%;
}

@media (min-width: 640px) {
  .conclusion-section-nederlandse-consonanten-gids .btn-primary {
    width: auto;
  }
}

.conclusion-section-nederlandse-consonanten-gids .btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.conclusion-section-nederlandse-consonanten-gids .btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 100%;
}

@media (min-width: 640px) {
  .conclusion-section-nederlandse-consonanten-gids .btn-secondary {
    width: auto;
  }
}

.conclusion-section-nederlandse-consonanten-gids .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #34d399;
  color: #34d399;
}

.related-section-nederlandse-consonanten-gids {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-nederlandse-consonanten-gids {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-nederlandse-consonanten-gids {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-nederlandse-consonanten-gids {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  line-height: 1.6;
}

.related-cards-nederlandse-consonanten-gids {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-nederlandse-consonanten-gids {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-nederlandse-consonanten-gids:hover {
  border-color: #10b981;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
  transform: translateY(-6px);
}

.related-card-image-nederlandse-consonanten-gids {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-nederlandse-consonanten-gids img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-nederlandse-consonanten-gids:hover .related-card-image-nederlandse-consonanten-gids img {
  transform: scale(1.05);
}

.related-card-content-nederlandse-consonanten-gids {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-nederlandse-consonanten-gids {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-nederlandse-consonanten-gids {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-nederlandse-consonanten-gids {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: #10b981;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-nederlandse-consonanten-gids:hover {
  color: #059669;
  transform: translateX(4px);
}

.disclaimer-section-nederlandse-consonanten-gids {
  background: #0d1526;
  padding: clamp(3rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  overflow: hidden;
}

.disclaimer-content-nederlandse-consonanten-gids {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(16, 185, 129, 0.06);
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.disclaimer-title-nederlandse-consonanten-gids {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.disclaimer-text-nederlandse-consonanten-gids {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-cta-group-nederlandse-consonanten-gids {
    width: 100%;
  }

  .hero-section-nederlandse-consonanten-gids .btn {
    width: 100%;
  }

  .fundamentals-card-nederlandse-consonanten-gids {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-nederlandse-consonanten-gids {
    flex: 1 1 100%;
    max-width: none;
  }

  .practice-step-nederlandse-consonanten-gids {
    gap: 1rem;
  }

  .practice-step-number-nederlandse-consonanten-gids {
    min-width: 40px;
  }
}

@media (max-width: 640px) {
  .hero-stats-nederlandse-consonanten-gids {
    grid-template-columns: 1fr;
    max-width: 200px;
  }

  .breadcrumbs-nederlandse-consonanten-gids {
    font-size: 0.75rem;
  }
}

@media print {
  .hero-section-nederlandse-consonanten-gids,
  .introduction-section-nederlandse-consonanten-gids,
  .fundamentals-section-nederlandse-consonanten-gids,
  .techniques-section-nederlandse-consonanten-gids,
  .challenges-section-nederlandse-consonanten-gids,
  .practice-section-nederlandse-consonanten-gids,
  .resources-section-nederlandse-consonanten-gids,
  .conclusion-section-nederlandse-consonanten-gids,
  .related-section-nederlandse-consonanten-gids,
  .disclaimer-section-nederlandse-consonanten-gids {
    page-break-inside: avoid;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (prefers-color-scheme: light) {
  .main-nederlandse-consonanten-gids {
    background: #ffffff;
    color: #1a1a1a;
  }
}

.main-nederlandse-intonatie-meesterij {
  width: 100%;
}

.hero-section-nederlandse-intonatie-meesterij {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-nederlandse-intonatie-meesterij::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section-nederlandse-intonatie-meesterij::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-nederlandse-intonatie-meesterij {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-bottom: 3rem;
}

.breadcrumbs-nederlandse-intonatie-meesterij {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-nederlandse-intonatie-meesterij {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlandse-intonatie-meesterij:hover {
  color: #10b981;
}

.breadcrumb-separator-nederlandse-intonatie-meesterij {
  color: #64748b;
}

.breadcrumb-current-nederlandse-intonatie-meesterij {
  color: #10b981;
  font-weight: 500;
}

.hero-title-nederlandse-intonatie-meesterij {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-subtitle-nederlandse-intonatie-meesterij {
  color: #34d399;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 500;
}

.hero-description-nederlandse-intonatie-meesterij {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 650px;
}

.hero-stats-nederlandse-intonatie-meesterij {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item-nederlandse-intonatie-meesterij {
  text-align: center;
}

.stat-number-nederlandse-intonatie-meesterij {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #34d399;
  margin-bottom: 0.5rem;
}

.stat-label-nederlandse-intonatie-meesterij {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.hero-image-wrapper-nederlandse-intonatie-meesterij {
  position: relative;
  z-index: 1;
}

.hero-image-nederlandse-intonatie-meesterij {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.intro-section-nederlandse-intonatie-meesterij {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-wrapper-nederlandse-intonatie-meesterij {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-block-nederlandse-intonatie-meesterij {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-nederlandse-intonatie-meesterij {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlandse-intonatie-meesterij {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.intro-paragraph-nederlandse-intonatie-meesterij {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-nederlandse-intonatie-meesterij {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 350px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-wrapper-nederlandse-intonatie-meesterij {
    flex-direction: column;
  }

  .intro-text-block-nederlandse-intonatie-meesterij,
  .intro-image-block-nederlandse-intonatie-meesterij {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.patterns-section-nederlandse-intonatie-meesterij {
  background: #0d1526;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.patterns-section-nederlandse-intonatie-meesterij::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.patterns-header-nederlandse-intonatie-meesterij {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.patterns-title-nederlandse-intonatie-meesterij {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.patterns-subtitle-nederlandse-intonatie-meesterij {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.patterns-list-nederlandse-intonatie-meesterij {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.pattern-item-nederlandse-intonatie-meesterij {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.pattern-item-nederlandse-intonatie-meesterij:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.pattern-number-nederlandse-intonatie-meesterij {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #34d399;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.pattern-content-nederlandse-intonatie-meesterij {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pattern-title-nederlandse-intonatie-meesterij {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.pattern-text-nederlandse-intonatie-meesterij {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .pattern-item-nederlandse-intonatie-meesterij {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .pattern-number-nederlandse-intonatie-meesterij {
    min-width: auto;
  }
}

.rhythm-section-nederlandse-intonatie-meesterij {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.rhythm-content-wrapper-nederlandse-intonatie-meesterij {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.rhythm-text-block-nederlandse-intonatie-meesterij {
  flex: 1 1 50%;
  max-width: 50%;
}

.rhythm-image-block-nederlandse-intonatie-meesterij {
  flex: 1 1 50%;
  max-width: 50%;
}

.rhythm-title-nederlandse-intonatie-meesterij {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
}

.rhythm-paragraph-nederlandse-intonatie-meesterij {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.rhythm-quote-nederlandse-intonatie-meesterij {
  padding: 2rem;
  border-left: 4px solid #10b981;
  background: #f1f5f9;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-nederlandse-intonatie-meesterij {
  color: #0f172a;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1rem;
}

.quote-author-nederlandse-intonatie-meesterij {
  color: #64748b;
  font-size: 0.9rem;
  font-style: normal;
}

.rhythm-image-nederlandse-intonatie-meesterij {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 350px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .rhythm-content-wrapper-nederlandse-intonatie-meesterij {
    flex-direction: column;
  }

  .rhythm-text-block-nederlandse-intonatie-meesterij,
  .rhythm-image-block-nederlandse-intonatie-meesterij {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-nederlandse-intonatie-meesterij {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-header-nederlandse-intonatie-meesterij {
  text-align: center;
  margin-bottom: 3rem;
}

.practice-title-nederlandse-intonatie-meesterij {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.practice-subtitle-nederlandse-intonatie-meesterij {
  color: #64748b;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.practice-grid-nederlandse-intonatie-meesterij {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.practice-card-nederlandse-intonatie-meesterij {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.practice-card-nederlandse-intonatie-meesterij:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.practice-icon-nederlandse-intonatie-meesterij {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: #10b981;
  font-size: 1.5rem;
}

.practice-card-title-nederlandse-intonatie-meesterij {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.practice-card-text-nederlandse-intonatie-meesterij {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .practice-card-nederlandse-intonatie-meesterij {
    flex: 1 1 100%;
    max-width: none;
  }
}

.application-section-nederlandse-intonatie-meesterij {
  background: #0d1526;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.application-content-wrapper-nederlandse-intonatie-meesterij {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.application-image-block-nederlandse-intonatie-meesterij {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-text-block-nederlandse-intonatie-meesterij {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-title-nederlandse-intonatie-meesterij {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
}

.application-paragraph-nederlandse-intonatie-meesterij {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.application-image-nederlandse-intonatie-meesterij {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 350px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .application-content-wrapper-nederlandse-intonatie-meesterij {
    flex-direction: column;
  }

  .application-image-block-nederlandse-intonatie-meesterij,
  .application-text-block-nederlandse-intonatie-meesterij {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-nederlandse-intonatie-meesterij {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-nederlandse-intonatie-meesterij {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-nederlandse-intonatie-meesterij {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.conclusion-text-nederlandse-intonatie-meesterij {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-cta-nederlandse-intonatie-meesterij {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 640px) {
  .conclusion-cta-nederlandse-intonatie-meesterij {
    flex-direction: row;
  }
}

.cta-button-nederlandse-intonatie-meesterij {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #10b981;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  transition: all 0.3s ease;
  width: 100%;
}

@media (min-width: 640px) {
  .cta-button-nederlandse-intonatie-meesterij {
    width: auto;
  }
}

.cta-button-nederlandse-intonatie-meesterij:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.cta-button-secondary-nederlandse-intonatie-meesterij {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  transition: all 0.3s ease;
  width: 100%;
}

@media (min-width: 640px) {
  .cta-button-secondary-nederlandse-intonatie-meesterij {
    width: auto;
  }
}

.cta-button-secondary-nederlandse-intonatie-meesterij:hover {
  background: #10b981;
  color: #ffffff;
}

.disclaimer-section-nederlandse-intonatie-meesterij {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-nederlandse-intonatie-meesterij {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.disclaimer-title-nederlandse-intonatie-meesterij {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-nederlandse-intonatie-meesterij {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

.related-section-nederlandse-intonatie-meesterij {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-nederlandse-intonatie-meesterij {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
}

.related-grid-nederlandse-intonatie-meesterij {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-nederlandse-intonatie-meesterij {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-nederlandse-intonatie-meesterij:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.related-image-nederlandse-intonatie-meesterij {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-title-nederlandse-intonatie-meesterij {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  padding: 0 1.5rem;
}

.related-card-text-nederlandse-intonatie-meesterij {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  padding: 0 1.5rem;
  flex: 1;
}

.related-link-nederlandse-intonatie-meesterij {
  display: inline-block;
  color: #10b981;
  font-weight: 600;
  padding: 0 1.5rem 1.5rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.related-link-nederlandse-intonatie-meesterij:hover {
  color: #059669;
}

@media (max-width: 768px) {
  .related-card-nederlandse-intonatie-meesterij {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

@media (max-width: 768px) {
  .hero-stats-nederlandse-intonatie-meesterij {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .pattern-item-nederlandse-intonatie-meesterij {
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0d1526;
  --color-bg-dark-tertiary: #111d2f;
  --color-bg-dark-card: rgba(16, 185, 129, 0.08);
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-light-card: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #64748b;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #94a3b8;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-dark: #047857;
  --color-secondary: #34d399;
  --color-accent-warm: #f59e0b;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

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

.dutch-learning-about {
  width: 100%;
  background: var(--color-bg-light-primary);
}

.hero-listening-about {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-listening-header-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 750px;
}

.hero-listening-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-dark-primary);
  line-height: 1.1;
  font-family: var(--font-heading);
}

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

.hero-listening-description-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  max-width: 650px;
}

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

.stat-item-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-listening-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hero-listening-about {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-listening-about {
    padding: 6rem 0;
  }
}

.mission-foundation-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.mission-foundation-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
}

.mission-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.mission-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-light-primary);
  line-height: 1.15;
  font-family: var(--font-heading);
}

.mission-description-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  line-height: 1.8;
}

.mission-blocks-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.mission-block-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.mission-block-number-about {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.mission-block-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-light-primary);
}

.mission-block-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .mission-block-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.approach-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
}

.approach-label-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
  font-family: var(--font-heading);
}

.approach-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-muted);
  line-height: 1.8;
}

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

.approach-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
}

.approach-step-number-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
  font-family: var(--font-heading);
}

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

.approach-step-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark-primary);
}

.approach-step-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-muted);
  line-height: 1.7;
}

.approach-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .approach-methodology-about {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .approach-methodology-about {
    padding: 6rem 0;
  }
}

.values-commitment-about {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.values-commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.values-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.values-badge-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  margin: 0 auto;
}

.values-heading-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-light-primary);
  line-height: 1.15;
  font-family: var(--font-heading);
}

.values-intro-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  line-height: 1.8;
}

.values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.values-card-about {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-card-about:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.values-card-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.values-card-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-light-primary);
}

.values-card-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .values-card-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.featured-quote-about {
  background: var(--color-bg-dark-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(2rem, 4vw, 3rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: var(--radius-lg);
}

.featured-quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-dark-primary);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-family: var(--font-heading);
  font-weight: 600;
}

.featured-quote-author-about {
  font-size: 0.9375rem;
  color: var(--color-secondary);
  font-style: normal;
  font-weight: 600;
}

.why-klank-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.why-klank-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.why-klank-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-klank-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  margin: 0 auto;
}

.why-klank-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-light-primary);
  line-height: 1.15;
  font-family: var(--font-heading);
}

.why-klank-description-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  line-height: 1.8;
}

.why-klank-features-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.why-klank-feature-about {
  flex: 1 1 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.why-klank-feature-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-klank-feature-title-about {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-light-primary);
}

.why-klank-feature-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.why-klank-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .why-klank-feature-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-notice-about {
  background: var(--color-bg-dark-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

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

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.4;
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  line-height: 1.8;
  max-width: 850px;
  margin-left: 0;
}

@media (min-width: 768px) {
  .disclaimer-notice-about {
    padding: 3rem 0;
  }
}

@media (min-width: 1024px) {
  .disclaimer-notice-about {
    padding: 4rem 0;
  }
}

.legal-portal {
    font-family: var(--font-primary);
    background: var(--color-bg-light-primary);
    color: var(--color-text-light-primary);
  }

  .legal-portal .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: clamp(1rem, 5vw, 2rem);
    padding-right: clamp(1rem, 5vw, 2rem);
  }

  .legal-portal-hero {
    background: var(--color-bg-light-secondary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

  .legal-portal-hero .container {
    padding-left: clamp(1rem, 5vw, 2rem);
    padding-right: clamp(1rem, 5vw, 2rem);
  }

  .legal-portal-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .legal-portal-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text-light-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-portal-hero-meta {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: var(--color-text-light-secondary);
    line-height: 1.6;
  }

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

  .legal-portal-content .container {
    padding-left: clamp(1rem, 5vw, 2rem);
    padding-right: clamp(1rem, 5vw, 2rem);
  }

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

  .legal-portal-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .legal-portal-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-light-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-portal-section p {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.8;
    color: var(--color-text-light-secondary);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-portal-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-left: 1.5rem;
  }

  .legal-portal-section li {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.8;
    color: var(--color-text-light-secondary);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-portal-contact {
    background: var(--color-bg-light-secondary);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .legal-portal-contact h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-light-primary);
  }

  .legal-portal-contact p {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.8;
    color: var(--color-text-light-secondary);
  }

  .legal-portal-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .legal-portal-contact-label {
    font-weight: 600;
    color: var(--color-text-light-primary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  }

  .legal-portal-contact-value {
    color: var(--color-text-light-secondary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  }

  @media (min-width: 768px) {
    .legal-portal-hero {
      padding: clamp(3rem, 8vw, 5rem) 0;
    }

    .legal-portal-content {
      padding: clamp(4rem, 10vw, 6rem) 0;
    }

    .legal-portal-section {
      gap: 1.25rem;
    }

    .legal-portal-contact {
      padding: clamp(2.5rem, 6vw, 3.5rem);
    }
  }

  @media (min-width: 1024px) {
    .legal-portal-hero {
      padding: clamp(4rem, 10vw, 6rem) 0;
    }

    .legal-portal-content {
      padding: clamp(5rem, 12vw, 7rem) 0;
    }
  }

  .thank-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  
  .thank-section {
    background: var(--color-bg-dark-primary);
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
  }

  
  .thank-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    padding: clamp(1rem, 4vw, 2rem);
  }

  
  .thank-icon {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .thank-icon i {
    font-size: clamp(3rem, 10vw, 5rem);
    color: var(--color-secondary);
  }

  
  .thank-section h1 {
    color: var(--color-text-dark-primary);
    font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  
  .thank-lead {
    color: var(--color-text-dark-secondary);
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.3s both;
  }

  
  .thank-message {
    color: var(--color-text-dark-secondary);
    font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.0625rem);
    font-family: var(--font-primary);
    line-height: 1.6;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }

  
  .thank-next-steps {
    color: var(--color-text-dark-muted);
    font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
    font-family: var(--font-primary);
    line-height: 1.6;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
  }

  
  .btn {
    display: inline-block;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.75rem, 4vw, 2.5rem);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out 0.6s both;
  }

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

  .btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.3);
  }

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

  
  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

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

  
  @media (min-width: 768px) {
    .thank-section {
      padding: clamp(3rem, 8vw, 5rem) 0;
      min-height: 80vh;
    }

    .thank-content {
      gap: clamp(2rem, 5vw, 3rem);
    }

    .thank-icon {
      margin-bottom: 1rem;
    }

    .thank-section h1 {
      letter-spacing: -1px;
    }
  }

  
  @media (min-width: 1024px) {
    .thank-section {
      padding: clamp(4rem, 10vw, 6rem) 0;
      min-height: 90vh;
    }

    .thank-content {
      gap: clamp(2.5rem, 6vw, 3.5rem);
    }

    .thank-icon {
      margin-bottom: 2rem;
    }
  }

  
  @media (min-width: 1440px) {
    .thank-section {
      min-height: 100vh;
    }

    .thank-content {
      gap: 3rem;
    }
  }

  
  @media (prefers-reduced-motion: reduce) {
    .thank-icon,
    .thank-section h1,
    .thank-lead,
    .thank-message,
    .thank-next-steps,
    .btn {
      animation: none;
    }

    .btn:hover {
      transform: none;
    }
  }

  
  .btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  
  @media (prefers-contrast: more) {
    .thank-icon {
      background: rgba(16, 185, 129, 0.25);
      border: 2px solid var(--color-secondary);
    }

    .btn-primary {
      border-color: #000000;
    }
  }

.error-page {
  width: 100%;
}

.error-section {
  background: var(--color-bg-dark-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 0;
  overflow: hidden;
  position: relative;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: var(--space-md);
}

.error-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

.error-decoration-1 {
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.error-decoration-2 {
  width: 250px;
  height: 250px;
  background: var(--color-secondary);
  bottom: -80px;
  left: -80px;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.error-code-wrapper {
  position: relative;
  margin-bottom: var(--space-md);
  animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.error-code {
  font-size: clamp(4rem, 12vw, 7rem);
  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;
  margin: 0;
  line-height: 1;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.error-icon {
  position: absolute;
  bottom: -15px;
  right: -15px;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-secondary);
  opacity: 0.7;
  animation: bounce 2s ease-in-out infinite;
}

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

.error-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: var(--space-sm) 0;
  font-family: var(--font-heading);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.error-description {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 500px;
  line-height: 1.7;
  margin: var(--space-md) 0 var(--space-lg) 0;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  max-width: 500px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.suggestion-title {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-sm) 0;
}

.suggestion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.suggestion-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.5;
}

.suggestion-list i {
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.125rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-large {
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

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

.error-hint {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--color-text-dark-muted);
  margin-top: var(--space-lg);
  max-width: 500px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

@media (min-width: 768px) {
  .error-section {
    min-height: 100vh;
    padding: var(--space-xl) 0;
  }

  .error-code-wrapper {
    margin-bottom: var(--space-lg);
  }

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

  .error-decoration-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
  }

  .error-decoration-2 {
    width: 350px;
    height: 350px;
    bottom: -120px;
    left: -120px;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-2xl) 0;
  }

  .error-content {
    gap: var(--space-lg);
  }

  .error-decoration-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -200px;
  }

  .error-decoration-2 {
    width: 450px;
    height: 450px;
    bottom: -180px;
    left: -180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code-wrapper,
  .error-title,
  .error-description,
  .error-suggestions,
  .btn,
  .error-hint,
  .error-icon,
  .error-decoration {
    animation: none;
  }
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media print {
  .error-decoration {
    display: none;
  }

  .error-icon {
    display: none;
  }

  .btn {
    display: inline-block;
    border: 1px solid currentColor;
  }
}
html,body{
  overflow-x: hidden;
}