
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

:root {
  
  
  
  
  --color-bg-primary-dark: #0f172a;
  --color-bg-primary-light: #ffffff;
  --color-bg-secondary-light: #f8fafc;
  --color-bg-tertiary-light: #f1f5f9;
  --color-bg-card-light: #ffffff;
  --color-bg-card-dark: rgba(59, 130, 246, 0.08);
  
  
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-muted-dark: #94a3b8;
  
  --color-text-primary-light: #1e293b;
  --color-text-secondary-light: #475569;
  --color-text-muted-light: #64748b;
  
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-success: #10b981;
  --color-warning: #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.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

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

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

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

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

.btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
  border-color: var(--color-text-primary-light);
  color: var(--color-text-primary-light);
  background: transparent;
}

.btn-outline-dark:hover {
  background: rgba(30, 41, 59, 0.05);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  color: var(--color-text-primary-dark);
  line-height: 1.15;
}

.hero-section .hero-subtitle {
  color: var(--color-text-secondary-dark);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  max-width: 600px;
}

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

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

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

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-stat-number {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
}

.hero-stat-label {
  color: var(--color-text-secondary-dark);
  font-size: 0.875rem;
  font-weight: 500;
}

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

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

.features-section .section-subtitle {
  color: var(--color-text-secondary-light);
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.features-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.feature-card {
  background: var(--color-bg-card-light);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

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

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

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

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

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

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text h2 {
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-lg);
}

.about-text p {
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-2xl) 0;
}

.highlight-item {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
}

.highlight-icon {
  color: var(--color-secondary);
  font-size: 1.5rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.highlight-item p {
  color: var(--color-text-secondary-dark);
  margin: 0;
}

.about-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted-dark);
  font-size: 4rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

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

  .about-image {
    height: 300px;
  }
}

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

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.benefits-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.08));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted-light);
  font-size: 4rem;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.benefits-text h2 {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-lg);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

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

.benefit-icon {
  color: var(--color-success);
  font-size: 1.5rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.benefit-item p {
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0;
}

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

  .benefits-image {
    order: -1;
    height: 300px;
  }
}

