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

:root {
  
  
  
  
  --color-bg-primary: #022c22;
  --color-bg-secondary: #064e3b;
  --color-bg-tertiary: #065f46;
  --color-bg-light: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-card-dark: rgba(16, 185, 129, 0.08);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #6ee7b7;
  --color-text-light: #022c22;
  --color-text-light-secondary: #0f766e;
  --color-text-light-muted: #5a6c7d;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-light: #a7f3d0;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

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

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

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

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

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

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

.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.card-dark {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.card-dark:hover {
  background: rgba(16, 185, 129, 0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-light {
  background: var(--color-bg-card-light);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
}

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

.grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.flex {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

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

.flex-between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.icon-lg {
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
}

.icon-xl {
  width: 4rem;
  height: 4rem;
  font-size: 2.5rem;
}

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

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

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

.hero-text-hero {
  color: var(--color-text-dark);
}

.hero-title-hero {
  color: #ffffff;
  margin-bottom: var(--space-lg);
}

.hero-subtitle-hero {
  color: var(--color-accent-light);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-description-hero {
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-xl);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

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

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.3);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

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

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

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

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

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: var(--space-2xl);
}

.feature-card {
  background: var(--color-bg-card-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.feature-title {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
}

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

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

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

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

.about-image {
  order: -1;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.3);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-text {
  color: var(--color-text-dark);
}

.about-title-about {
  color: #ffffff;
  margin-bottom: var(--space-lg);
}

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

.about-list {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.about-list li {
  color: var(--color-accent-light);
  margin-bottom: var(--space-md);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

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

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

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

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

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

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

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

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

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 0.2rem;
}

.testimonial-text {
  color: var(--color-text-light-muted);
  line-height: 1.7;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-style: italic;
}

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

.testimonial-name {
  color: var(--color-text-light);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
}

.testimonial-role {
  color: var(--color-text-light-muted);
  font-size: clamp(0.8125rem, 0.9vw + 0.4rem, 0.875rem);
}

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

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

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

.cta-title-cta {
  color: #ffffff;
  margin-bottom: var(--space-lg);
}

.cta-description-cta {
  color: var(--color-accent-light);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.cta-button-group {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-button-group {
    flex-direction: column;
  }
}

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

.form-label {
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.form-input,
.form-textarea {
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

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

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

.form-submit-btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

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

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

@media (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
  
  .flex-between {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@supports (scroll-behavior: smooth) {
  html {
    scroll-behavior: smooth;
  }
}
.header-language-bridge {
    width: 100%;
    background: var(--color-bg-primary);
    padding: clamp(0.75rem, 2vw, 1.25rem) 0;
    position: static;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

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

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

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

  .header-language-bridge-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--color-text-dark);
    letter-spacing: -0.5px;
  }

  .header-language-bridge-desktop-nav {
    display: none;
    gap: 0;
    align-items: center;
    margin: 0 auto;
  }

  .header-language-bridge-nav-link {
    padding: 0.75rem 1.25rem;
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-sm);
    position: relative;
  }

  .header-language-bridge-nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transform: translateX(-50%);
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-language-bridge-nav-link:hover {
    color: var(--color-secondary);
  }

  .header-language-bridge-nav-link:hover::after {
    width: 60%;
  }

  .header-language-bridge-cta-button {
    display: none;
    padding: 0.75rem 1.75rem;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .header-language-bridge-cta-button:active {
    transform: translateY(0);
  }

  .header-language-bridge-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--color-text-dark);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 300ms ease;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }

  .header-language-bridge-mobile-toggle:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-secondary);
  }

  .header-language-bridge-mobile-toggle:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  .header-language-bridge-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .header-language-bridge-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-language-bridge-mobile-header {
    padding: 1.5rem;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-language-bridge-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--color-text-dark);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 300ms ease;
    border-radius: var(--radius-sm);
  }

  .header-language-bridge-mobile-close:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-secondary);
  }

  .header-language-bridge-mobile-close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  .header-language-bridge-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    flex: 1;
  }

  .header-language-bridge-mobile-link {
    padding: 1rem 1.5rem;
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 300ms ease;
    border-left: 3px solid transparent;
  }

  .header-language-bridge-mobile-link:hover {
    background: rgba(16, 185, 129, 0.08);
    border-left-color: var(--color-primary);
    color: var(--color-secondary);
    padding-left: 1.75rem;
  }

  .header-language-bridge-mobile-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
  }

  .header-language-bridge-mobile-cta {
    margin: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: block;
  }

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

  .header-language-bridge-mobile-cta:active {
    transform: translateY(0);
  }

  .header-language-bridge-mobile-cta:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
  }

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

    .header-language-bridge-mobile-menu {
      display: none !important;
    }

    .header-language-bridge-desktop-nav {
      display: flex;
    }

    .header-language-bridge-cta-button {
      display: inline-block;
    }

    .header-language-bridge-nav-link {
      padding: 0.5rem 1rem;
      font-size: 0.9375rem;
    }
  }

  @media (min-width: 1024px) {
    .header-language-bridge-nav-link {
      padding: 0.75rem 1.25rem;
      font-size: 1rem;
    }

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

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

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

.hero-section {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-glow-primary {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-glow-secondary {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-shape {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 280px;
  height: 320px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-element {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 200px;
  height: 150px;
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: 12px;
  transform: rotate(-15deg);
  z-index: 2;
  pointer-events: none;
}

.hero-line-accent {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(167, 243, 208, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-title {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  color: #a7f3d0;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.hero-description {
  color: #6ee7b7;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(167, 243, 208, 0.2);
  border-bottom: 1px solid rgba(167, 243, 208, 0.2);
}

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

.hero-stat-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.hero-stat-label {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #a7f3d0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hero-image-block {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-featured-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(167, 243, 208, 0.3);
  object-fit: cover;
  max-height: 400px;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .hero-stats {
    gap: var(--space-lg);
  }
}

.progression-section {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.progression-shape-2 {
  position: absolute;
  bottom: -10%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.progression-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.progression-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.progression-tag {
  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: 500;
  margin-bottom: var(--space-md);
}

.progression-title {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.progression-subtitle {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.progression-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #3b82f6;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.progression-step:hover {
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  transform: translateX(8px);
}

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

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

.progression-step-title {
  color: #1e293b;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .progression-step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .progression-step-number {
    min-width: auto;
  }
}

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

.features-ambient-glow {
  position: absolute;
  top: 10%;
  left: -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.features-corner-accent {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

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

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

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

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

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: var(--space-xl);
}

.features-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.featured-content-section {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-glow-left {
  position: absolute;
  top: 15%;
  left: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.featured-glow-right {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.featured-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.featured-title {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.featured-subtitle {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.featured-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: var(--space-xl);
}

.featured-card {
  flex: 1 1 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.featured-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.featured-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.featured-card-title {
  color: #1e293b;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

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

.featured-card-link {
  color: #10b981;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all 300ms ease;
}

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

.featured-footer {
  text-align: center;
  margin-top: var(--space-xl);
}

.featured-view-all {
  display: inline-block;
  color: #10b981;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid #10b981;
  border-radius: var(--radius-md);
  transition: all 350ms ease;
}

.featured-view-all:hover {
  background: #10b981;
  color: #ffffff;
}

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

.methodology-section {
  background: linear-gradient(135deg, #064e3b 0%, #0f766e 100%);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.methodology-shape-accent {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(167, 243, 208, 0.06);
  border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.methodology-float-element {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 220px;
  height: 180px;
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: 15px;
  transform: rotate(12deg);
  z-index: 2;
  pointer-events: none;
}

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

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

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

.methodology-description {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

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

.methodology-point {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.methodology-point-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.methodology-point-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.methodology-point-text {
  color: #6ee7b7;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.methodology-quote-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #10b981;
  border-radius: var(--radius-md);
}

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

.methodology-quote-text {
  color: #ffffff;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.methodology-quote-author {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-style: normal;
}

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

.contact-section {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.contact-shape-left {
  position: absolute;
  top: 10%;
  left: -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-center {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.contact-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.contact-title {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.contact-subtitle {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: var(--space-xl);
  justify-content: center;
}

.contact-form-block {
  flex: 1 1 380px;
  max-width: 500px;
}

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

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  color: #1e293b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  color: #1e293b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  transition: all 300ms ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.contact-submit {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #10b981;
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  cursor: pointer;
  transition: all 350ms ease;
  font-family: var(--font-primary);
}

.contact-submit:hover {
  background: #059669;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.contact-info-block {
  flex: 1 1 380px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.contact-info-title {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
}

.contact-faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid #e5e7eb;
}

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

.contact-faq-question {
  color: #1e293b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
}

.contact-faq-answer {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.contact-info-highlight {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
}

.contact-highlight-title {
  color: #1e293b;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

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

.contact-highlight-list li {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.contact-highlight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  
  .contact-form-block,
  .contact-info-block {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.cookie-banner-text {
  color: #e2e8f0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
  max-width: 400px;
  text-align: center;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-sm);
  font-size: clamp(0.75rem, 0.9vw + 0.4rem, 0.875rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
  border: none;
  font-family: var(--font-primary);
}

.cookie-btn-accept {
  background: #10b981;
  color: #000000;
}

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

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

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

@media (max-width: 1024px) {
  .features-card {
    flex: 1 1 280px;
  }
}

@media (max-width: 768px) {
  section {
    padding-left: 0;
    padding-right: 0;
  }
  
  .contact-wrapper {
    flex-direction: column;
  }
}

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

    
    

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

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

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

.hero-gradient-field-dutch {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-light-burst-dutch {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-content-dutch-learning {
  position: relative;
  z-index: 10;
}

.hero-text-block-dutch {
  max-width: 700px;
}

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

.hero-subtitle-dutch-learning {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #a7f3d0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

.hero-description-dutch-learning {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #6ee7b7;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.8;
  max-width: 650px;
}

.hero-stats-dutch-learning {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.stat-number-dutch {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.stat-label-dutch {
  font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.95rem);
  color: #a7f3d0;
  font-weight: 500;
}

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

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

.btn-primary-dutch-learning {
  background: #10b981;
  color: #022c22;
}

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

.btn-secondary-dutch-learning {
  background: transparent;
  color: #a7f3d0;
  border-color: #a7f3d0;
}

.btn-secondary-dutch-learning:hover {
  background: #10b981;
  color: #022c22;
  border-color: #10b981;
}

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

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

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

.section-tag-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.posts-title-dutch-learning {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.2;
}

.posts-subtitle-dutch-learning {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #5a6c7d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.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: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card-dutch-learning:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-color: #10b981;
}

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

.card-title-dutch-learning {
  font-size: clamp(1.0625rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #022c22;
  line-height: 1.3;
}

.card-description-dutch-learning {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #5a6c7d;
  line-height: 1.6;
  flex-grow: 1;
}

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

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

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

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

.learning-path-glow-dutch {
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-shape-dutch {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

.learning-step-dutch {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(167, 243, 208, 0.08);
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

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

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

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

.learning-step-text-dutch {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.7;
}

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

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

.featured-quote-dutch-learning {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #10b981;
  background: #ffffff;
  margin: 0 0 clamp(2rem, 4vw, 3rem) 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quote-text-dutch {
  font-size: clamp(1.0625rem, 2vw + 0.5rem, 1.3125rem);
  font-style: italic;
  color: #022c22;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-dutch {
  font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.95rem);
  color: #5a6c7d;
  font-style: normal;
  font-weight: 500;
}

.insights-highlight-dutch {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.insights-highlight-title-dutch {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #022c22;
  margin-bottom: 1rem;
}

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

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

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

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

.benefits-title-dutch-learning {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.benefits-subtitle-dutch-learning {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.1875rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefits-grid-dutch-learning {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  position: relative;
  z-index: 10;
}

.benefit-card-dutch {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card-dutch:hover {
  background: rgba(16, 185, 129, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.benefit-icon-dutch {
  font-size: 2.5rem;
  color: #10b981;
  margin: 0 auto;
}

.benefit-card-title-dutch {
  font-size: clamp(1.0625rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.benefit-card-text-dutch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.7;
}

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

.cta-final-glow-dutch {
  position: absolute;
  top: -40%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.cta-final-shape-dutch {
  position: absolute;
  bottom: 5%;
  left: -8%;
  width: 250px;
  height: 250px;
  background: rgba(52, 211, 153, 0.07);
  border-radius: 50% 50% 50% 0;
  z-index: 1;
  pointer-events: none;
}

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

.cta-final-title-dutch {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.cta-final-description-dutch {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1875rem);
  color: #a7f3d0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.7;
}

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

.btn-primary-dutch-cta {
  background: #10b981;
  color: #022c22;
}

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

.btn-outline-dutch-cta {
  background: transparent;
  color: #a7f3d0;
  border-color: #a7f3d0;
}

.btn-outline-dutch-cta:hover {
  background: #10b981;
  color: #022c22;
  border-color: #10b981;
}

@media (max-width: 768px) {
  .benefits-grid-dutch-learning {
    flex-direction: column;
    align-items: center;
  }

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

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

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

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

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

.main-eerste-nederlandse-woorden {
  width: 100%;
}

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

.hero-section-eerste-nederlandse-woorden {
  background: linear-gradient(135deg, #042f2e 0%, #064e3b 100%);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.breadcrumbs-eerste-nederlandse-woorden {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-eerste-nederlandse-woorden {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-eerste-nederlandse-woorden:hover {
  color: #ffffff;
}

.breadcrumb-separator-eerste-nederlandse-woorden {
  color: #6ee7b7;
}

.breadcrumb-current-eerste-nederlandse-woorden {
  color: #ffffff;
}

.hero-content-eerste-nederlandse-woorden {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-eerste-nederlandse-woorden {
  color: #ffffff;
}

.hero-title-eerste-nederlandse-woorden {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.hero-subtitle-eerste-nederlandse-woorden {
  color: #a7f3d0;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
}

.hero-description-eerste-nederlandse-woorden {
  color: #6ee7b7;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-cta-group-eerste-nederlandse-woorden {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-eerste-nederlandse-woorden {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  overflow: hidden;
}

.hero-image-eerste-nederlandse-woorden img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .hero-content-eerste-nederlandse-woorden {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-cta-group-eerste-nederlandse-woorden {
    flex-direction: column;
  }
  
  .hero-cta-group-eerste-nederlandse-woorden .btn {
    width: 100%;
    text-align: center;
  }
}

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

.intro-content-eerste-nederlandse-woorden {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-eerste-nederlandse-woorden {
  color: #022c22;
}

.intro-title-eerste-nederlandse-woorden {
  color: #022c22;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.intro-description-eerste-nederlandse-woorden,
.intro-description-tweede-eerste-nederlandse-woorden {
  color: #0f766e;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-eerste-nederlandse-woorden {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  overflow: hidden;
}

.intro-image-eerste-nederlandse-woorden img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .intro-content-eerste-nederlandse-woorden {
    grid-template-columns: 1fr;
  }
}

.fundamentals-section-eerste-nederlandse-woorden {
  background: #064e3b;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.fundamentals-content-eerste-nederlandse-woorden {
  position: relative;
  z-index: 2;
}

.fundamentals-title-eerste-nederlandse-woorden {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.fundamentals-steps-eerste-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.step-block-eerste-nederlandse-woorden {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: rgba(16, 185, 129, 0.1);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

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

.step-content-eerste-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-eerste-nederlandse-woorden {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin: 0;
}

.step-text-eerste-nederlandse-woorden {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  margin: 0;
}

.fundamentals-image-eerste-nederlandse-woorden {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.fundamentals-image-eerste-nederlandse-woorden img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .step-block-eerste-nederlandse-woorden {
    flex-direction: column;
  }
  
  .step-number-eerste-nederlandse-woorden {
    text-align: center;
  }
}

.essential-section-eerste-nederlandse-woorden {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.essential-header-eerste-nederlandse-woorden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.essential-title-eerste-nederlandse-woorden {
  color: #022c22;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.essential-subtitle-eerste-nederlandse-woorden {
  color: #0f766e;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.essential-cards-eerste-nederlandse-woorden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.essential-card-eerste-nederlandse-woorden {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.card-icon-eerste-nederlandse-woorden {
  font-size: 2.5rem;
  text-align: center;
}

.card-title-eerste-nederlandse-woorden {
  color: #022c22;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin: 0;
}

.card-phrases-eerste-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phrase-eerste-nederlandse-woorden {
  color: #0f766e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.phrase-nederlandse-woorden {
  color: #0f766e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

.practice-section-eerste-nederlandse-woorden {
  background: #065f46;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.practice-content-eerste-nederlandse-woorden {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.practice-text-eerste-nederlandse-woorden {
  color: #ffffff;
}

.practice-title-eerste-nederlandse-woorden {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.practice-description-eerste-nederlandse-woorden {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.practice-tips-eerste-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tip-item-eerste-nederlandse-woorden {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(16, 185, 129, 0.15);
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.tip-title-eerste-nederlandse-woorden {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tip-text-eerste-nederlandse-woorden {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

.practice-image-eerste-nederlandse-woorden {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  overflow: hidden;
}

.practice-image-eerste-nederlandse-woorden img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .practice-content-eerste-nederlandse-woorden {
    grid-template-columns: 1fr;
  }
}

.confidence-section-eerste-nederlandse-woorden {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.confidence-header-eerste-nederlandse-woorden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.confidence-title-eerste-nederlandse-woorden {
  color: #022c22;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.confidence-subtitle-eerste-nederlandse-woorden {
  color: #0f766e;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.confidence-grid-eerste-nederlandse-woorden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.confidence-card-eerste-nederlandse-woorden {
  flex: 1 1 260px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.confidence-number-eerste-nederlandse-woorden {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.confidence-card-title-eerste-nederlandse-woorden {
  color: #022c22;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin: 0;
}

.confidence-card-text-eerste-nederlandse-woorden {
  color: #0f766e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

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

.conclusion-section-eerste-nederlandse-woorden {
  background: #042f2e;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-eerste-nederlandse-woorden {
  max-width: 800px;
  margin: 0 auto;
}

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

.conclusion-text-eerste-nederlandse-woorden,
.conclusion-text-tweede-eerste-nederlandse-woorden {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: justify;
}

.conclusion-cta-eerste-nederlandse-woorden {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

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

.related-header-eerste-nederlandse-woorden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-eerste-nederlandse-woorden {
  color: #022c22;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.related-subtitle-eerste-nederlandse-woorden {
  color: #0f766e;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-eerste-nederlandse-woorden {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-eerste-nederlandse-woorden:hover {
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
  transform: translateY(-6px);
}

.related-image-eerste-nederlandse-woorden {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-eerste-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

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

.related-card-text-eerste-nederlandse-woorden {
  color: #0f766e;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

.related-card-link-eerste-nederlandse-woorden:hover {
  color: #059669;
}

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

.disclaimer-section-eerste-nederlandse-woorden {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 2px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-eerste-nederlandse-woorden {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-eerste-nederlandse-woorden {
  color: #022c22;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-text-eerste-nederlandse-woorden {
  color: #475569;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.8;
  margin: 0;
}

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

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

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

.btn-outline {
  background: transparent;
  color: #10b981;
  border-color: #10b981;
}

.btn-outline:hover {
  background: #10b981;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-section-eerste-nederlandse-woorden {
    padding: clamp(3rem, 6vw, 6rem) 0;
  }

  .intro-section-eerste-nederlandse-woorden,
  .fundamentals-section-eerste-nederlandse-woorden,
  .practice-section-eerste-nederlandse-woorden,
  .confidence-section-eerste-nederlandse-woorden,
  .conclusion-section-eerste-nederlandse-woorden,
  .related-section-eerste-nederlandse-woorden {
    padding: clamp(3rem, 6vw, 6rem) 0;
  }
}

.main-nederlandse-grammatica-gids {
  width: 100%;
  background: #ffffff;
  color: #1a1a1a;
}

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

.hero-section-nederlandse-grammatica-gids {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.breadcrumbs-nederlandse-grammatica-gids {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  position: relative;
  z-index: 2;
}

.breadcrumbs-nederlandse-grammatica-gids a {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-nederlandse-grammatica-gids a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumb-separator-nederlandse-grammatica-gids {
  color: rgba(167, 243, 208, 0.5);
}

.breadcrumb-current-nederlandse-grammatica-gids {
  color: #ffffff;
  font-weight: 500;
}

.hero-content-nederlandse-grammatica-gids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-block-nederlandse-grammatica-gids {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-nederlandse-grammatica-gids {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-subtitle-nederlandse-grammatica-gids {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #a7f3d0;
  font-weight: 600;
  line-height: 1.3;
}

.hero-description-nederlandse-grammatica-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #6ee7b7;
  line-height: 1.7;
  max-width: 600px;
}

.hero-stats-nederlandse-grammatica-gids {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.stat-item-nederlandse-grammatica-gids {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-nederlandse-grammatica-gids {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.stat-label-nederlandse-grammatica-gids {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #a7f3d0;
  font-weight: 500;
}

.hero-image-block-nederlandse-grammatica-gids {
  width: 100%;
  height: auto;
}

.hero-featured-image-nederlandse-grammatica-gids {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
  object-fit: cover;
}

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

  .hero-stats-nederlandse-grammatica-gids {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

.intro-section-nederlandse-grammatica-gids {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.intro-text-column-nederlandse-grammatica-gids {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-column-nederlandse-grammatica-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlandse-grammatica-gids {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
}

.intro-text-nederlandse-grammatica-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
}

.intro-section-image-nederlandse-grammatica-gids {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-wrapper-nederlandse-grammatica-gids {
    flex-direction: column;
  }

  .intro-text-column-nederlandse-grammatica-gids,
  .intro-image-column-nederlandse-grammatica-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fundamentals-section-nederlandse-grammatica-gids {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.section-header-nederlandse-grammatica-gids {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-nederlandse-grammatica-gids {
  display: inline-block;
  padding: 0.375rem clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.fundamentals-title-nederlandse-grammatica-gids {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.fundamentals-subtitle-nederlandse-grammatica-gids {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #5a6c7d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.fundamentals-card-nederlandse-grammatica-gids:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #10b981;
}

.fundamentals-card-number-nederlandse-grammatica-gids {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.fundamentals-card-content-nederlandse-grammatica-gids {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fundamentals-card-title-nederlandse-grammatica-gids {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #022c22;
}

.fundamentals-card-text-nederlandse-grammatica-gids {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.structure-section-nederlandse-grammatica-gids {
  background: #065f46;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.structure-wrapper-nederlandse-grammatica-gids {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.structure-text-column-nederlandse-grammatica-gids {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.structure-image-column-nederlandse-grammatica-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-nederlandse-grammatica-gids {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.structure-description-nederlandse-grammatica-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.7;
}

.structure-example-box-nederlandse-grammatica-gids {
  background: rgba(16, 185, 129, 0.15);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.structure-example-label-nederlandse-grammatica-gids {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.structure-example-text-nederlandse-grammatica-gids {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.structure-example-breakdown-nederlandse-grammatica-gids {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 0.9375rem);
  color: #a7f3d0;
  line-height: 1.7;
}

.structure-section-image-nederlandse-grammatica-gids {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .structure-wrapper-nederlandse-grammatica-gids {
    flex-direction: column;
  }

  .structure-text-column-nederlandse-grammatica-gids,
  .structure-image-column-nederlandse-grammatica-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conjugation-section-nederlandse-grammatica-gids {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conjugation-wrapper-nederlandse-grammatica-gids {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conjugation-image-column-nederlandse-grammatica-gids {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.conjugation-text-column-nederlandse-grammatica-gids {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.conjugation-title-nederlandse-grammatica-gids {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
}

.conjugation-description-nederlandse-grammatica-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
}

.conjugation-table-box-nederlandse-grammatica-gids {
  background: #f3f4f6;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.conjugation-table-label-nederlandse-grammatica-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #022c22;
  margin-bottom: 1rem;
  display: block;
}

.conjugation-list-nederlandse-grammatica-gids {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.conjugation-list-item-nederlandse-grammatica-gids {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #374151;
  padding-left: 1.5rem;
  position: relative;
}

.conjugation-list-item-nederlandse-grammatica-gids::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.conjugation-note-nederlandse-grammatica-gids {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
  font-style: italic;
}

.conjugation-section-image-nederlandse-grammatica-gids {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .conjugation-wrapper-nederlandse-grammatica-gids {
    flex-direction: column;
  }

  .conjugation-image-column-nederlandse-grammatica-gids,
  .conjugation-text-column-nederlandse-grammatica-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conjugation-image-column-nederlandse-grammatica-gids {
    order: 0;
  }
}

.tenses-section-nederlandse-grammatica-gids {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.tenses-title-nederlandse-grammatica-gids {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
}

.tenses-cards-wrapper-nederlandse-grammatica-gids {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

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

.tenses-card-nederlandse-grammatica-gids:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.tenses-card-title-nederlandse-grammatica-gids {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #022c22;
}

.tenses-card-description-nederlandse-grammatica-gids {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.tenses-card-example-nederlandse-grammatica-gids {
  font-size: clamp(0.8125rem, 0.9vw + 0.4rem, 0.9375rem);
  color: #374151;
  padding: 0.75rem;
  background: #f9fafb;
  border-left: 3px solid #10b981;
  border-radius: 4px;
  font-style: italic;
}

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

.practice-section-nederlandse-grammatica-gids {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.practice-text-block-nederlandse-grammatica-gids {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.practice-image-block-nederlandse-grammatica-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.practice-highlight-box-nederlandse-grammatica-gids {
  background: rgba(16, 185, 129, 0.15);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.practice-highlight-text-nederlandse-grammatica-gids {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #ffffff;
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
}

.practice-tips-list-nederlandse-grammatica-gids {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.practice-tip-item-nederlandse-grammatica-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.7;
  padding-left: 1.75rem;
  position: relative;
}

.practice-tip-item-nederlandse-grammatica-gids::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
}

.practice-section-image-nederlandse-grammatica-gids {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .practice-content-wrapper-nederlandse-grammatica-gids {
    flex-direction: column;
  }

  .practice-text-block-nederlandse-grammatica-gids,
  .practice-image-block-nederlandse-grammatica-gids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.summary-section-nederlandse-grammatica-gids {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.summary-content-nederlandse-grammatica-gids {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.summary-title-nederlandse-grammatica-gids {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
  text-align: center;
}

.summary-text-nederlandse-grammatica-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.8;
}

.summary-cta-box-nederlandse-grammatica-gids {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.summary-cta-title-nederlandse-grammatica-gids {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.summary-cta-text-nederlandse-grammatica-gids {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.6;
}

.summary-cta-button-nederlandse-grammatica-gids {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.summary-cta-button-nederlandse-grammatica-gids:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-nederlandse-grammatica-gids {
  background: #f9fafb;
  padding: clamp(2rem, 4vw, 3rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-nederlandse-grammatica-gids {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.disclaimer-title-nederlandse-grammatica-gids {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-nederlandse-grammatica-gids {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

.related-section-nederlandse-grammatica-gids {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-nederlandse-grammatica-gids {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-nederlandse-grammatica-gids {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.related-subtitle-nederlandse-grammatica-gids {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #5a6c7d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-wrapper-nederlandse-grammatica-gids {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.related-card-nederlandse-grammatica-gids:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #10b981;
}

.related-card-title-nederlandse-grammatica-gids {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #022c22;
  line-height: 1.3;
}

.related-card-description-nederlandse-grammatica-gids {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

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

.related-card-link-nederlandse-grammatica-gids:hover {
  color: #059669;
  transform: translateX(4px);
}

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

@media (min-width: 768px) {
  .hero-section-nederlandse-grammatica-gids {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .intro-section-nederlandse-grammatica-gids {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .fundamentals-section-nederlandse-grammatica-gids {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .structure-section-nederlandse-grammatica-gids {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .conjugation-section-nederlandse-grammatica-gids {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .tenses-section-nederlandse-grammatica-gids {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .practice-section-nederlandse-grammatica-gids {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .summary-section-nederlandse-grammatica-gids {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .related-section-nederlandse-grammatica-gids {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-nederlandse-grammatica-gids {
    padding: 8rem 0;
  }

  .intro-section-nederlandse-grammatica-gids {
    padding: 8rem 0;
  }

  .fundamentals-section-nederlandse-grammatica-gids {
    padding: 8rem 0;
  }

  .structure-section-nederlandse-grammatica-gids {
    padding: 8rem 0;
  }

  .conjugation-section-nederlandse-grammatica-gids {
    padding: 8rem 0;
  }

  .tenses-section-nederlandse-grammatica-gids {
    padding: 8rem 0;
  }

  .practice-section-nederlandse-grammatica-gids {
    padding: 8rem 0;
  }

  .summary-section-nederlandse-grammatica-gids {
    padding: 8rem 0;
  }

  .related-section-nederlandse-grammatica-gids {
    padding: 8rem 0;
  }
}

.main-conversatie-nederlands-tips {
  width: 100%;
}

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

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

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

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

@media (max-width: 768px) {
  .hero-content-conversatie-nederlands-tips {
    flex-direction: column;
  }
}

.hero-text-conversatie-nederlands-tips {
  flex: 1 1 50%;
}

.hero-title-conversatie-nederlands-tips {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.hero-subtitle-conversatie-nederlands-tips {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #a7f3d0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.4;
}

.hero-description-conversatie-nederlands-tips {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #6ee7b7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.hero-meta-conversatie-nederlands-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-conversatie-nederlands-tips {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #a7f3d0;
}

.meta-badge-conversatie-nederlands-tips i {
  color: #10b981;
}

.hero-image-conversatie-nederlands-tips {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-conversatie-nederlands-tips img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-image-conversatie-nederlands-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.breadcrumbs-conversatie-nederlands-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
}

.breadcrumbs-conversatie-nederlands-tips a {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-conversatie-nederlands-tips a:hover {
  color: #10b981;
  text-decoration: underline;
}

.breadcrumb-separator-conversatie-nederlands-tips {
  color: #6ee7b7;
}

.breadcrumbs-conversatie-nederlands-tips span:last-child {
  color: #10b981;
  font-weight: 600;
}

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

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

@media (max-width: 768px) {
  .intro-content-conversatie-nederlands-tips {
    flex-direction: column;
  }
}

.intro-text-conversatie-nederlands-tips {
  flex: 1 1 50%;
}

.intro-title-conversatie-nederlands-tips {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #022c22;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-description-conversatie-nederlands-tips {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.intro-list-conversatie-nederlands-tips {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.intro-list-item-conversatie-nederlands-tips {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #334155;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.intro-list-item-conversatie-nederlands-tips::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.125rem;
}

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

.intro-image-conversatie-nederlands-tips img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-image-conversatie-nederlands-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-conversatie-nederlands-tips {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.content-text-conversatie-nederlands-tips {
  flex: 1 1 50%;
}

.content-title-conversatie-nederlands-tips {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.content-step-group-conversatie-nederlands-tips {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-step-conversatie-nederlands-tips {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

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

.content-step-content-conversatie-nederlands-tips {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-step-title-conversatie-nederlands-tips {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.content-step-text-conversatie-nederlands-tips {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

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

.content-image-conversatie-nederlands-tips img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-image-conversatie-nederlands-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-section-conversatie-nederlands-tips {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .strategies-content-conversatie-nederlands-tips {
    flex-direction: column;
  }
}

.strategies-image-conversatie-nederlands-tips {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-image-conversatie-nederlands-tips img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .strategies-image-conversatie-nederlands-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-text-conversatie-nederlands-tips {
  flex: 1 1 50%;
}

.strategies-title-conversatie-nederlands-tips {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #022c22;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.strategies-description-conversatie-nederlands-tips {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.strategies-cards-conversatie-nederlands-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.strategy-card-conversatie-nederlands-tips {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #10b981;
}

.strategy-card-title-conversatie-nederlands-tips {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #022c22;
}

.strategy-card-text-conversatie-nederlands-tips {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.phrases-section-conversatie-nederlands-tips {
  background: #0f766e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.phrases-header-conversatie-nederlands-tips {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.phrases-tag-conversatie-nederlands-tips {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: #a7f3d0;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.phrases-title-conversatie-nederlands-tips {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.phrases-subtitle-conversatie-nederlands-tips {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

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

@media (max-width: 768px) {
  .phrases-wrapper-conversatie-nederlands-tips {
    flex-direction: column;
  }
}

.phrases-text-conversatie-nederlands-tips {
  flex: 1 1 50%;
}

.phrases-section-title-conversatie-nederlands-tips {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  margin-top: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
}

.phrases-section-title-conversatie-nederlands-tips:first-of-type {
  margin-top: 0;
}

.phrases-list-conversatie-nederlands-tips {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.phrases-list-item-conversatie-nederlands-tips {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.phrases-list-item-conversatie-nederlands-tips::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.phrases-image-conversatie-nederlands-tips {
  flex: 1 1 50%;
  max-width: 50%;
}

.phrases-image-conversatie-nederlands-tips img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .phrases-image-conversatie-nederlands-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tips-header-conversatie-nederlands-tips {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tips-title-conversatie-nederlands-tips {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #022c22;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.tips-subtitle-conversatie-nederlands-tips {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.tips-card-conversatie-nederlands-tips {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.tips-card-conversatie-nederlands-tips:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.tips-card-number-conversatie-nederlands-tips {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.tips-card-title-conversatie-nederlands-tips {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #022c22;
}

.tips-card-text-conversatie-nederlands-tips {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

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

.conclusion-section-conversatie-nederlands-tips {
  background: #065f46;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-section-conversatie-nederlands-tips::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.conclusion-content-conversatie-nederlands-tips {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.conclusion-title-conversatie-nederlands-tips {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.conclusion-text-conversatie-nederlands-tips {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.7;
}

.conclusion-quote-conversatie-nederlands-tips {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.1);
  margin: clamp(2rem, 3vw, 3rem) 0;
  border-radius: 4px;
}

.conclusion-quote-text-conversatie-nederlands-tips {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
  font-style: italic;
}

.conclusion-cta-conversatie-nederlands-tips {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.conclusion-btn-conversatie-nederlands-tips,
.conclusion-btn-secondary-conversatie-nederlands-tips {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.conclusion-btn-conversatie-nederlands-tips {
  background: #10b981;
  color: #ffffff;
}

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

.conclusion-btn-secondary-conversatie-nederlands-tips {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.conclusion-btn-secondary-conversatie-nederlands-tips:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .conclusion-cta-conversatie-nederlands-tips {
    flex-direction: column;
  }
}

.disclaimer-section-conversatie-nederlands-tips {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-conversatie-nederlands-tips {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-conversatie-nederlands-tips {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #022c22;
  margin-bottom: 1rem;
}

.disclaimer-text-conversatie-nederlands-tips {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

.related-section-conversatie-nederlands-tips {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-conversatie-nederlands-tips {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-conversatie-nederlands-tips {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.related-subtitle-conversatie-nederlands-tips {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-conversatie-nederlands-tips {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.related-card-conversatie-nederlands-tips:hover {
  background: rgba(16, 185, 129, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.related-card-title-conversatie-nederlands-tips {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.related-card-text-conversatie-nederlands-tips {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.related-card-link-conversatie-nederlands-tips {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  margin-top: auto;
}

.related-card-link-conversatie-nederlands-tips:hover {
  color: #a7f3d0;
}

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

@media (min-width: 768px) {
  .hero-title-conversatie-nederlands-tips {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  }

  .tips-grid-conversatie-nederlands-tips {
    gap: clamp(1.5rem, 2.5vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .intro-section-conversatie-nederlands-tips {
    padding: 6rem 0;
  }

  .content-section-conversatie-nederlands-tips {
    padding: 6rem 0;
  }

  .strategies-section-conversatie-nederlands-tips {
    padding: 6rem 0;
  }

  .phrases-section-conversatie-nederlands-tips {
    padding: 6rem 0;
  }

  .tips-section-conversatie-nederlands-tips {
    padding: 6rem 0;
  }

  .conclusion-section-conversatie-nederlands-tips {
    padding: 6rem 0;
  }

  .related-section-conversatie-nederlands-tips {
    padding: 6rem 0;
  }
}

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

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

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

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

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

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

.breadcrumbs-luistervaardigheden-nederlands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
}

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

.breadcrumb-link-luistervaardigheden-nederlands:hover {
  color: #ffffff;
}

.breadcrumb-separator-luistervaardigheden-nederlands {
  color: #6ee7b7;
  margin: 0 0.25rem;
}

.breadcrumb-current-luistervaardigheden-nederlands {
  color: #6ee7b7;
}

.hero-content-luistervaardigheden-nederlands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-block-luistervaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.hero-subtitle-luistervaardigheden-nederlands {
  color: #a7f3d0;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  font-weight: 500;
}

.hero-description-luistervaardigheden-nederlands {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.hero-meta-luistervaardigheden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-luistervaardigheden-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #a7f3d0;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.meta-badge-luistervaardigheden-nederlands i {
  color: #10b981;
}

.hero-stats-luistervaardigheden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 1.5rem;
}

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

.stat-number-luistervaardigheden-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.stat-label-luistervaardigheden-nederlands {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
  color: #a7f3d0;
  opacity: 0.9;
}

.hero-image-block-luistervaardigheden-nederlands {
  position: relative;
}

.hero-image-luistervaardigheden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
  max-width: 100%;
}

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

  .hero-stats-luistervaardigheden-nederlands {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

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

.intro-content-luistervaardigheden-nederlands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-block-luistervaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-luistervaardigheden-nederlands {
  color: #022c22;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
}

.intro-description-luistervaardigheden-nederlands {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.intro-quote-luistervaardigheden-nederlands {
  padding: 1.5rem 2rem;
  border-left: 4px solid #10b981;
  background: #f8fafc;
  margin: 1rem 0;
  font-style: italic;
}

.quote-text-luistervaardigheden-nederlands {
  color: #022c22;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.quote-author-luistervaardigheden-nederlands {
  color: #64748b;
  font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.9375rem);
  font-style: normal;
}

.intro-image-block-luistervaardigheden-nederlands {
  position: relative;
}

.intro-image-luistervaardigheden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: block;
  max-width: 100%;
}

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

.methods-section-luistervaardigheden-nederlands {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.methods-header-luistervaardigheden-nederlands {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.section-tag-luistervaardigheden-nederlands {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: #a7f3d0;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.methods-title-luistervaardigheden-nederlands {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

.methods-subtitle-luistervaardigheden-nederlands {
  color: #a7f3d0;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.methods-steps-luistervaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.method-step-luistervaardigheden-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

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

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

.step-title-luistervaardigheden-nederlands {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  line-height: 1.2;
}

.step-description-luistervaardigheden-nederlands {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .method-step-luistervaardigheden-nederlands {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-luistervaardigheden-nederlands {
    font-size: 2rem;
  }
}

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

.resources-content-luistervaardigheden-nederlands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.resources-text-block-luistervaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.resources-title-luistervaardigheden-nederlands {
  color: #022c22;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
}

.resources-description-luistervaardigheden-nederlands {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.resources-list-luistervaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-item-luistervaardigheden-nederlands {
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #10b981;
}

.resource-item-title-luistervaardigheden-nederlands {
  color: #022c22;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.resource-item-text-luistervaardigheden-nederlands {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.resources-image-block-luistervaardigheden-nederlands {
  position: relative;
}

.resources-image-luistervaardigheden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: block;
  max-width: 100%;
}

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

.tips-section-luistervaardigheden-nederlands {
  background: #065f46;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.tips-header-luistervaardigheden-nederlands {
  text-align: center;
  margin-bottom: 3rem;
}

.tips-title-luistervaardigheden-nederlands {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.tip-card-luistervaardigheden-nederlands {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.tip-card-luistervaardigheden-nederlands:hover {
  background: rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.tip-icon-luistervaardigheden-nederlands {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border-radius: 8px;
  font-size: 1.5rem;
  margin: 0 auto;
}

.tip-card-title-luistervaardigheden-nederlands {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
}

.tip-card-text-luistervaardigheden-nederlands {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

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

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

.timeline-header-luistervaardigheden-nederlands {
  text-align: center;
  margin-bottom: 3rem;
}

.timeline-title-luistervaardigheden-nederlands {
  color: #022c22;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.timeline-items-luistervaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-period-luistervaardigheden-nederlands {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.period-header-luistervaardigheden-nederlands {
  margin-bottom: 1rem;
}

.period-label-luistervaardigheden-nederlands {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.period-title-luistervaardigheden-nederlands {
  color: #022c22;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  margin: 0;
}

.period-text-luistervaardigheden-nederlands {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.practice-section-luistervaardigheden-nederlands {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.practice-content-luistervaardigheden-nederlands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-image-block-luistervaardigheden-nederlands {
  order: -1;
}

.practice-image-luistervaardigheden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
  max-width: 100%;
}

.practice-text-block-luistervaardigheden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.practice-description-luistervaardigheden-nederlands {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.practice-highlights-luistervaardigheden-nederlands {
  margin-top: 1rem;
}

.highlight-box-luistervaardigheden-nederlands {
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.highlight-title-luistervaardigheden-nederlands {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.highlight-list-luistervaardigheden-nederlands {
  list-style: none;
}

.highlight-item-luistervaardigheden-nederlands {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-luistervaardigheden-nederlands::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

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

  .practice-image-block-luistervaardigheden-nederlands {
    order: 0;
  }
}

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

.conclusion-content-luistervaardigheden-nederlands {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-luistervaardigheden-nederlands {
  color: #022c22;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.conclusion-text-luistervaardigheden-nederlands {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.cta-box-luistervaardigheden-nederlands {
  background: linear-gradient(135deg, #10b981, #059669);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 1rem;
}

.cta-title-luistervaardigheden-nederlands {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-description-luistervaardigheden-nederlands {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-button-luistervaardigheden-nederlands {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #022c22;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-luistervaardigheden-nederlands:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-luistervaardigheden-nederlands {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-luistervaardigheden-nederlands {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-luistervaardigheden-nederlands {
  color: #022c22;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-luistervaardigheden-nederlands {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  background: #f8fafc;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid #cbd5e1;
  border-radius: 4px;
}

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

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

.related-title-luistervaardigheden-nederlands {
  color: #022c22;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

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

.related-card-luistervaardigheden-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.related-card-image-luistervaardigheden-nederlands {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e5e7eb;
}

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

.related-card-content-luistervaardigheden-nederlands {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-luistervaardigheden-nederlands {
  color: #022c22;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-luistervaardigheden-nederlands {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-luistervaardigheden-nederlands {
  color: #10b981;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-card-link-luistervaardigheden-nederlands:hover {
  color: #059669;
  text-decoration: underline;
}

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

@media (min-width: 768px) {
  .hero-section-luistervaardigheden-nederlands {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .intro-section-luistervaardigheden-nederlands,
  .resources-section-luistervaardigheden-nederlands,
  .practice-section-luistervaardigheden-nederlands {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .methods-section-luistervaardigheden-nederlands,
  .tips-section-luistervaardigheden-nederlands,
  .timeline-section-luistervaardigheden-nederlands,
  .conclusion-section-luistervaardigheden-nederlands,
  .related-section-luistervaardigheden-nederlands {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-luistervaardigheden-nederlands {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .intro-section-luistervaardigheden-nederlands,
  .resources-section-luistervaardigheden-nederlands,
  .practice-section-luistervaardigheden-nederlands {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .methods-section-luistervaardigheden-nederlands,
  .tips-section-luistervaardigheden-nederlands,
  .timeline-section-luistervaardigheden-nederlands,
  .conclusion-section-luistervaardigheden-nederlands,
  .related-section-luistervaardigheden-nederlands {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }
}

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

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

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

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

.breadcrumbs-nederlands-lezen-strategie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
}

.breadcrumb-link-nederlands-lezen-strategie {
  color: #6ee7b7;
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumb-link-nederlands-lezen-strategie:hover {
  color: #a7f3d0;
  text-decoration: underline;
}

.breadcrumb-separator-nederlands-lezen-strategie {
  color: #4b9980;
}

.breadcrumb-current-nederlands-lezen-strategie {
  color: #a7f3d0;
}

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

.hero-text-block-nederlands-lezen-strategie {
  flex: 1 1 50%;
  color: #ffffff;
}

.hero-title-nederlands-lezen-strategie {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlands-lezen-strategie {
  color: #a7f3d0;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
}

.hero-description-nederlands-lezen-strategie {
  color: #6ee7b7;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.7;
}

.hero-stats-nederlands-lezen-strategie {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.stat-item-nederlands-lezen-strategie {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-nederlands-lezen-strategie {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.stat-label-nederlands-lezen-strategie {
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  color: #a7f3d0;
  opacity: 0.85;
}

.hero-meta-nederlands-lezen-strategie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-nederlands-lezen-strategie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  color: #a7f3d0;
}

.meta-badge-nederlands-lezen-strategie i {
  color: #10b981;
}

.hero-image-block-nederlands-lezen-strategie {
  flex: 1 1 50%;
}

.hero-featured-image-nederlands-lezen-strategie {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-nederlands-lezen-strategie {
    flex-direction: column;
  }

  .hero-text-block-nederlands-lezen-strategie,
  .hero-image-block-nederlands-lezen-strategie {
    flex: 1 1 100%;
  }

  .hero-stats-nederlands-lezen-strategie {
    gap: 1rem;
  }

  .stat-item-nederlands-lezen-strategie {
    min-width: 80px;
  }
}

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

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

.intro-text-block-nederlands-lezen-strategie {
  flex: 1 1 50%;
}

.intro-title-nederlands-lezen-strategie {
  color: #022c22;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-description-nederlands-lezen-strategie {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-text-secondary-nederlands-lezen-strategie {
  color: #5a6c7d;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-highlight-box-nederlands-lezen-strategie {
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-nederlands-lezen-strategie {
  color: #0f766e;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
}

.intro-image-block-nederlands-lezen-strategie {
  flex: 1 1 50%;
}

.intro-image-nederlands-lezen-strategie {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-nederlands-lezen-strategie {
    flex-direction: column;
  }

  .intro-text-block-nederlands-lezen-strategie,
  .intro-image-block-nederlands-lezen-strategie {
    flex: 1 1 100%;
  }
}

.levels-section-nederlands-lezen-strategie {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.levels-header-nederlands-lezen-strategie {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 2;
}

.section-tag-nederlands-lezen-strategie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: #a7f3d0;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.levels-title-nederlands-lezen-strategie {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.levels-subtitle-nederlands-lezen-strategie {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.levels-steps-nederlands-lezen-strategie {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}

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

.level-step-nederlands-lezen-strategie:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
}

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

.level-content-nederlands-lezen-strategie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.level-title-nederlands-lezen-strategie {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.level-description-nederlands-lezen-strategie {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.7;
}

.level-tips-nederlands-lezen-strategie {
  margin-top: 0.75rem;
}

.tip-item-nederlands-lezen-strategie {
  display: block;
  color: #6ee7b7;
  font-size: clamp(0.8125rem, 0.9vw + 0.4rem, 0.9375rem);
  line-height: 1.6;
  padding-left: 0.5rem;
}

@media (max-width: 768px) {
  .level-step-nederlands-lezen-strategie {
    flex-direction: column;
  }

  .level-number-nederlands-lezen-strategie {
    min-width: auto;
  }
}

.strategy-section-nederlands-lezen-strategie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.strategy-text-block-nederlands-lezen-strategie {
  flex: 1 1 50%;
}

.strategy-title-nederlands-lezen-strategie {
  color: #022c22;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.strategy-description-nederlands-lezen-strategie {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.strategy-techniques-nederlands-lezen-strategie {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.technique-item-nederlands-lezen-strategie {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.technique-item-nederlands-lezen-strategie:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.technique-title-nederlands-lezen-strategie {
  color: #022c22;
  font-size: clamp(1rem, 2vw + 0.3rem, 1.125rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.technique-text-nederlands-lezen-strategie {
  color: #5a6c7d;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
}

.strategy-image-block-nederlands-lezen-strategie {
  flex: 1 1 50%;
}

.strategy-image-nederlands-lezen-strategie {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .strategy-content-nederlands-lezen-strategie {
    flex-direction: column;
  }

  .strategy-text-block-nederlands-lezen-strategie,
  .strategy-image-block-nederlands-lezen-strategie {
    flex: 1 1 100%;
  }
}

.resources-section-nederlands-lezen-strategie {
  background: #0f766e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.resources-header-nederlands-lezen-strategie {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 2;
}

.resources-title-nederlands-lezen-strategie {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.resources-subtitle-nederlands-lezen-strategie {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.resources-grid-nederlands-lezen-strategie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  position: relative;
  z-index: 2;
}

.resource-card-nederlands-lezen-strategie {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-card-nederlands-lezen-strategie:hover {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.resource-icon-nederlands-lezen-strategie {
  font-size: 2.5rem;
  color: #10b981;
}

.resource-title-nederlands-lezen-strategie {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.3rem, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.resource-text-nederlands-lezen-strategie {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
}

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

.quote-section-nederlands-lezen-strategie {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-nederlands-lezen-strategie {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
}

.quote-text-nederlands-lezen-strategie {
  font-size: clamp(1.25rem, 3vw + 0.3rem, 1.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.quote-author-nederlands-lezen-strategie {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #a7f3d0;
  font-style: normal;
}

.tips-section-nederlands-lezen-strategie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.tips-header-nederlands-lezen-strategie {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.tips-title-nederlands-lezen-strategie {
  color: #022c22;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.tips-subtitle-nederlands-lezen-strategie {
  color: #5a6c7d;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.tips-grid-nederlands-lezen-strategie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-nederlands-lezen-strategie {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.tip-card-nederlands-lezen-strategie:hover {
  border-color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
  transform: translateY(-4px);
}

.tip-number-nederlands-lezen-strategie {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.tip-card-title-nederlands-lezen-strategie {
  color: #022c22;
  font-size: clamp(1.0625rem, 2vw + 0.3rem, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.tip-card-text-nederlands-lezen-strategie {
  color: #5a6c7d;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
}

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

.conclusion-section-nederlands-lezen-strategie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-nederlands-lezen-strategie {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-nederlands-lezen-strategie {
  color: #022c22;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.conclusion-text-nederlands-lezen-strategie {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-text-secondary-nederlands-lezen-strategie {
  color: #5a6c7d;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.8;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.conclusion-cta-box-nederlands-lezen-strategie {
  background: #022c22;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
}

.cta-title-nederlands-lezen-strategie {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-description-nederlands-lezen-strategie {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-primary-nederlands-lezen-strategie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #10b981;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-nederlands-lezen-strategie:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.disclaimer-section-nederlands-lezen-strategie {
  background: #0f766e;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-nederlands-lezen-strategie {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.disclaimer-title-nederlands-lezen-strategie {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.3rem, 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-lezen-strategie {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.7;
}

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

.related-header-nederlands-lezen-strategie {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.related-title-nederlands-lezen-strategie {
  color: #022c22;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.related-subtitle-nederlands-lezen-strategie {
  color: #5a6c7d;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.related-card-nederlands-lezen-strategie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.related-card-nederlands-lezen-strategie:hover {
  border-color: #10b981;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.1);
  transform: translateY(-4px);
}

.related-card-image-nederlands-lezen-strategie {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.related-card-image-nederlands-lezen-strategie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-nederlands-lezen-strategie {
  color: #022c22;
  font-size: clamp(1.0625rem, 2vw + 0.3rem, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-nederlands-lezen-strategie {
  color: #5a6c7d;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

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

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

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

@media (min-width: 768px) {
  .hero-section-nederlands-lezen-strategie {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .intro-section-nederlands-lezen-strategie,
  .levels-section-nederlands-lezen-strategie,
  .strategy-section-nederlands-lezen-strategie,
  .resources-section-nederlands-lezen-strategie,
  .tips-section-nederlands-lezen-strategie,
  .conclusion-section-nederlands-lezen-strategie,
  .related-section-nederlands-lezen-strategie {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-nederlands-lezen-strategie {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .intro-section-nederlands-lezen-strategie,
  .levels-section-nederlands-lezen-strategie,
  .strategy-section-nederlands-lezen-strategie,
  .resources-section-nederlands-lezen-strategie,
  .tips-section-nederlands-lezen-strategie,
  .conclusion-section-nederlands-lezen-strategie,
  .related-section-nederlands-lezen-strategie {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }
}

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

.breadcrumb-link-nederlands-lezen-strategie:focus-visible,
.related-card-link-nederlands-lezen-strategie:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 4px;
}

:root {
  --color-bg-primary: #022c22;
  --color-bg-secondary: #064e3b;
  --color-bg-tertiary: #065f46;
  --color-bg-light: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-card-dark: rgba(16, 185, 129, 0.08);
  --color-bg-card-light: #ffffff;
  --color-text-dark: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #6ee7b7;
  --color-text-light: #022c22;
  --color-text-light-secondary: #0f766e;
  --color-text-light-muted: #5a6c7d;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-light: #a7f3d0;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

.dutch-learning-about {
  background: var(--color-bg-light);
}

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

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

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.15;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2.5vw + 0.25rem, 1.375rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.4;
  max-width: 700px;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(16, 185, 129, 0.3);
}

.stat-item-about {
  flex: 1 1 150px;
}

.stat-number-about {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.journey-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.section-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.125rem);
  color: var(--color-text-light-muted);
  max-width: 650px;
  margin: 0 auto;
}

.journey-text-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
}

.journey-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

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

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

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

.methodology-item-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.method-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
}

.method-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.375rem);
  font-weight: 700;
  color: var(--color-text-dark);
}

.method-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-dark-secondary);
}

.approach-visual-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

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

.philosophy-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

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

.value-card-about {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light);
  border: 1.5px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

.value-icon-about {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.value-title-about {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.value-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-light-muted);
}

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

.commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-secondary);
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
}

.quote-text-about {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.375rem);
  font-style: italic;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
  font-style: normal;
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-dark-secondary);
}

.commitment-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

.disclaimer-section-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
}

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

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

.disclaimer-icon-about {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.disclaimer-text-about {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-light-muted);
}

@media (min-width: 768px) {
  .hero-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .journey-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .approach-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .philosophy-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .commitment-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .value-card-about {
    flex: 1 1 320px;
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .journey-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .approach-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .philosophy-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .commitment-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

.docs-hub {
  width: 100%;
  font-family: var(--font-primary);
}

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

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

.docs-hub-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.docs-hub-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-hub-hero-subtitle {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-dark-secondary);
}

.docs-hub-hero-meta {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  margin-top: 0.5rem;
}

.docs-hub-main {
  background: var(--color-bg-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.docs-hub-main-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
}

.docs-hub-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.docs-hub-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-hub-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-light-secondary);
  margin-top: 1rem;
}

.docs-hub-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-light-muted);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-hub-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.docs-hub-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  color: var(--color-text-light-muted);
  padding-left: 1.5rem;
  position: relative;
}

.docs-hub-section li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.docs-hub-contact {
  background: var(--color-bg-light-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.docs-hub-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0;
}

.docs-hub-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: var(--color-text-light-muted);
  margin: 0;
}

.docs-hub-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.docs-hub-contact-label {
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

.docs-hub-contact-value {
  color: var(--color-text-light-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

@media (min-width: 768px) {
  .docs-hub-hero {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .docs-hub-main {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .docs-hub-main-content {
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .docs-hub-contact {
    padding: clamp(2rem, 3vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .docs-hub-hero {
    padding: 6rem 0;
  }

  .docs-hub-main {
    padding: 6rem 0;
  }
}

.thank-page {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4rem, 15vw, 6rem);
  height: clamp(4rem, 15vw, 6rem);
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-xl);
  animation: scaleIn 0.6s ease-out;
}

.thank-icon i {
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--color-primary);
}

.thank-section h1 {
  color: var(--color-text-dark);
  font-size: clamp(1.75rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  color: var(--color-secondary);
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.375rem);
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.thank-message {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

.thank-next-steps {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  max-width: 600px;
}

.thank-next-steps h3 {
  color: var(--color-text-dark);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1.5rem 0;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps-list li {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: #000000;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  background: var(--color-primary);
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.btn-primary:focus {
  outline: 2px solid var(--color-accent-light);
  outline-offset: 2px;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .thank-next-steps {
    padding: clamp(2rem, 4vw, 3rem);
  }

  .steps-list {
    gap: 1.25rem;
  }

  .steps-list li {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(5rem, 12vw, 10rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }

  .thank-next-steps {
    padding: clamp(2.5rem, 5vw, 3.5rem);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 6rem 0;
  }
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  background: var(--color-bg-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
  position: relative;
}

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

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-bg-tertiary) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
}

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

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

.error-visual {
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
  display: block;
}

.error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(150px, 30vw, 250px);
  height: clamp(150px, 30vw, 250px);
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  opacity: 0.2;
  animation: float 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0px);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-20px);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 2vw + 0.3rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-message {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.error-message i {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-secondary);
}

.error-message p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-actions {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.5vw + 0.3rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  border: none;
  cursor: pointer;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.error-suggestions {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(167, 243, 208, 0.2);
  width: 100%;
}

.suggestions-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1rem);
  color: var(--color-text-dark-muted);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 500;
}

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

.suggestions-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1rem);
  color: var(--color-text-dark-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list i {
  color: var(--color-secondary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }

  .error-decoration {
    animation: float 5s ease-in-out infinite;
  }

  .error-actions {
    margin-top: clamp(2rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .error-content {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .btn:hover {
    transform: translateY(-3px);
  }

  .suggestions-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .suggestions-list li {
    flex: 0 1 auto;
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-code {
    text-shadow: 0 6px 30px rgba(16, 185, 129, 0.25);
  }
}

.btn:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.suggestions-list li:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration,
  .btn {
    animation: none;
    transition: none;
  }
}

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

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-about-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
}

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

.footer-navigation-section,
.footer-contact-section,
.footer-legal-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
}

.footer-nav-links,
.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-link,
.footer-legal-link {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

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

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

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  font-size: clamp(0.8125rem, 0.9vw + 0.4rem, 0.875rem);
  color: var(--color-text-dark-muted);
  font-weight: 500;
}

.footer-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
}

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

.footer-copyright {
  font-size: clamp(0.8125rem, 0.9vw + 0.4rem, 0.875rem);
  color: var(--color-text-dark-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 2.5rem);
  }

  .footer-about-section {
    order: -1;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: clamp(4rem, 8vw, 5rem) 0 clamp(2rem, 4vw, 2.5rem) 0;
  }

  .footer-content {
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}