.programs-section {
  background: var(--color-bg-primary-dark);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.programs-section h2 {
  color: var(--color-text-primary-dark);
  text-align: center;
  margin-bottom: var(--space-md);
}

.programs-section .section-subtitle {
  color: var(--color-text-secondary-dark);
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.programs-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.program-card {
  background: var(--color-bg-card-dark);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: all 0.3s ease;
}

.program-card:hover {
  border-color: var(--color-primary);
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

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

.program-card h3 {
  color: var(--color-text-primary-dark);
}

.program-duration {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.program-description {
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

.program-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.program-feature {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: center;
  color: var(--color-text-secondary-dark);
  font-size: 0.9rem;
}

.program-feature i {
  color: var(--color-success);
  font-size: 1rem;
}

.program-price {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: auto;
}

.price-amount {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
}

.price-note {
  color: var(--color-text-muted-dark);
  font-size: 0.8rem;
}

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

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

.testimonials-subtitle {
  color: var(--color-text-secondary-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.testimonials-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.testimonial-card {
  background: var(--color-bg-card-light);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(59, 130, 246, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: all 0.3s ease;
}

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

.testimonial-stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
  color: var(--color-warning);
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

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

.author-role {
  color: var(--color-text-muted-light);
  font-size: 0.875rem;
}

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

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  transform: translateY(-50%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-lg);
}

.cta-description {
  color: var(--color-text-secondary-dark);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

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

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

.contact-section h2 {
  color: var(--color-text-primary-light);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.contact-subtitle {
  color: var(--color-text-secondary-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-form {
  background: var(--color-bg-card-light);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

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

.form-label {
  color: var(--color-text-primary-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  padding: var(--space-md);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  background: var(--color-bg-secondary-light);
  color: var(--color-text-primary-light);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-bg-card-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-submit-btn {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

.info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.info-item h3 {
  color: var(--color-text-primary-light);
  font-size: 1.1rem;
}

.info-item p {
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0;
}

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

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }

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

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-content {
    grid-template-columns: 1fr;
  }

  .programs-content {
    grid-template-columns: 1fr;
  }

  .testimonials-content {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stats {
    gap: var(--space-md);
    margin-top: var(--space-xl);
  }

  .about-highlights,
  .benefits-list {
    gap: var(--space-md);
  }

  .program-card,
  .feature-card,
  .testimonial-card {
    padding: var(--space-lg);
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');
  
  .header-learn-hub {
    width: 100%;
    background: var(--color-bg-primary-dark);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    position: static;
    z-index: 1000;
    top: 0;
  }

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

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

  .header-learn-hub-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 0.25rem;
    flex-shrink: 0;
  }

  .header-learn-hub-logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
  }

  .header-learn-hub-desktop-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
  }

  .header-learn-hub-nav-link {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 300ms ease-in-out;
    position: relative;
  }

  .header-learn-hub-nav-link:hover {
    color: #3b82f6;
  }

  .header-learn-hub-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 300ms ease-in-out;
  }

  .header-learn-hub-nav-link:hover::after {
    width: 100%;
  }

  .header-learn-hub-cta-button {
    display: none;
    padding: 0.75rem 1.5rem;
    background: #3b82f6;
    color: #0f172a;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 300ms ease-in-out;
    flex-shrink: 0;
  }

  .header-learn-hub-cta-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  }

  .header-learn-hub-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 300ms ease-in-out;
    padding: 0;
    flex-shrink: 0;
  }

  .header-learn-hub-mobile-toggle:hover {
    color: #3b82f6;
  }

  .header-learn-hub-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-primary-dark);
    padding: 1rem clamp(1rem, 5vw, 2rem);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

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

  .header-learn-hub-mobile-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 2rem;
  }

  .header-learn-hub-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
  }

  .header-learn-hub-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .header-learn-hub-mobile-link {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 300ms ease-in-out;
  }

  .header-learn-hub-mobile-link:hover {
    color: #3b82f6;
  }

  .header-learn-hub-mobile-cta {
    display: block;
    padding: 1rem 1.5rem;
    background: #3b82f6;
    color: #0f172a;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 300ms ease-in-out;
  }

  .header-learn-hub-mobile-cta:hover {
    background: #2563eb;
    transform: translateY(-2px);
  }

  @media (min-width: 768px) {
    .header-learn-hub-container {
      padding: 1.25rem clamp(1rem, 5vw, 2rem);
    }

    .header-learn-hub-desktop-nav {
      display: flex;
    }

    .header-learn-hub-cta-button {
      display: inline-block;
    }

    .header-learn-hub-mobile-toggle {
      display: none;
    }

    .header-learn-hub-mobile-menu {
      display: none;
    }
  }

  @media (min-width: 1024px) {
    .header-learn-hub-container {
      padding: 1.5rem clamp(1rem, 5vw, 2rem);
    }

    .header-learn-hub-desktop-nav {
      gap: 3rem;
    }

    .header-learn-hub-nav-link {
      font-size: 1rem;
    }

    .header-learn-hub-cta-button {
      padding: 0.875rem 2rem;
      font-size: 1rem;
    }
  }

  @media (max-width: 767px) {
    .header-learn-hub-desktop-nav {
      display: none;
    }

    .header-learn-hub-cta-button {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .header-learn-hub-nav-link,
    .header-learn-hub-cta-button,
    .header-learn-hub-mobile-toggle,
    .header-learn-hub-mobile-menu,
    .header-learn-hub-mobile-link,
    .header-learn-hub-mobile-cta {
      transition: none !important;
    }

    .header-learn-hub-nav-link::after {
      transition: none !important;
    }
  }

    .language-learning-portal {
  width: 100%;
}

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.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  margin-top: 0 !important;
}

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

.btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

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

.hero-gradient-field {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-floating-accent-2 {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 30% 60% 70% 40% / 60% 30% 40% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-light-orb {
  position: absolute;
  top: 40%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-corner-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.hero-title {
  color: var(--color-text-primary-dark);
  line-height: 1.15;
}

.hero-subtitle {
  color: var(--color-secondary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  max-width: 600px;
  font-weight: 600;
}

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

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero-stats {
    flex-direction: row;
    gap: var(--space-3xl);
  }
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-stat-number {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
}

.hero-stat-label {
  color: var(--color-text-secondary-dark);
  font-size: 0.875rem;
  font-weight: 500;
}

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

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

.features-color-accent-2 {
  position: absolute;
  bottom: 5%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.features-subtle-shape {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.features-line-divider {
  position: absolute;
  top: 25%;
  right: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.features-floating-panel {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(-12deg);
  z-index: 1;
  pointer-events: none;
}

.features-corner-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.features-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column !important;
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.features-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

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

.features-subtitle {
  color: var(--color-text-secondary-light);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
}

.features-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.feature-card {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

.methodology-glow-right {
  position: absolute;
  bottom: 10%;
  right: -50px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.methodology-accent-shape {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 220px;
  height: 220px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.methodology-floating-element {
  position: absolute;
  bottom: 25%;
  left: 5%;
  width: 180px;
  height: 150px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 12px;
  transform: rotate(8deg);
  z-index: 2;
  pointer-events: none;
}

.methodology-content {
  position: relative;
  z-index: 10;
}

.methodology-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.methodology-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.methodology-title {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
}

.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 700px;
  margin: 0 auto;
}

.methodology-step {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
  align-items: flex-start;
}

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

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

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

.methodology-step-title {
  color: var(--color-text-primary-light);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.methodology-step-text {
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

@media (max-width: 768px) {
  .methodology-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .methodology-step-number {
    min-width: auto;
  }
}

.programs-section {
  background: var(--color-bg-tertiary-light);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.programs-color-field-1 {
  position: absolute;
  top: 5%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.programs-color-field-2 {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.programs-accent-orb {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.programs-floating-card {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 200px;
  height: 160px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(15deg);
  z-index: 2;
  pointer-events: none;
}

.programs-line-accent {
  position: absolute;
  top: 40%;
  right: 25%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.programs-content-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 10;
}

.programs-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.programs-main-title {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
}

.programs-subtitle {
  color: var(--color-text-secondary-light);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
}

.programs-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 10;
}

.program-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-2xl);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover {
  border-color: var(--color-primary);
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

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

.program-card-title {
  color: var(--color-text-primary-light);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
}

.program-duration {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.program-description {
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.program-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.program-feature {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: center;
  color: var(--color-text-secondary-light);
  font-size: 0.9rem;
}

.program-feature i {
  color: var(--color-success);
  font-size: 1rem;
}

.program-price {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-md);
}

.price-amount {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.price-note {
  color: var(--color-text-muted-light);
  font-size: 0.8rem;
}

.program-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-primary);
  color: #000000;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: var(--space-md);
}

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

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

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

.featured-accent-1 {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.featured-accent-2 {
  position: absolute;
  bottom: 5%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-shape-element {
  position: absolute;
  top: 30%;
  left: 8%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.featured-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 10;
}

.featured-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.featured-title {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
}

.featured-subtitle {
  color: var(--color-text-secondary-light);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
}

.featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 10;
}

.featured-post-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.featured-post-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(6, 182, 212, 0.08));
  overflow: hidden;
}

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

.featured-post-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
}

.featured-post-title {
  color: var(--color-text-primary-light);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
}

.featured-post-description {
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.featured-post-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.featured-post-link:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.featured-cta {
  text-align: center;
  position: relative;
  z-index: 10;
}

.featured-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-primary);
  color: #000000;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

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

.testimonials-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -50px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-accent-shape {
  position: absolute;
  top: 35%;
  right: 10%;
  width: 220px;
  height: 220px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-floating-element {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 180px;
  height: 150px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 12px;
  transform: rotate(-10deg);
  z-index: 2;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 10;
}

.testimonials-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

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

.testimonials-subtitle {
  color: var(--color-text-secondary-light);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
}

.testimonial-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-2xl);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

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

.testimonial-stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
  color: var(--color-warning);
}

.testimonial-quote {
  color: var(--color-text-secondary-light);
  font-style: italic;
  line-height: 1.8;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.author-name {
  color: var(--color-text-primary-light);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.author-role {
  color: var(--color-text-muted-light);
  font-size: 0.875rem;
}

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

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

.cta-glow-left {
  position: absolute;
  top: 50%;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

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

.cta-accent-element {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.cta-floating-shape {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 180px;
  height: 150px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-lg);
}

.cta-description {
  color: var(--color-text-secondary-dark);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

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

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

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

.contact-shape-2 {
  position: absolute;
  bottom: 5%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 10;
}

.contact-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.contact-title {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
}

.contact-subtitle {
  color: var(--color-text-secondary-light);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  align-items: start;
  position: relative;
  z-index: 10;
}

.contact-form-wrapper {
  flex: 1 1 400px;
  max-width: 500px;
}

.contact-form {
  background: var(--color-bg-card-light);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(59, 130, 246, 0.1);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.form-label {
  color: var(--color-text-primary-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  padding: var(--space-md);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  background: var(--color-bg-secondary-light);
  color: var(--color-text-primary-light);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-bg-card-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-submit-btn {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.contact-info-wrapper {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contact-info-block,
.contact-benefits-block {
  background: var(--color-bg-card-light);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: var(--shadow-md);
}

.contact-info-title,
.contact-benefits-title {
  color: var(--color-text-primary-light);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

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

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

.faq-question {
  color: var(--color-text-primary-light);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 600;
}

.faq-answer {
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
}

.contact-benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  list-style: none;
}

.contact-benefit-item {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: center;
  color: var(--color-text-secondary-light);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

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

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.cookie-banner-text {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  max-width: 600px;
  line-height: 1.5;
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

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

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

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

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

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

  .cookie-banner-text {
    text-align: center;
    order: 1;
  }

  .cookie-banner-buttons {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
  }

  .cta-buttons {
    flex-direction: row;
  }

  .hero-stats {
    flex-direction: row;
    gap: var(--space-3xl);
  }
}

@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-primary-dark);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem) 0;
  color: var(--color-text-primary-dark);
  overflow: hidden;
  position: relative;
}

.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, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-about {
  flex: 1 1 280px;
  min-width: 260px;
}

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

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

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

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

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 0.875rem);
}

.footer-nav-link,
.footer-legal-link {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-muted-dark);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
}

.footer-nav-link:hover,
.footer-legal-link:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1vw, 0.75rem);
}

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

.footer-bottom {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-copyright {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted-dark);
  margin: 0;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .footer-content {
    gap: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: clamp(3rem, 5vw, 4rem);
  }

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

  .footer-nav-title,
  .footer-contact-title,
  .footer-legal-title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }

  .footer-nav-link,
  .footer-legal-link {
    font-size: 0.9375rem;
  }

  .footer-contact-item {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 5rem 0 3rem 0;
  }

  .footer-content {
    gap: 3rem;
  }

  .footer-nav-list,
  .footer-legal-list {
    gap: 0.875rem;
  }
}

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

  .footer-nav-link:hover,
  .footer-legal-link:hover {
    transform: none;
  }
}
    

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

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

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

.hero-glow-accent-2 {
  position: absolute;
  bottom: -50px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-shape-float {
  position: absolute;
  top: 30%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.hero-content-dutch-learning {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

.hero-title-dutch-learning {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  font-family: 'Poppins', sans-serif;
}

.hero-subtitle-dutch-learning {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #f1f5f9;
  font-weight: 600;
  max-width: 600px;
}

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

.hero-buttons-dutch-learning {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: #3b82f6;
  color: #0f172a;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-stats-dutch-learning {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 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(255, 255, 255, 0.1);
}

.hero-stat-item-dutch-learning {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-stat-number-dutch-learning {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.hero-stat-label-dutch-learning {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-weight: 500;
}

.posts-section-dutch-learning {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.posts-header-dutch-learning {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.posts-title-dutch-learning {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-family: 'Poppins', sans-serif;
}

.posts-subtitle-dutch-learning {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.card-dutch-learning {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-dutch-learning:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.card-image-dutch-learning {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-dutch-learning {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

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

.card-meta-dutch-learning {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.meta-badge-dutch-learning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(59, 130, 246, 0.1);
  color: #1e293b;
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-dutch-learning i {
  color: #3b82f6;
  font-size: 0.875rem;
}

.card-link-dutch-learning {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.card-link-dutch-learning:hover {
  color: #2563eb;
  gap: 0.75rem;
}

.features-section-dutch-learning {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.features-header-dutch-learning {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.features-title-dutch-learning {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-family: 'Poppins', sans-serif;
}

.features-subtitle-dutch-learning {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card-dutch-learning {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card-dutch-learning:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.12);
}

.feature-icon-dutch-learning {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.feature-title-dutch-learning {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  font-family: 'Poppins', sans-serif;
}

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

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

.learning-path-section-dutch-learning::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.learning-header-dutch-learning {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  z-index: 10;
}

.learning-title-dutch-learning {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-family: 'Poppins', sans-serif;
}

.learning-subtitle-dutch-learning {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-dutch-learning {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

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

.step-item-dutch-learning:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
}

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

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

.step-title-dutch-learning {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

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

@media (max-width: 768px) {
  .step-item-dutch-learning {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-dutch-learning {
    min-width: auto;
  }
}

.testimonials-section-dutch-learning {
  background: #f1f5f9;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.testimonials-header-dutch-learning {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.testimonials-title-dutch-learning {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-family: 'Poppins', sans-serif;
}

.testimonials-subtitle-dutch-learning {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonial-card-dutch-learning {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card-dutch-learning:hover {
  border-color: #06b6d4;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.15);
  transform: translateY(-4px);
}

.testimonial-stars-dutch-learning {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
}

.testimonial-text-dutch-learning {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author-dutch-learning {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.author-name-dutch-learning {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.author-role-dutch-learning {
  font-size: 0.8125rem;
  color: #94a3b8;
}

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

.cta-glow-1 {
  position: absolute;
  top: 50%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-2 {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.cta-content-dutch-learning {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-dutch-learning {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Poppins', sans-serif;
}

.cta-description-dutch-learning {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.7;
}

.cta-buttons-dutch-learning {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

@media (max-width: 768px) {
  .cta-buttons-dutch-learning {
    flex-direction: column;
  }

  .cta-buttons-dutch-learning .btn {
    width: 100%;
  }

  .hero-buttons-dutch-learning {
    flex-direction: column;
  }

  .hero-buttons-dutch-learning .btn {
    width: 100%;
  }

  .card-dutch-learning {
    flex: 1 1 100%;
    max-width: none;
  }

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

  .testimonial-card-dutch-learning {
    flex: 1 1 100%;
    max-width: none;
  }

  .posts-grid-dutch-learning {
    flex-direction: column;
  }

  .features-grid-dutch-learning {
    flex-direction: column;
  }

  .testimonials-grid-dutch-learning {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-stat-number-dutch-learning {
    font-size: 1.5rem;
  }

  .hero-stats-dutch-learning {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .card-dutch-learning,
  .feature-card-dutch-learning,
  .testimonial-card-dutch-learning {
    padding: 1rem;
  }

  .step-item-dutch-learning {
    padding: 1rem;
  }
}

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

.main-zakelijk-nederlands {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-zakelijk-nederlands {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-zakelijk-nederlands::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}

.hero-section-zakelijk-nederlands::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.breadcrumbs-zakelijk-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-zakelijk-nederlands {
  color: #38bdf8;
  transition: color 0.3s ease;
}

.breadcrumb-link-zakelijk-nederlands:hover {
  color: #06b6d4;
}

.breadcrumb-separator-zakelijk-nederlands {
  color: #64748b;
}

.breadcrumb-current-zakelijk-nederlands {
  color: #cbd5e1;
}

.hero-content-zakelijk-nederlands {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-title-zakelijk-nederlands {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.hero-subtitle-zakelijk-nederlands {
  color: #f1f5f9;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
}

.hero-description-zakelijk-nederlands {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  max-width: 600px;
}

.hero-buttons-zakelijk-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.hero-stats-zakelijk-nederlands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  width: 100%;
}

.hero-stat-item-zakelijk-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-stat-number-zakelijk-nederlands {
  color: #3b82f6;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
}

.hero-stat-label-zakelijk-nederlands {
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-image-zakelijk-nederlands {
  width: 100%;
  height: 400px;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 12px;
}

.hero-image-zakelijk-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

.intro-heading-zakelijk-nederlands {
  color: #1e293b;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.intro-description-zakelijk-nederlands {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-additional-zakelijk-nederlands {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
}

.intro-image-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.intro-image-zakelijk-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section-one-zakelijk-nederlands {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.content-section-one-zakelijk-nederlands::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  transform: translateY(-50%);
}

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

.content-text-one-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-one-zakelijk-nederlands {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-paragraph-one-zakelijk-nederlands {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.skills-highlights-zakelijk-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.skill-item-zakelijk-nederlands {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.skill-icon-zakelijk-nederlands {
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.skill-text-zakelijk-nederlands {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.6;
}

.content-image-one-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.content-image-one-zakelijk-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section-two-zakelijk-nederlands {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
  overflow: hidden;
}

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

.content-image-two-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.content-image-two-zakelijk-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-text-two-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-two-zakelijk-nederlands {
  color: #1e293b;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-paragraph-two-zakelijk-nederlands {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-zakelijk-nederlands {
  background: rgba(59, 130, 246, 0.08);
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin: 2rem 0;
}

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

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

.modules-section-zakelijk-nederlands {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.modules-section-zakelijk-nederlands::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.modules-header-zakelijk-nederlands {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.section-tag-zakelijk-nederlands {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.modules-subtitle-zakelijk-nederlands {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 700px;
  margin: 0 auto;
}

.modules-list-zakelijk-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.module-item-zakelijk-nederlands {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  background: rgba(59, 130, 246, 0.08);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.module-item-zakelijk-nederlands:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
}

.module-number-zakelijk-nederlands {
  color: #3b82f6;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.module-content-zakelijk-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.module-title-zakelijk-nederlands {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
}

.module-description-zakelijk-nederlands {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.6;
}

.features-section-zakelijk-nederlands {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  overflow: hidden;
}

.features-header-zakelijk-nederlands {
  text-align: center;
  margin-bottom: 3rem;
}

.features-title-zakelijk-nederlands {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-subtitle-zakelijk-nederlands {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card-zakelijk-nederlands {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card-zakelijk-nederlands:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.feature-icon-zakelijk-nederlands {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.75rem;
}

.feature-title-zakelijk-nederlands {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

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

.content-section-three-zakelijk-nederlands {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
  overflow: hidden;
}

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

.content-text-three-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-three-zakelijk-nederlands {
  color: #1e293b;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-paragraph-three-zakelijk-nederlands {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tips-list-zakelijk-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tip-item-zakelijk-nederlands {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.tip-number-zakelijk-nederlands {
  color: #3b82f6;
  font-size: 1.75rem;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 40px;
  line-height: 1;
}

.tip-content-zakelijk-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tip-title-zakelijk-nederlands {
  color: #1e293b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
}

.tip-description-zakelijk-nederlands {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.6;
}

.content-image-three-zakelijk-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.content-image-three-zakelijk-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.cta-section-zakelijk-nederlands::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  transform: translateY(-50%);
}

.cta-section-zakelijk-nederlands::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.cta-content-zakelijk-nederlands {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-heading-zakelijk-nederlands {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-description-zakelijk-nederlands {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-buttons-zakelijk-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.disclaimer-section-zakelijk-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-zakelijk-nederlands {
  background: #ffffff;
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-zakelijk-nederlands {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-zakelijk-nederlands {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
}

.related-section-zakelijk-nederlands {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.related-header-zakelijk-nederlands {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-zakelijk-nederlands {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.related-subtitle-zakelijk-nederlands {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

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

.related-card-zakelijk-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.related-card-image-zakelijk-nederlands {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-zakelijk-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-zakelijk-nederlands {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-zakelijk-nederlands {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

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

.related-card-link-zakelijk-nederlands {
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-card-link-zakelijk-nederlands:hover {
  color: #2563eb;
}

@media (max-width: 768px) {
  .hero-content-zakelijk-nederlands {
    max-width: 100%;
  }

  .hero-buttons-zakelijk-nederlands {
    flex-direction: column;
  }

  .hero-buttons-zakelijk-nederlands .btn {
    width: 100%;
  }

  .hero-stats-zakelijk-nederlands {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .hero-image-zakelijk-nederlands {
    height: 300px;
    margin-top: 2rem;
  }

  .intro-content-zakelijk-nederlands,
  .content-wrapper-one-zakelijk-nederlands,
  .content-wrapper-two-zakelijk-nederlands,
  .content-wrapper-three-zakelijk-nederlands {
    flex-direction: column;
  }

  .intro-text-zakelijk-nederlands,
  .intro-image-zakelijk-nederlands,
  .content-text-one-zakelijk-nederlands,
  .content-image-one-zakelijk-nederlands,
  .content-text-two-zakelijk-nederlands,
  .content-image-two-zakelijk-nederlands,
  .content-text-three-zakelijk-nederlands,
  .content-image-three-zakelijk-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-zakelijk-nederlands,
  .content-image-one-zakelijk-nederlands,
  .content-image-two-zakelijk-nederlands,
  .content-image-three-zakelijk-nederlands {
    height: 280px;
  }

  .features-grid-zakelijk-nederlands {
    gap: 1.25rem;
  }

  .feature-card-zakelijk-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .module-item-zakelijk-nederlands {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .related-cards-zakelijk-nederlands {
    gap: 1.25rem;
  }

  .related-card-zakelijk-Nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cta-buttons-zakelijk-nederlands {
    flex-direction: column;
  }

  .cta-buttons-zakelijk-nederlands .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stat-number-zakelijk-nederlands {
    font-size: 1.5rem;
  }

  .hero-stats-zakelijk-nederlands {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .module-item-zakelijk-nederlands {
    gap: 1rem;
    padding: 1.25rem;
  }

  .module-number-zakelijk-nederlands {
    min-width: 50px;
  }

  .feature-card-zakelijk-nederlands,
  .related-card-zakelijk-nederlands {
    padding: 1.25rem;
  }

  .tip-number-zakelijk-nederlands {
    font-size: 1.5rem;
    min-width: 35px;
  }
}

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

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

.hero-section-nederlands-beginners {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-nederlands-beginners::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-section-nederlands-beginners::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

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

.breadcrumb-link-nederlands-beginners {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-nederlands-beginners:hover {
  color: #3b82f6;
}

.breadcrumb-separator-nederlands-beginners {
  color: #64748b;
  margin: 0 0.25rem;
}

.breadcrumb-current-nederlands-beginners {
  color: #3b82f6;
  font-weight: 500;
}

.hero-content-nederlands-beginners {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-title-nederlands-beginners {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

.hero-subtitle-nederlands-beginners {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: #cbd5e1;
  font-weight: 600;
}

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

.hero-buttons-nederlands-beginners {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.hero-stats-nederlands-beginners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item-nederlands-beginners {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-stat-number-nederlands-beginners {
  color: #3b82f6;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
}

.hero-stat-label-nederlands-beginners {
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-image-nederlands-beginners {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(300px, 40vw, 600px);
  height: auto;
  opacity: 0.9;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-image-nederlands-beginners {
    display: none;
  }
}

.introduction-section-nederlands-beginners {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

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

.introduction-text-nederlands-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-nederlands-beginners {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: var(--space-lg);
}

.introduction-description-nederlands-beginners {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.introduction-highlight-nederlands-beginners {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.8;
  padding: var(--space-lg);
  background: #f1f5f9;
  border-left: 4px solid #3b82f6;
  border-radius: var(--radius-md);
}

.introduction-image-nederlands-beginners {
  flex: 1 1 50%;
  max-width: 50%;
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .introduction-content-nederlands-beginners {
    flex-direction: column;
  }

  .introduction-text-nederlands-beginners,
  .introduction-image-nederlands-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .introduction-image-nederlands-beginners {
    height: 300px;
  }
}

.fundamentals-section-nederlands-beginners {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.fundamentals-section-nederlands-beginners::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  transform: translateY(-50%);
  z-index: 0;
}

.fundamentals-header-nederlands-beginners {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.fundamentals-tag-nederlands-beginners {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.fundamentals-title-nederlands-beginners {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.fundamentals-subtitle-nederlands-beginners {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.fundamentals-steps-Nederlands-beginners {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.fundamentals-step-nederlands-beginners {
  display: flex;
  flex-direction: row;
  gap: var(--space-xl);
  align-items: flex-start;
  padding: var(--space-lg);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
}

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

.fundamentals-step-content-nederlands-beginners {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.fundamentals-step-title-nederlands-beginners {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.fundamentals-step-text-nederlands-beginners {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .fundamentals-step-nederlands-beginners {
    flex-direction: column;
    gap: var(--space-md);
  }

  .fundamentals-step-number-nederlands-beginners {
    min-width: auto;
  }
}

.features-section-nederlands-beginners {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.features-header-nederlands-beginners {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

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

.features-subtitle-nederlands-beginners {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.features-text-nederlands-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.features-description-nederlands-beginners {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.features-list-nederlands-beginners {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.feature-item-nederlands-beginners {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-icon-nederlands-beginners {
  color: #10b981;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-text-nederlands-beginners {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #334155;
  line-height: 1.6;
  margin: 0;
}

.features-image-nederlands-beginners {
  flex: 1 1 50%;
  max-width: 50%;
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .features-content-nederlands-beginners {
    flex-direction: column;
  }

  .features-text-nederlands-beginners,
  .features-image-nederlands-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .features-image-nederlands-beginners {
    height: 300px;
  }
}

.methods-section-nederlands-beginners {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.methods-header-nederlands-beginners {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

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

.methods-subtitle-nederlands-beginners {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.method-card-nederlands-beginners {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.method-card-nederlands-beginners:hover {
  border-color: #3b82f6;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.method-icon-nederlands-beginners {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  color: #3b82f6;
  font-size: 1.75rem;
}

.method-card-title-nederlands-beginners {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.method-card-text-nederlands-beginners {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #64748b;
  line-height: 1.6;
}

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

.learning-path-section-nederlands-beginners {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.learning-path-section-nederlands-beginners::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  transform: translateY(-50%);
  z-index: 0;
}

.learning-path-header-nederlands-beginners {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.learning-path-tag-nederlands-beginners {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.learning-path-title-nederlands-beginners {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-md);
}

.learning-path-subtitle-nederlands-beginners {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.learning-path-content-nederlands-beginners {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.learning-path-image-nederlands-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.learning-path-image-nederlands-beginners img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.learning-path-text-nederlands-beginners {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.path-milestone-nederlands-beginners {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid #06b6d4;
  border-radius: var(--radius-md);
}

.milestone-title-nederlands-beginners {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.milestone-description-nederlands-beginners {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .learning-path-content-nederlands-beginners {
    flex-direction: column;
  }

  .learning-path-image-nederlands-beginners,
  .learning-path-text-nederlands-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .learning-path-image-nederlands-beginners img {
    height: 300px;
  }
}

.success-section-nederlands-beginners {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

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

.success-quote-nederlands-beginners {
  flex: 1 1 50%;
  max-width: 50%;
  padding: var(--space-2xl);
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.success-quote-text-nederlands-beginners {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #0f172a;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.success-author-nederlands-beginners {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.success-author-name-nederlands-beginners {
  font-size: 0.9375rem;
  color: #64748b;
  margin: 0;
}

.success-image-nederlands-beginners {
  flex: 1 1 50%;
  max-width: 50%;
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .success-content-nederlands-beginners {
    flex-direction: column;
  }

  .success-quote-nederlands-beginners,
  .success-image-nederlands-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .success-image-nederlands-beginners {
    height: 300px;
  }
}

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

.cta-section-nederlands-beginners::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  transform: translateY(-50%);
  z-index: 0;
}

.cta-content-nederlands-beginners {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-nederlands-beginners {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-lg);
}

.cta-description-nederlands-beginners {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.cta-buttons-nederlands-beginners {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.related-section-nederlands-beginners {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.related-header-nederlands-beginners {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

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

.related-subtitle-nederlands-beginners {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-nederlands-beginners {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.related-card-nederlands-beginners:hover {
  border-color: #3b82f6;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.related-card-image-nederlands-beginners {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-nederlands-beginners img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-netherlands-beginners {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
}

.related-card-title-nederlands-beginners {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0 var(--space-lg);
  padding-top: 0;
  margin-top: var(--space-md);
}

.related-card-text-nederlands-beginners {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  padding: 0 var(--space-lg);
  margin: 0;
}

.related-card-link-nederlands-beginners {
  display: inline-block;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  padding: 0 var(--space-lg) var(--space-lg);
  transition: color 0.2s ease;
}

.related-card-link-nederlands-beginners:hover {
  color: #2563eb;
}

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

.disclaimer-section-nederlands-beginners {
  background: #f1f5f9;
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.disclaimer-content-nederlands-beginners {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-2xl);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
}

.disclaimer-title-nederlands-beginners {
  font-size: 1.25rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: var(--space-md);
}

.disclaimer-text-nederlands-beginners {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #78350f;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: clamp(var(--font-size-mobile), var(--font-size-calc), var(--font-size-desktop));
  }
}

@media (max-width: 480px) {
  .hero-buttons-nederlands-beginners {
    flex-direction: column;
  }

  .hero-buttons-nederlands-beginners .btn {
    width: 100%;
  }

  .cta-buttons-nederlands-beginners {
    flex-direction: column;
  }

  .cta-buttons-nederlands-beginners .btn {
    width: 100%;
  }
}

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

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

.breadcrumbs-geavanceerd-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-geavanceerd-nederlands {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-geavanceerd-nederlands:hover {
  color: #38bdf8;
}

.breadcrumb-separator-geavanceerd-nederlands {
  color: #64748b;
}

.breadcrumb-current-geavanceerd-nederlands {
  color: #94a3b8;
}

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

.hero-section-geavanceerd-nederlands::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-section-geavanceerd-nederlands::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-content-geavanceerd-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-title-geavanceerd-nederlands {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

.hero-subtitle-geavanceerd-nederlands {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
  color: #f1f5f9;
  font-weight: 500;
}

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

.hero-stats-geavanceerd-nederlands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item-geavanceerd-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-stat-number-geavanceerd-nederlands {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #38bdf8;
  line-height: 1;
}

.hero-stat-label-geavanceerd-nederlands {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-geavanceerd-nederlands {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.hero-image-element-geavanceerd-nederlands {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-stats-geavanceerd-nederlands {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.intro-section-geavanceerd-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

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

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

.intro-secondary-geavanceerd-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

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

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

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

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

  .intro-image-geavanceerd-nederlands {
    order: -1;
  }
}

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

.features-header-geavanceerd-nederlands {
  text-align: center;
  margin-bottom: 3rem;
}

.features-title-geavanceerd-nederlands {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.features-subtitle-geavanceerd-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.features-cards-geavanceerd-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.features-card-geavanceerd-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.features-card-geavanceerd-nederlands:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #38bdf8;
}

.features-card-icon-geavanceerd-nederlands {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  color: #38bdf8;
  font-size: 1.5rem;
}

.features-card-title-geavanceerd-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.features-card-text-geavanceerd-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

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

.learning-path-section-geavanceerd-nederlands {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.learning-path-section-geavanceerd-nederlands::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

.learning-path-header-geavanceerd-nederlands {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.learning-path-title-geavanceerd-nederlands {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.learning-path-subtitle-geavanceerd-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.learning-path-steps-geavanceerd-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.learning-path-step-geavanceerd-nederlands {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.learning-path-step-geavanceerd-nederlands:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
}

.learning-path-step-number-geavanceerd-nederlands {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.learning-path-step-content-geavanceerd-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.learning-path-step-text-geavanceerd-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .learning-path-step-geavanceerd-nederlands {
    flex-direction: column;
  }

  .learning-path-step-number-geavanceerd-nederlands {
    min-width: auto;
  }
}

.content-section-geavanceerd-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.content-text-geavanceerd-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-geavanceerd-nederlands {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.content-body-geavanceerd-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-body-secondary-geavanceerd-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-highlight-box-geavanceerd-nederlands {
  padding: 1.25rem;
  background: #f0f9ff;
  border-left: 4px solid #38bdf8;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-geavanceerd-nederlands {
  font-size: 0.9375rem;
  color: #0f172a;
  line-height: 1.6;
  margin: 0;
}

.content-image-geavanceerd-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .content-wrapper-geavanceerd-nederlands {
    flex-direction: column;
  }

  .content-text-geavanceerd-nederlands,
  .content-image-geavanceerd-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.speaking-section-geavanceerd-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.speaking-image-geavanceerd-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.speaking-text-geavanceerd-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.speaking-title-geavanceerd-nederlands {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

.speaking-secondary-geavanceerd-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.speaking-list-geavanceerd-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.speaking-list-item-geavanceerd-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  padding-left: 1.75rem;
  position: relative;
}

.speaking-list-item-geavanceerd-nederlands::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

@media (max-width: 768px) {
  .speaking-wrapper-geavanceerd-nederlands {
    flex-direction: column;
  }

  .speaking-image-geavanceerd-nederlands,
  .speaking-text-geavanceerd-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .speaking-image-geavanceerd-nederlands {
    order: -1;
  }
}

.disclaimer-section-geavanceerd-nederlands {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.disclaimer-content-geavanceerd-nederlands {
  padding: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  border-left: 4px solid #38bdf8;
}

.disclaimer-title-geavanceerd-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.disclaimer-text-geavanceerd-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.related-posts-section-geavanceerd-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-posts-title-geavanceerd-Nederlands {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 3rem;
}

.related-posts-cards-geavanceerd-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-posts-card-geavanceerd-nederlands {
  flex: 1 1 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-posts-card-geavanceerd-nederlands:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #38bdf8;
}

.related-posts-card-image-geavanceerd-nederlands {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.related-card-image-element-geavanceerd-nederlands {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-posts-card-content-geavanceerd-nederlands {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-geavanceerd-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-description-geavanceerd-nederlands {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-geavanceerd-nederlands {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.related-card-link-geavanceerd-nederlands:hover {
  color: #0284c7;
}

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

@media (max-width: 480px) {
  .hero-stat-number-geavanceerd-nederlands {
    font-size: 1.5rem;
  }

  .hero-stats-geavanceerd-nederlands {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .learning-path-step-geavanceerd-nederlands {
    padding: 1rem;
  }

  .disclaimer-content-geavanceerd-nederlands {
    padding: 1.25rem;
  }
}

.main-conversatie-nederlands-cultuur {
  width: 100%;
}

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

.hero-section-conversatie-nederlands-cultuur {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-conversatie-nederlands-cultuur::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}

.hero-section-conversatie-nederlands-cultuur::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-content-conversatie-nederlands-cultuur {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-title-conversatie-nederlands-cultuur {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: var(--space-lg);
  line-height: 1.15;
  font-family: var(--font-heading);
}

.hero-subtitle-conversatie-nederlands-cultuur {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #cbd5e1;
  margin-bottom: var(--space-lg);
  line-height: 1.5;
  max-width: 650px;
}

.hero-description-conversatie-nederlands-cultuur {
  color: #94a3b8;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: var(--space-2xl);
}

.breadcrumbs-conversatie-nederlands-cultuur {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-2xl);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.breadcrumb-link-conversatie-nederlands-cultuur {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-conversatie-nederlands-cultuur:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

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

.breadcrumb-current-conversatie-nederlands-cultuur {
  color: #94a3b8;
}

.hero-meta-conversatie-nederlands-cultuur {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-2xl);
}

.meta-badge-conversatie-nederlands-cultuur {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #38bdf8;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-conversatie-nederlands-cultuur i {
  color: #38bdf8;
}

.hero-stats-conversatie-nederlands-cultuur {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item-conversatie-nederlands-cultuur {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-stat-number-conversatie-nederlands-cultuur {
  color: #3b82f6;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}

.hero-stat-label-conversatie-nederlands-cultuur {
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-image-conversatie-nederlands-cultuur {
  width: 100%;
  margin-top: var(--space-2xl);
}

.hero-image-conversatie-nederlands-cultuur img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.introduction-section-conversatie-nederlands-cultuur {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.introduction-content-conversatie-nederlands-cultuur {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.introduction-text-conversatie-nederlands-cultuur {
  flex: 1 1 45%;
  min-width: 300px;
}

.introduction-image-conversatie-nederlands-cultuur {
  flex: 1 1 45%;
  min-width: 300px;
}

.introduction-title-conversatie-nederlands-cultuur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: var(--space-lg);
  font-weight: 700;
  font-family: var(--font-heading);
}

.introduction-paragraph-conversatie-nederlands-cultuur {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.introduction-image-conversatie-nederlands-cultuur img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .introduction-content-conversatie-nederlands-cultuur {
    flex-direction: column;
  }

  .introduction-text-conversatie-nederlands-cultuur,
  .introduction-image-conversatie-nederlands-cultuur {
    flex: 1 1 100%;
  }
}

.key-aspects-section-conversatie-nederlands-cultuur {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-header-conversatie-nederlands-cultuur {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-conversatie-nederlands-cultuur {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.key-aspects-title-conversatie-nederlands-cultuur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-weight: 700;
  font-family: var(--font-heading);
}

.key-aspects-subtitle-conversatie-nederlands-cultuur {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.aspects-wrapper-conversatie-nederlands-cultuur {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.aspect-card-conversatie-nederlands-cultuur {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.aspect-card-conversatie-nederlands-cultuur:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #3b82f6;
}

.aspect-icon-conversatie-nederlands-cultuur {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  color: #3b82f6;
  font-size: 1.75rem;
}

.aspect-card-title-conversatie-nederlands-cultuur {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  font-family: var(--font-heading);
}

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

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

.strategies-section-conversatie-nederlands-cultuur {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.strategies-section-conversatie-nederlands-cultuur::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  transform: translateY(-50%);
}

.strategies-content-conversatie-nederlands-cultuur {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.strategies-text-conversatie-nederlands-cultuur {
  flex: 1 1 45%;
  min-width: 300px;
}

.strategies-image-conversatie-nederlands-cultuur {
  flex: 1 1 45%;
  min-width: 300px;
}

.strategies-title-conversatie-nederlands-cultuur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: var(--space-lg);
  font-weight: 700;
  font-family: var(--font-heading);
}

.strategies-intro-conversatie-nederlands-cultuur {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.strategies-list-conversatie-nederlands-cultuur {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.strategy-item-conversatie-nederlands-cultuur {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.strategy-number-conversatie-nederlands-cultuur {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.strategy-content-conversatie-nederlands-cultuur {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.strategy-title-conversatie-nederlands-cultuur {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  font-family: var(--font-heading);
}

.strategy-text-conversatie-nederlands-cultuur {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.strategies-image-conversatie-nederlands-cultuur img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .strategies-content-conversatie-nederlands-cultuur {
    flex-direction: column;
  }

  .strategies-text-conversatie-nederlands-cultuur,
  .strategies-image-conversatie-nederlands-cultuur {
    flex: 1 1 100%;
  }

  .strategies-image-conversatie-nederlands-cultuur {
    order: -1;
  }
}

.cultural-contexts-section-conversatie-nederlands-cultuur {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.cultural-title-conversatie-nederlands-cultuur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-weight: 700;
  font-family: var(--font-heading);
}

.cultural-subtitle-conversatie-nederlands-cultuur {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.contexts-grid-conversatie-nederlands-cultuur {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.context-card-conversatie-nederlands-cultuur {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.context-card-conversatie-nederlands-cultuur:hover {
  background: #ffffff;
  border-color: #3b82f6;
  box-shadow: var(--shadow-lg);
}

.context-icon-conversatie-nederlands-cultuur {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  color: #3b82f6;
  font-size: 1.5rem;
}

.context-title-conversatie-nederlands-cultuur {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  font-family: var(--font-heading);
}

.context-text-conversatie-nederlands-cultuur {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

.resources-section-conversatie-nederlands-cultuur {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.resources-content-conversatie-nederlands-cultuur {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.resources-image-conversatie-nederlands-cultuur {
  flex: 1 1 45%;
  min-width: 300px;
}

.resources-text-conversatie-nederlands-cultuur {
  flex: 1 1 45%;
  min-width: 300px;
}

.resources-title-conversatie-nederlands-cultuur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: var(--space-lg);
  font-weight: 700;
  font-family: var(--font-heading);
}

.resources-intro-conversatie-nederlands-cultuur {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.resources-list-conversatie-nederlands-cultuur {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.resource-item-conversatie-nederlands-cultuur {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.resource-icon-conversatie-nederlands-cultuur {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  color: #3b82f6;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.resource-item-title-conversatie-nederlands-cultuur {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  font-family: var(--font-heading);
}

.resource-item-text-conversatie-nederlands-cultuur {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.resources-image-conversatie-nederlands-cultuur img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .resources-content-conversatie-nederlands-cultuur {
    flex-direction: column;
  }

  .resources-image-conversatie-nederlands-cultuur,
  .resources-text-conversatie-nederlands-cultuur {
    flex: 1 1 100%;
  }
}

.common-phrases-section-conversatie-nederlands-cultuur {
  background: #0f172a;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.common-phrases-title-conversatie-nederlands-cultuur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: var(--space-md);
  font-weight: 700;
  font-family: var(--font-heading);
}

.common-phrases-subtitle-conversatie-nederlands-cultuur {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.phrases-grid-conversatie-nederlands-cultuur {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.phrase-card-conversatie-nederlands-cultuur {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.phrase-category-conversatie-nederlands-cultuur {
  font-size: 1.125rem;
  font-weight: 600;
  color: #38bdf8;
  font-family: var(--font-heading);
}

.phrase-list-conversatie-nederlands-cultuur {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.phrase-item-conversatie-nederlands-cultuur {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.phrase-item-conversatie-nederlands-cultuur::before {
  content: '';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 600;
}

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

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

.cta-section-conversatie-nederlands-cultuur::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  transform: translateY(-50%);
}

.cta-content-conversatie-nederlands-cultuur {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-conversatie-nederlands-cultuur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: var(--space-lg);
  font-weight: 700;
  font-family: var(--font-heading);
}

.cta-description-conversatie-nederlands-cultuur {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.cta-buttons-conversatie-nederlands-cultuur {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.btn-primary-conversatie-nederlands-cultuur,
.btn-secondary-conversatie-nederlands-cultuur {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.btn-primary-conversatie-nederlands-cultuur {
  background: #3b82f6;
  color: #0f172a;
}

.btn-primary-conversatie-nederlands-cultuur:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-secondary-conversatie-nederlands-cultuur {
  background: transparent;
  border: 2px solid #38bdf8;
  color: #38bdf8;
}

.btn-secondary-conversatie-nederlands-cultuur:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: #0ea5e9;
  color: #0ea5e9;
  transform: translateY(-2px);
}

.disclaimer-section-conversatie-nederlands-cultuur {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.disclaimer-content-conversatie-nederlands-cultuur {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #3b82f6;
  box-shadow: var(--shadow-md);
}

.disclaimer-icon-conversatie-nederlands-cultuur {
  color: #3b82f6;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-text-conversatie-nederlands-cultuur {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.disclaimer-title-conversatie-nederlands-cultuur {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  font-family: var(--font-heading);
}

.disclaimer-message-conversatie-nederlands-cultuur {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-content-conversatie-nederlands-cultuur {
    flex-direction: column;
  }
}

.related-posts-section-conversatie-nederlands-cultuur {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.related-title-conversatie-nederlands-cultuur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-weight: 700;
  font-family: var(--font-heading);
}

.related-subtitle-conversatie-nederlands-cultuur {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.related-posts-grid-conversatie-nederlands-cultuur {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.related-post-card-conversatie-nederlands-cultuur {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-post-card-conversatie-nederlands-cultuur:hover {
  border-color: #3b82f6;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.related-post-image-conversatie-nederlands-cultuur {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-post-image-conversatie-nederlands-cultuur img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-post-card-conversatie-nederlands-cultuur:hover .related-post-image-conversatie-nederlands-cultuur img {
  transform: scale(1.05);
}

.related-post-content-conversatie-nederlands-cultuur {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: clamp(1.25rem, 2vw, 1.5rem);
}

.related-post-title-conversatie-nederlands-cultuur {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.related-post-text-conversatie-nederlands-cultuur {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.related-post-link-conversatie-nederlands-cultuur {
  color: #3b82f6;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: var(--space-sm);
}

.related-post-link-conversatie-nederlands-cultuur:hover {
  color: #2563eb;
  text-decoration: underline;
}

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

@media (min-width: 768px) {
  .hero-section-conversatie-nederlands-cultuur {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .introduction-section-conversatie-nederlands-cultuur,
  .key-aspects-section-conversatie-nederlands-cultuur,
  .strategies-section-conversatie-nederlands-cultuur,
  .cultural-contexts-section-conversatie-nederlands-cultuur,
  .resources-section-conversatie-nederlands-cultuur,
  .common-phrases-section-conversatie-nederlands-cultuur,
  .cta-section-conversatie-nederlands-cultuur,
  .related-posts-section-conversatie-nederlands-cultuur {
    padding: clamp(5rem, 8vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .introduction-content-conversatie-nederlands-cultuur,
  .strategies-content-conversatie-nederlands-cultuur,
  .resources-content-conversatie-nederlands-cultuur {
    flex-direction: row;
  }

  .introduction-text-conversatie-nederlands-cultuur,
  .introduction-image-conversatie-nederlands-cultuur,
  .strategies-text-conversatie-nederlands-cultuur,
  .strategies-image-conversatie-nederlands-cultuur,
  .resources-image-conversatie-nederlands-cultuur,
  .resources-text-conversatie-nederlands-cultuur {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.main-uitspraak-luisteren-nederlands {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-primary-light);
}

.main-uitspraak-luisteren-nederlands section,
.main-uitspraak-luisteren-nederlands [class*="-section-uitspraak-luisteren-nederlands"] {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-section-uitspraak-luisteren-nederlands::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-section-uitspraak-luisteren-nederlands::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.breadcrumbs-uitspraak-luisteren-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
}

.breadcrumb-link-uitspraak-luisteren-nederlands {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-uitspraak-luisteren-nederlands:hover {
  color: var(--color-primary);
}

.breadcrumb-separator-uitspraak-luisteren-nederlands {
  color: var(--color-text-muted-dark);
}

.breadcrumb-current-uitspraak-luisteren-nederlands {
  color: var(--color-text-secondary-dark);
}

.hero-content-uitspraak-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.hero-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.15;
  word-wrap: break-word;
}

.hero-subtitle-uitspraak-luisteren-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-secondary-dark);
  max-width: 600px;
}

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

.hero-stats-uitspraak-luisteren-nederlands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item-uitspraak-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-stat-number-uitspraak-luisteren-nederlands {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}

.hero-stat-label-uitspraak-luisteren-nederlands {
  color: var(--color-text-secondary-dark);
  font-size: 0.875rem;
  font-weight: 500;
}

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

.hero-featured-image-uitspraak-luisteren-nederlands {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.introduction-section-uitspraak-luisteren-nederlands {
  background: var(--color-bg-primary-light);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

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

.introduction-text-uitspraak-luisteren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.introduction-paragraph-uitspraak-luisteren-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.introduction-image-uitspraak-luisteren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-uitspraak-luisteren-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .introduction-content-uitspraak-luisteren-nederlands {
    flex-direction: column;
  }

  .introduction-text-uitspraak-luisteren-nederlands,
  .introduction-image-uitspraak-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

.fundamentals-section-uitspraak-luisteren-nederlands {
  background: var(--color-bg-primary-dark);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.fundamentals-section-uitspraak-luisteren-nederlands::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.section-header-uitspraak-luisteren-nederlands {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  z-index: 1;
}

.section-tag-uitspraak-luisteren-nederlands {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.fundamentals-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.fundamentals-subtitle-uitspraak-luisteren-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  max-width: 600px;
  margin: 0 auto;
}

.fundamentals-content-uitspraak-luisteren-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.fundamentals-text-uitspraak-luisteren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-intro-uitspraak-luisteren-nederlands {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.fundamentals-list-uitspraak-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.fundamentals-item-uitspraak-luisteren-nederlands {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
}

.fundamentals-item-icon-uitspraak-luisteren-nederlands {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.fundamentals-item-content-uitspraak-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.fundamentals-item-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
}

.fundamentals-item-text-uitspraak-luisteren-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

.fundamentals-image-uitspraak-luisteren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-img-uitspraak-luisteren-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .fundamentals-content-uitspraak-luisteren-nederlands {
    flex-direction: column;
  }

  .fundamentals-text-uitspraak-luisteren-nederlands,
  .fundamentals-image-uitspraak-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

.methods-section-uitspraak-luisteren-nederlands {
  background: var(--color-bg-secondary-light);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.methods-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.methods-subtitle-uitspraak-luisteren-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary-light);
  max-width: 600px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.methods-steps-uitspraak-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}

.methods-step-uitspraak-luisteren-nederlands {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-bg-primary-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.methods-step-number-uitspraak-luisteren-nederlands {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.methods-step-content-uitspraak-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.methods-step-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
}

.methods-step-text-uitspraak-luisteren-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .methods-step-uitspraak-luisteren-nederlands {
    flex-direction: column;
  }

  .methods-step-number-uitspraak-luisteren-nederlands {
    min-width: auto;
  }
}

.practice-section-uitspraak-luisteren-nederlands {
  background: var(--color-bg-primary-dark);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

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

.practice-image-uitspraak-luisteren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-uitspraak-luisteren-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.practice-text-uitspraak-luisteren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.practice-intro-uitspraak-luisteren-nederlands {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.practice-quote-uitspraak-luisteren-nederlands {
  padding: var(--space-lg) var(--space-lg) var(--space-lg) var(--space-xl);
  border-left: 4px solid var(--color-secondary);
  background: rgba(6, 182, 212, 0.08);
  margin: var(--space-2xl) 0;
  border-radius: var(--radius-md);
}

.practice-quote-text-uitspraak-luisteren-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-style: italic;
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.practice-quote-cite-uitspraak-luisteren-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-muted-dark);
  font-style: normal;
}

.practice-routine-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin: var(--space-lg) 0 var(--space-md);
}

.practice-routine-list-uitspraak-luisteren-nederlands {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.practice-routine-item-uitspraak-luisteren-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  padding-left: var(--space-lg);
  position: relative;
}

.practice-routine-item-uitspraak-luisteren-nederlands::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .practice-content-uitspraak-luisteren-nederlands {
    flex-direction: column;
  }

  .practice-image-uitspraak-luisteren-nederlands,
  .practice-text-uitspraak-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

.resources-section-uitspraak-luisteren-nederlands {
  background: var(--color-bg-primary-light);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.resources-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.resources-subtitle-uitspraak-luisteren-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary-light);
  max-width: 600px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}

.resources-grid-uitspraak-luisteren-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: var(--space-3xl);
}

.resource-card-uitspraak-luisteren-nederlands {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-2xl);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.resource-card-uitspraak-luisteren-nederlands:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.resource-icon-uitspraak-luisteren-nederlands {
  font-size: 2.5rem;
  line-height: 1;
}

.resource-card-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
}

.resource-card-text-uitspraak-luisteren-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0;
}

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

.advanced-section-uitspraak-luisteren-nederlands {
  background: var(--color-bg-secondary-light);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

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

.advanced-text-uitspraak-luisteren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.advanced-intro-uitspraak-luisteren-nederlands {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.advanced-highlights-uitspraak-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.advanced-highlight-uitspraak-luisteren-nederlands {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
}

.advanced-highlight-icon-uitspraak-luisteren-nederlands {
  color: var(--color-success);
  font-weight: bold;
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.advanced-highlight-text-uitspraak-luisteren-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0;
}

.advanced-image-uitspraak-luisteren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-img-uitspraak-luisteren-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .advanced-content-uitspraak-luisteren-nederlands {
    flex-direction: column;
  }

  .advanced-text-uitspraak-luisteren-nederlands,
  .advanced-image-uitspraak-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-uitspraak-luisteren-nederlands {
  background: var(--color-bg-primary-dark);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.conclusion-section-uitspraak-luisteren-nederlands::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  transform: translateY(-50%);
  pointer-events: none;
}

.conclusion-content-uitspraak-luisteren-nederlands {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.conclusion-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.conclusion-text-uitspraak-luisteren-nederlands {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.conclusion-highlights-uitspraak-luisteren-nederlands {
  background: rgba(59, 130, 246, 0.08);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin: var(--space-2xl) 0;
}

.conclusion-highlight-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-lg);
}

.conclusion-highlight-list-uitspraak-luisteren-nederlands {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.conclusion-highlight-item-uitspraak-luisteren-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  padding-left: var(--space-lg);
  position: relative;
}

.conclusion-highlight-item-uitspraak-luisteren-nederlands::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.conclusion-cta-uitspraak-luisteren-nederlands {
  text-align: center;
  margin-top: var(--space-2xl);
}

.cta-button-uitspraak-luisteren-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #0f172a;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-uitspraak-luisteren-nederlands:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.related-section-uitspraak-luisteren-nederlands {
  background: var(--color-bg-primary-light);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.related-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
}

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

.related-card-uitspraak-luisteren-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(59, 130, 246, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-uitspraak-luisteren-nederlands:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.related-card-image-uitspraak-luisteren-nederlands {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-uitspraak-luisteren-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-uitspraak-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
}

.related-card-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  line-height: 1.3;
}

.related-card-text-uitspraak-luisteren-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  margin: 0;
}

.related-card-link-uitspraak-luisteren-nederlands {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-card-link-uitspraak-luisteren-nederlands:hover {
  color: var(--color-primary-hover);
}

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

.disclaimer-section-uitspraak-luisteren-nederlands {
  background: var(--color-bg-secondary-light);
  padding: clamp(3rem, 6vw, 4rem) 0;
}

.disclaimer-content-uitspraak-luisteren-nederlands {
  background: #eff6ff;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-title-uitspraak-luisteren-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
}

.disclaimer-text-uitspraak-luisteren-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-stats-uitspraak-luisteren-nederlands {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .methods-step-uitspraak-luisteren-nederlands {
    padding: var(--space-md);
    flex-direction: column;
  }

  .methods-step-number-uitspraak-luisteren-nederlands {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  }
}

@media (max-width: 480px) {
  .hero-stats-uitspraak-luisteren-nederlands {
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }

  .hero-stat-number-uitspraak-luisteren-Nederlands {
    font-size: 1.5rem;
  }

  .related-card-image-uitspraak-luisteren-nederlands {
    height: 150px;
  }
}

:root {
    --color-bg-primary-dark: #0f172a;
    --color-bg-primary-light: #ffffff;
    --color-bg-secondary-light: #f8fafc;
    --color-bg-tertiary-light: #f1f5f9;
    --color-bg-card-light: #ffffff;
    --color-text-primary-light: #1e293b;
    --color-text-secondary-light: #475569;
    --color-text-muted-light: #64748b;
    --color-primary: #0d9488;
    --color-primary-hover: #059669;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --radius-md: 8px;
    --radius-lg: 12px;
  }

  .taalvlot-learning-about {
    width: 100%;
    font-family: var(--font-primary);
    color: var(--color-text-primary-light);
  }

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

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

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

  .hero-journey-header-about {
    max-width: 800px;
  }

  .hero-journey-title-about {
    font-size: clamp(2.25rem, 6vw + 0.5rem, 3.75rem);
    font-weight: 800;
    color: var(--color-text-primary-light);
    line-height: 1.15;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-journey-subtitle-about {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-text-secondary-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-stats-row-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3.5rem);
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--color-bg-tertiary-light);
  }

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

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

  .hero-journey-image-about {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }

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

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

  .section-header-about {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(13, 148, 136, 0.1);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .foundation-title-about {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary-light);
    line-height: 1.25;
    margin-bottom: 1.5rem;
  }

  .foundation-text-about {
    font-size: clamp(0.9375rem, 1vw, 1.125rem);
    color: var(--color-text-secondary-light);
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 1.5rem;
  }

  .foundation-highlight-about {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: var(--color-bg-card-light);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
  }

  .foundation-highlight-text-about {
    font-size: clamp(0.9375rem, 1vw, 1.0625rem);
    color: var(--color-text-primary-light);
    line-height: 1.7;
    font-style: italic;
  }

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

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

  .methodology-header-about {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .methodology-title-about {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary-light);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .methodology-subtitle-about {
    font-size: clamp(0.9375rem, 1vw, 1.125rem);
    color: var(--color-text-muted-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
  }

  .steps-container-about {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .step-item-about {
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-secondary-light);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .step-item-about:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

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

  .step-content-about {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .step-title-about {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: var(--color-text-primary-light);
  }

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

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

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

  .approach-intro-about {
    max-width: 750px;
  }

  .approach-title-about {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary-light);
    line-height: 1.25;
    margin-bottom: 1.5rem;
  }

  .approach-text-about {
    font-size: clamp(0.9375rem, 1vw, 1.125rem);
    color: var(--color-text-secondary-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

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

  .feature-card-about {
    flex: 1 1 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-card-light);
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-card-about:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }

  .feature-icon-about {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-size: 1.75rem;
  }

  .feature-title-about {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary-light);
  }

  .feature-text-about {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-muted-light);
    line-height: 1.6;
  }

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

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

  .commitment-header-about {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .commitment-title-about {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary-light);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .commitment-subtitle-about {
    font-size: clamp(0.9375rem, 1vw, 1.125rem);
    color: var(--color-text-secondary-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
  }

  .commitment-image-about {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
  }

  .featured-quote-about {
    padding: clamp(2rem, 4vw, 3rem);
    border-left: 4px solid var(--color-primary);
    background: var(--color-bg-primary-light);
    margin: clamp(2rem, 4vw, 3rem) 0;
    border-radius: var(--radius-md);
  }

  .quote-text-about {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-text-primary-light);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.6;
  }

  .quote-author-about {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-muted-light);
    font-style: normal;
    font-weight: 500;
  }

  .disclaimer-section-about {
    background: var(--color-bg-tertiary-light);
    padding: clamp(3rem, 8vw, 5rem) 0;
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
  }

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

  .disclaimer-header-about {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .disclaimer-icon-about {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  .disclaimer-title-about {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: var(--color-text-primary-light);
  }

  .disclaimer-text-about {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-secondary-light);
    line-height: 1.7;
    max-width: 800px;
  }

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

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

    .step-item-about {
      flex-direction: column;
      gap: 1rem;
    }

    .step-number-about {
      font-size: 2rem;
    }
  }

  @media (min-width: 768px) {
    .hero-journey-content-about {
      gap: 2.5rem;
    }

    .commitment-content-about {
      display: flex;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 3rem;
    }

    .commitment-text-block-about {
      order: 2;
    }

    .commitment-image-block-about {
      order: 1;
    }
  }

  @media (min-width: 1024px) {
    .features-cards-about {
      gap: 2rem;
    }

    .feature-card-about {
      flex: 1 1 300px;
      max-width: 400px;
    }
  }

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

.legal-hub {
  font-family: var(--font-primary);
  background: var(--color-bg-primary-light);
  color: var(--color-text-primary-light);
}

.legal-hub section {
  width: 100%;
  overflow: hidden;
}

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

.legal-hub-header {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 6vw, 4rem) 0;
  background: var(--color-bg-primary-light);
}

.legal-hub-header-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-header 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-primary-light);
}

.legal-hub-header .updated {
  font-size: 0.9375rem;
  color: var(--color-text-muted-light);
  font-weight: 500;
}

.legal-hub-content {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary-light);
}

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

.legal-hub-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary-light);
  margin-bottom: 0.5rem;
}

.legal-hub-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1.5rem;
  list-style: disc;
}

.legal-hub-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary-light);
}

.legal-hub-contact {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary-light);
}

.legal-hub-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-hub-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary-light);
}

.legal-hub-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary-light);
}

.legal-hub-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-hub-contact-item strong {
  font-weight: 600;
  color: var(--color-text-primary-light);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.legal-hub-contact-item p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary-light);
  margin: 0;
}

@media (min-width: 768px) {
  .legal-hub-header {
    padding: clamp(4rem, 10vw, 6rem) 0 clamp(3rem, 8vw, 5rem) 0;
  }

  .legal-hub-content {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .legal-hub-contact {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .legal-hub-header {
    padding: 6rem 0 5rem 0;
  }

  .legal-hub-content {
    padding: 6rem 0;
  }

  .legal-hub-contact {
    padding: 6rem 0;
  }
}

.thank-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary-dark);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon {
  font-size: clamp(4rem, 12vw, 6rem);
  color: var(--color-success);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-section h1 {
  color: var(--color-text-primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  width: 100%;
  max-width: 500px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.thank-next-steps h2 {
  color: var(--color-text-primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
}

.steps-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(2rem, 5vw, 2.5rem);
  width: clamp(2rem, 5vw, 2.5rem);
  height: clamp(2rem, 5vw, 2.5rem);
  background: var(--color-primary);
  color: #000000;
  border-radius: 50%;
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw, 1rem);
  flex-shrink: 0;
}

.step-text {
  color: var(--color-text-secondary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: var(--color-primary);
  color: #000000;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-primary);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.btn-primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #000000;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .thank-next-steps {
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }

  .steps-list li {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(6rem, 10vw, 8rem) 0;
  }

  .thank-content {
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3.5rem;
  }
}

.main.error-page {
  width: 100%;
}

.error-section {
  background: var(--color-bg-primary-dark);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.error-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 20vw, 140px);
  height: clamp(80px, 20vw, 140px);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(59, 130, 246, 0.2);
  animation: float 3s ease-in-out infinite;
}

.error-illustration i {
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  color: var(--color-primary);
}

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

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin: 0;
  line-height: 1.2;
}

.error-message {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  width: 100%;
  max-width: 500px;
}

.suggestions-title {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin: 0 0 1rem 0;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.suggestions-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list li::before {
  content: "";
  color: var(--color-success);
  font-weight: bold;
  font-size: 1.1em;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

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

.btn-large {
  font-size: clamp(1rem, 2vw, 1.125rem);
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(2.5rem, 5vw, 4rem);
}

.error-footer-text {
  margin-top: clamp(1rem, 3vw, 2rem);
  padding-top: clamp(1rem, 3vw, 2rem);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  max-width: 500px;
}

.error-footer-text p {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-muted-dark);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .error-illustration {
    animation: float 3.5s ease-in-out infinite;
  }

  .error-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .error-suggestions {
    padding: clamp(1.5rem, 3vw, 2.5rem);
  }

  .suggestions-list {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .error-section {
    min-height: 100vh;
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .error-code {
    letter-spacing: -3px;
  }

  .error-content {
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }

  .btn-primary:hover {
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.4);
  }

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

@media (min-width: 1440px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-content {
    gap: 3.5rem;
  }

  .error-suggestions {
    padding: 2.5rem;
  }
}

@media print {
  .error-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .error-illustration {
    display: none;
  }

  .btn {
    display: none;
  }
}