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

:root {
  
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  
  
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-secondary: #10b981;
  --color-accent-light: #d1fae5;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', 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.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

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

section {
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

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

.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: 2px solid var(--color-primary);
}

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

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

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

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

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

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

.card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

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

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

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

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

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

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

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

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

[class*="-content"] {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: var(--color-accent-light);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
}

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input,
textarea,
select {
  width: 100%;
  padding: clamp(0.625rem, 1.5vw, 1rem);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

.btn:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: var(--space-sm); }
.pt-2 { padding-top: var(--space-md); }
.pt-3 { padding-top: var(--space-lg); }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: var(--space-sm); }
.pb-2 { padding-bottom: var(--space-md); }
.pb-3 { padding-bottom: var(--space-lg); }

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d1d5db, transparent);
  margin: var(--space-2xl) 0;
}

.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: #ffffff;
  padding: var(--space-sm);
  text-decoration: none;
  z-index: 100;
}

.skip-to-main:focus {
  top: 0;
}

@media print {
  .no-print {
    display: none;
  }
}
:root {
    --color-bg-primary: #f9fafb;
    --color-bg-secondary: #ffffff;
    --color-bg-tertiary: #f3f4f6;
    --color-bg-card: #ffffff;
    --color-text-primary: #111827;
    --color-text-secondary: #4b5563;
    --color-text-muted: #9ca3af;
    --color-primary: #059669;
    --color-primary-hover: #047857;
    --color-secondary: #10b981;
    --color-accent-light: #d1fae5;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', 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.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --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;
  }

  .header-taal-studio {
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-bg-tertiary);
    position: relative;
    z-index: 100;
  }

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

  .header-taal-studio-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    flex-shrink: 0;
    transition: opacity 300ms ease;
  }

  .header-taal-studio-brand:hover {
    opacity: 0.8;
  }

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

  .header-taal-studio-logo-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
  }

  .header-taal-studio-desktop-nav {
    display: none;
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
  }

  @media (min-width: 768px) {
    .header-taal-studio-desktop-nav {
      display: flex;
    }
  }

  .header-taal-studio-nav-link {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 300ms ease;
    position: relative;
  }

  .header-taal-studio-nav-link:hover {
    color: var(--color-primary);
  }

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

  .header-taal-studio-nav-link:hover::after {
    width: 100%;
  }

  .header-taal-studio-cta-button {
    display: none;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    transition: all 300ms ease;
    border: 2px solid var(--color-primary);
    white-space: nowrap;
  }

  @media (min-width: 768px) {
    .header-taal-studio-cta-button {
      display: inline-block;
    }
  }

  .header-taal-studio-cta-button:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .header-taal-studio-cta-button:active {
    transform: translateY(0);
  }

  .header-taal-studio-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
  }

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

  .header-taal-studio-hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 1px;
    transition: all 300ms ease;
  }

  .header-taal-studio-mobile-toggle[aria-expanded="true"] .header-taal-studio-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .header-taal-studio-mobile-toggle[aria-expanded="true"] .header-taal-studio-hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .header-taal-studio-mobile-toggle[aria-expanded="true"] .header-taal-studio-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .header-taal-studio-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-secondary);
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 300ms ease;
    z-index: 99;
    box-shadow: var(--shadow-lg);
  }

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

  @media (min-width: 768px) {
    .header-taal-studio-mobile-menu {
      display: none;
    }
  }

  .header-taal-studio-mobile-header {
    display: flex;
    justify-content: flex-end;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--color-bg-tertiary);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background: var(--color-bg-secondary);
  }

  .header-taal-studio-mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-primary);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 300ms ease;
  }

  .header-taal-studio-mobile-close:hover {
    color: var(--color-primary);
  }

  .header-taal-studio-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(2rem, 5vw, 3rem) var(--space-lg);
    flex: 1;
  }

  .header-taal-studio-mobile-link {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-bg-tertiary);
    transition: color 300ms ease;
  }

  .header-taal-studio-mobile-link:hover {
    color: var(--color-primary);
  }

  .header-taal-studio-mobile-cta {
    padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    text-align: center;
    margin: var(--space-lg);
    transition: all 300ms ease;
    border: 2px solid var(--color-primary);
  }

  .header-taal-studio-mobile-cta:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
  }

  @media (min-width: 320px) and (max-width: 767px) {
    .header-taal-studio-container {
      padding: clamp(0.75rem, 2vw, 1rem) clamp(0.875rem, 3vw, 1.5rem);
    }

    .header-taal-studio-logo-img {
      width: 36px;
      height: 36px;
    }
  }

    .dutch-learning-hub {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.hero-decorative-glow-index {
  position: absolute;
  top: -10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(5, 150, 105, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh-index {
  position: absolute;
  top: 20%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-index {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-shape-organic-index {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 250px;
  height: 280px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.hero-light-orb-index {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(5, 150, 105, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-accent-index {
  position: absolute;
  bottom: 30%;
  left: 0;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-text-block-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-top: 1px solid rgba(5, 150, 105, 0.2);
  border-bottom: 1px solid rgba(5, 150, 105, 0.2);
}

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

.hero-stat-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.hero-stat-label-index {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}

.btn-primary-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

.btn-primary-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.btn-secondary-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary-index:hover {
  background: rgba(5, 150, 105, 0.08);
  border-color: var(--color-primary-hover);
  transform: translateY(-3px);
}

.hero-image-block-index {
  flex: 1 1 350px;
  max-width: 500px;
}

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

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

.about-shape-accent-index {
  position: absolute;
  top: 5%;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 50% 0% 50% 50% / 50% 50% 50% 0%;
  z-index: 1;
  pointer-events: none;
}

.about-glow-soft-index {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.about-floating-panel-index {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.about-corner-decoration-index {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 0 0 100% 0;
  z-index: 1;
  pointer-events: none;
}

.about-line-element-index {
  position: absolute;
  bottom: 25%;
  right: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.about-text-block-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.about-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

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

.about-benefits-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-benefit-item-index {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.about-benefit-icon-index {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-benefit-title-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.about-benefit-text-index {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.about-image-block-index {
  flex: 1 1 350px;
  max-width: 500px;
}

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

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

.methodology-glow-top-index {
  position: absolute;
  top: -5%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: rgba(5, 150, 105, 0.07);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.methodology-shape-bottom-index {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.methodology-accent-line-index {
  position: absolute;
  top: 30%;
  left: 0;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, rgba(5, 150, 105, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.methodology-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.methodology-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: flex-start;
}

.methodology-steps-index {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.methodology-step-index {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.methodology-step-index:hover {
  background: rgba(5, 150, 105, 0.05);
  transform: translateX(8px);
}

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

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

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

.methodology-step-text-index {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.methodology-highlight-index {
  flex: 1 1 350px;
  min-width: 300px;
}

.methodology-quote-index {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-tertiary);
  margin: 0;
  border-radius: var(--radius-lg);
}

.methodology-quote-index p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.methodology-quote-index cite {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

@media (max-width: 768px) {
  .methodology-content-index {
    flex-direction: column;
  }
  
  .methodology-highlight-index {
    flex: 1 1 100%;
  }
}

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

.techniques-shape-accent-index {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 280px;
  height: 280px;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 50% 50% 0% 50%;
  z-index: 1;
  pointer-events: none;
}

.techniques-glow-element-index {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 320px;
  height: 320px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.techniques-floating-form-index {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 160px;
  height: 120px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(5, 150, 105, 0.08);
  border-radius: 10px;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
}

.techniques-line-decoration-index {
  position: absolute;
  top: 20%;
  right: 0;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.25));
  z-index: 2;
  pointer-events: none;
}

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

.techniques-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.techniques-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.techniques-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.techniques-cards-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.techniques-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(5, 150, 105, 0.1);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.techniques-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(5, 150, 105, 0.15);
  border-color: rgba(5, 150, 105, 0.3);
}

.techniques-card-icon-index {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}

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

.techniques-card-text-index {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.featured-posts-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
}

.featured-glow-index {
  position: absolute;
  top: -10%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: rgba(5, 150, 105, 0.08);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

.featured-decoration-line-index {
  position: absolute;
  top: 25%;
  left: 0;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, rgba(5, 150, 105, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.featured-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.featured-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.featured-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.featured-cards-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.featured-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.featured-card-image-index {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.featured-card-content-index {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.featured-card-text-index {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.featured-card-link-index {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease-in-out;
  display: inline-block;
  margin-top: 0.5rem;
}

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

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

.featured-view-all-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

.featured-view-all-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

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

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

.advantages-glow-top-index {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 320px;
  height: 320px;
  background: rgba(5, 150, 105, 0.07);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.advantages-shape-middle-index {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 260px;
  height: 260px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  z-index: 1;
  pointer-events: none;
}

.advantages-accent-bottom-index {
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.advantages-float-element-index {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 140px;
  height: 100px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(5, 150, 105, 0.08);
  border-radius: 8px;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

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

.advantages-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.advantages-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.advantages-text-block-index {
  flex: 1 1 400px;
}

.advantages-list-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.advantages-icon-index {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.advantages-item-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.advantages-item-title-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.advantages-item-text-index {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.advantages-stats-block-index {
  flex: 1 1 350px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.advantages-stat-card-index {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(5, 150, 105, 0.1);
  transition: all 300ms ease-in-out;
}

.advantages-stat-card-index:hover {
  border-color: rgba(5, 150, 105, 0.3);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.1);
}

.advantages-stat-number-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.advantages-stat-label-index {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .advantages-content-index {
    flex-direction: column;
  }
  
  .advantages-stats-block-index {
    flex: 1 1 100%;
    width: 100%;
  }
}

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

.contact-glow-accent-index {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(5, 150, 105, 0.07);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.contact-line-element-index {
  position: absolute;
  top: 20%;
  right: 0;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2));
  z-index: 1;
  pointer-events: none;
}

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

.contact-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

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

.contact-form-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-label-index {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border: 2px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-bg-tertiary);
  transition: all 300ms ease;
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

.contact-submit-btn-index {
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-submit-btn-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

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

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

.contact-info-block-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-title-index {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-faq-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.contact-faq-item-index:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-faq-question-index {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-faq-answer-index {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-info-note-index {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(5, 150, 105, 0.08);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.contact-response-time-index {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 500;
}

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

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

.cta-final-glow-index {
  position: absolute;
  top: -10%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: rgba(5, 150, 105, 0.08);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

.cta-final-accent-index {
  position: absolute;
  top: 20%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.cta-final-content-index {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
}

.cta-final-title-index {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.cta-final-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.cta-final-btn-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  margin-top: 1rem;
}

.cta-final-btn-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

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

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

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

.cookie-policy-link {
  color: #38bdf8;
  text-decoration: underline;
  transition: color 300ms ease;
}

.cookie-policy-link:hover {
  color: #0ea5e9;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  border: none;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}

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

.cookie-btn-accept:hover {
  background: #059669;
}

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

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

@media (max-width: 768px) {
  .methodology-step-index {
    padding: 1.25rem;
  }
  
  .contact-submit-btn-index {
    width: 100%;
  }
  
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-banner-text {
    order: 1;
  }
  
  .cookie-banner-buttons {
    order: 2;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stats-index {
    gap: 1.5rem;
  }
  
  .advantages-stats-block-index {
    flex-direction: column;
  }
  
  .advantages-stat-card-index {
    flex: 1 1 100%;
  }
}

.btn-primary-index:focus-visible,
.btn-secondary-index:focus-visible,
.featured-card-link-index:focus-visible,
.contact-submit-btn-index:focus-visible,
.cta-final-btn-index:focus-visible,
.cookie-btn-accept:focus-visible,
.cookie-btn-decline:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

    .footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--color-accent-light);
  position: relative;
  overflow: hidden;
}

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

.footer-content {
  display: block;
}

.footer-about-section {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--color-accent-light);
}

.footer-about-heading {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.footer-about-text {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 580px;
}

.footer-navigation-section {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--color-accent-light);
}

.footer-nav-heading {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.footer-nav-link {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-weight: 500;
}

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

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

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

.footer-contact-section {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--color-accent-light);
}

.footer-contact-heading {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.footer-contact-info {
  display: block;
}

.footer-contact-item {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

.footer-contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.footer-contact-value {
  display: block;
  margin-top: 0.25rem;
  color: var(--color-text-secondary);
}

.footer-legal-section {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--color-accent-light);
}

.footer-legal-heading {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2rem);
}

.footer-legal-link {
  font-size: clamp(0.8125rem, 0.9vw + 0.4rem, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

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

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

.footer-copyright-text {
  font-size: clamp(0.8125rem, 0.9vw + 0.3rem, 0.9375rem);
  color: var(--color-text-muted);
  font-weight: 500;
}

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

@media (prefers-reduced-motion: reduce) {
  .footer-nav-link,
  .footer-nav-link::after,
  .footer-legal-link {
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    grid-template-areas:
      "about nav"
      "contact legal"
      "copyright copyright";
  }

  .footer-about-section {
    grid-area: about;
    border-bottom: none;
    border-right: 1px solid var(--color-accent-light);
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .footer-navigation-section {
    grid-area: nav;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .footer-contact-section {
    grid-area: contact;
    border-bottom: none;
    border-right: 1px solid var(--color-accent-light);
    border-top: 1px solid var(--color-accent-light);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .footer-legal-section {
    grid-area: legal;
    border-bottom: none;
    border-top: 1px solid var(--color-accent-light);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .footer-copyright-section {
    grid-area: copyright;
    border-top: 1px solid var(--color-accent-light);
    padding-top: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
      "about nav contact legal"
      "copyright copyright copyright copyright";
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }

  .footer-about-section {
    border-right: 1px solid var(--color-accent-light);
    border-bottom: none;
    padding-right: clamp(2rem, 4vw, 3rem);
  }

  .footer-navigation-section {
    border-right: 1px solid var(--color-accent-light);
    border-bottom: none;
    padding-left: clamp(1rem, 2vw, 1.5rem);
    padding-right: clamp(1rem, 2vw, 1.5rem);
  }

  .footer-contact-section {
    border-right: 1px solid var(--color-accent-light);
    border-bottom: none;
    border-top: none;
    padding-left: clamp(1rem, 2vw, 1.5rem);
    padding-right: clamp(1rem, 2vw, 1.5rem);
    padding-top: 0;
  }

  .footer-legal-section {
    border-bottom: none;
    border-top: none;
    padding-left: clamp(1rem, 2vw, 1.5rem);
    padding-top: 0;
  }

  .footer-copyright-section {
    border-top: 1px solid var(--color-accent-light);
    padding-top: clamp(2rem, 4vw, 3rem);
  }
}

@media (min-width: 1440px) {
  .footer-about-text {
    font-size: 1rem;
  }

  .footer-nav-link,
  .footer-legal-link,
  .footer-contact-item {
    font-size: 1rem;
  }
}
    

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

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

.hero-deco-gradient-mesh-dutch {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  top: -10%;
  left: -5%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-glow-accent-dutch {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  top: 15%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-blob-dutch {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  bottom: 10%;
  right: 15%;
  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;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.hero-subtitle-dutch-learning {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.7;
  max-width: 650px;
}

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

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

.stat-number-dutch {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-dutch {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #64748b;
  font-weight: 500;
}

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

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

.btn-primary {
  background: #059669;
  color: #ffffff;
}

.btn-primary:hover {
  background: #047857;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.2);
}

.btn-outline {
  background: transparent;
  color: #059669;
  border: 2px solid #059669;
}

.btn-outline:hover {
  background: #d1fae5;
  border-color: #047857;
  transform: translateY(-3px);
}

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

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

.posts-tag-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.posts-subtitle-dutch-learning {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

.card-post-dutch-learning:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.card-title-dutch-learning {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.card-description-dutch-learning {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-dutch-learning {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.meta-badge-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
}

.meta-badge-dutch i {
  font-size: 0.75rem;
}

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

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

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

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

.learning-path-tag-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.learning-steps-dutch-learning {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.learning-step-dutch-learning {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.learning-step-dutch-learning:hover {
  background: #f3f4f6;
  transform: translateX(8px);
}

.learning-step-number-dutch {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

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

.learning-step-title-dutch-learning {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.learning-step-text-dutch-learning {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

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

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

.methods-deco-accent-dutch {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  bottom: -10%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.methods-header-dutch-learning {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}

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

.methods-description-dutch-learning {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
}

.featured-quote-dutch-learning {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: clamp(2rem, 4vw, 3rem) 0;
  position: relative;
  z-index: 10;
  border-radius: 8px;
}

.featured-quote-dutch-learning p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-quote-dutch-learning cite {
  font-size: 0.9rem;
  color: #4b5563;
  font-style: normal;
  font-weight: 500;
}

.methods-content-dutch-learning {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.methods-text-dutch-learning {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methods-content-title-dutch-learning {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  color: #111827;
  font-weight: 700;
  line-height: 1.3;
}

.methods-content-text-dutch-learning {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.8;
}

.cta-section-dutch-learning {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-deco-glow-dutch {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.cta-content-dutch-learning {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

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

.cta-description-dutch-learning {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #f0fdf4;
  max-width: 600px;
  line-height: 1.7;
}

.cta-section-dutch-learning .btn-primary {
  background: #ffffff;
  color: #059669;
  margin-top: 0.5rem;
}

.cta-section-dutch-learning .btn-primary:hover {
  background: #f0fdf4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .hero-section-dutch-learning {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .posts-section-dutch-learning {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .learning-path-section-dutch-learning {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .methods-section-dutch-learning {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .cta-section-dutch-learning {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .card-post-dutch-learning {
    flex: 1 1 320px;
  }
}

@media (max-width: 768px) {
  .card-post-dutch-learning {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .hero-stats-dutch {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hero-cta-buttons-dutch {
    flex-direction: column;
  }
  
  .hero-cta-buttons-dutch .btn {
    width: 100%;
  }
}

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

.btn:focus-visible,
a:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

.main-actief-luisteren-nederlands {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.hero-section-actief-luisteren-nederlands {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-actief-luisteren-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-text-wrapper-actief-luisteren-nederlands {
  flex: 1 1 45%;
  min-width: 0;
}

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

.breadcrumb-link-actief-luisteren-nederlands {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-actief-luisteren-nederlands:hover {
  color: var(--color-primary-hover);
}

.breadcrumb-separator-actief-luisteren-nederlands {
  color: #cbd5e1;
}

.breadcrumb-current-actief-luisteren-nederlands {
  color: #64748b;
}

.hero-title-actief-luisteren-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
  font-weight: 700;
}

.hero-subtitle-actief-luisteren-nederlands {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-actief-luisteren-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-actief-luisteren-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-actief-luisteren-nederlands i {
  font-size: 0.875rem;
}

.hero-image-wrapper-actief-luisteren-nederlands {
  flex: 1 1 45%;
  min-width: 0;
}

.hero-image-actief-luisteren-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.hero-stats-actief-luisteren-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
}

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

.stat-number-actief-luisteren-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.stat-label-actief-luisteren-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.intro-section-actief-luisteren-nederlands {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-actief-luisteren-nederlands {
  flex: 1 1 50%;
}

.intro-title-actief-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.intro-description-actief-luisteren-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-image-actief-luisteren-nederlands {
  flex: 1 1 50%;
}

.intro-img-actief-luisteren-nederlands {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.techniques-section-actief-luisteren-nederlands {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.techniques-header-actief-luisteren-nederlands {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-actief-luisteren-nederlands {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.techniques-title-actief-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.techniques-subtitle-actief-luisteren-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.techniques-steps-actief-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.technique-step-actief-luisteren-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  align-items: flex-start;
}

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

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

.step-title-actief-luisteren-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.step-text-actief-luisteren-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.featured-quote-section-actief-luisteren-nederlands {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-actief-luisteren-nederlands {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin: 0 auto;
}

.quote-text-actief-luisteren-nederlands {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  font-style: italic;
  line-height: 1.8;
}

.quote-author-actief-luisteren-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

.benefits-section-actief-luisteren-nederlands {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.benefits-header-actief-luisteren-nederlands {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.benefits-title-actief-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

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

.benefits-card-actief-luisteren-nederlands {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.benefits-card-actief-luisteren-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-icon-actief-luisteren-nederlands {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

.card-text-actief-luisteren-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.practice-section-actief-luisteren-nederlands {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.practice-text-actief-luisteren-nederlands {
  flex: 1 1 50%;
}

.practice-title-actief-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.practice-description-actief-luisteren-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.practice-list-actief-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.practice-item-actief-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 0;
}

.practice-item-title-actief-luisteren-nederlands {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  font-weight: 600;
}

.practice-item-text-actief-luisteren-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.practice-image-actief-luisteren-nederlands {
  flex: 1 1 50%;
}

.practice-img-actief-luisteren-nederlands {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.implementation-section-actief-luisteren-nederlands {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.implementation-image-actief-luisteren-nederlands {
  flex: 1 1 50%;
}

.implementation-img-actief-luisteren-nederlands {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.implementation-text-actief-luisteren-nederlands {
  flex: 1 1 50%;
}

.implementation-title-actief-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.implementation-description-actief-luisteren-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.implementation-steps-actief-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.impl-step-actief-luisteren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
}

.impl-step-number-actief-luisteren-nederlands {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.impl-step-text-actief-luisteren-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.disclaimer-section-actief-luisteren-nederlands {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-actief-luisteren-nederlands {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-actief-luisteren-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-actief-luisteren-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.related-section-actief-luisteren-nederlands {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-header-actief-luisteren-nederlands {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-actief-luisteren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.related-subtitle-actief-luisteren-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

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

.related-card-actief-luisteren-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-actief-luisteren-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.related-card-image-actief-luisteren-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-actief-luisteren-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-actief-luisteren-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-card-link-actief-luisteren-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 0.25rem;
}

.related-card-link-actief-luisteren-nederlands:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .hero-content-actief-luisteren-nederlands {
    flex-direction: column;
  }
  
  .hero-text-wrapper-actief-luisteren-nederlands,
  .hero-image-wrapper-actief-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .intro-content-actief-luisteren-nederlands {
    flex-direction: column;
  }
  
  .intro-text-actief-luisteren-nederlands,
  .intro-image-actief-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .practice-content-wrapper-actief-luisteren-nederlands {
    flex-direction: column;
  }
  
  .practice-text-actief-luisteren-nederlands,
  .practice-image-actief-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .implementation-content-wrapper-actief-luisteren-Nederlands {
    flex-direction: column;
  }
  
  .implementation-image-actief-luisteren-nederlands,
  .implementation-text-actief-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .technique-step-actief-luisteren-nederlands {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-number-actief-luisteren-nederlands {
    min-width: auto;
  }
  
  .hero-stats-actief-luisteren-nederlands {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .breadcrumbs-actief-luisteren-nederlands {
    font-size: 0.75rem;
  }
  
  .related-card-actief-luisteren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-meta-actief-luisteren-nederlands {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .meta-badge-actief-luisteren-nederlands {
    width: 100%;
    justify-content: center;
  }
  
  .techniques-steps-actief-luisteren-nederlands {
    gap: 1rem;
  }
  
  .technique-step-actief-luisteren-nederlands {
    padding: 1rem;
  }
  
  .step-number-actief-luisteren-nederlands {
    font-size: 1.5rem;
  }
}

.main-woordenschat-uitbreiden-nederlands {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-woordenschat-uitbreiden-nederlands {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.hero-text-block-woordenschat-uitbreiden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.25rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.6;
}

.hero-meta-woordenschat-uitbreiden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-woordenschat-uitbreiden-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-woordenschat-uitbreiden-nederlands i {
  font-size: 0.875rem;
}

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

.stat-item-woordenschat-uitbreiden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
}

.stat-label-woordenschat-uitbreiden-nederlands {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

.hero-image-block-woordenschat-uitbreiden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-woordenschat-uitbreiden-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.breadcrumbs-woordenschat-uitbreiden-nederlands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-woordenschat-uitbreiden-nederlands {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-link-woordenschat-uitbreiden-nederlands:hover {
  color: #047857;
}

.breadcrumb-separator-woordenschat-uitbreiden-nederlands {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

.breadcrumb-current-woordenschat-uitbreiden-nederlands {
  color: #64748b;
  font-weight: 500;
}

.introduction-section-woordenschat-uitbreiden-nederlands {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-woordenschat-uitbreiden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.intro-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.intro-paragraph-woordenschat-uitbreiden-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

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

.intro-image-content-woordenschat-uitbreiden-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.methods-section-woordenschat-uitbreiden-nederlands {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.section-tag-woordenschat-uitbreiden-nederlands {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.methods-subtitle-woordenschat-uitbreiden-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.methods-list-woordenschat-uitbreiden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.method-step-woordenschat-uitbreiden-nederlands {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border-left: 4px solid #059669;
}

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

.method-content-woordenschat-uitbreiden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.method-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.25;
}

.method-text-woordenschat-uitbreiden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

.practices-section-woordenschat-uitbreiden-nederlands {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.practices-text-woordenschat-uitbreiden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.practices-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.practices-paragraph-woordenschat-uitbreiden-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.practices-highlight-woordenschat-uitbreiden-nederlands {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-left: 4px solid #10b981;
}

.highlight-title-woordenschat-uitbreiden-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.highlight-list-woordenschat-uitbreiden-nederlands {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item-woordenschat-uitbreiden-nederlands {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-woordenschat-uitbreiden-nederlands::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.practices-image-woordenschat-uitbreiden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.practices-image-content-woordenschat-uitbreiden-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.tools-section-woordenschat-uitbreiden-nederlands {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.tools-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-subtitle-woordenschat-uitbreiden-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.tool-card-woordenschat-uitbreiden-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.tool-card-woordenschat-uitbreiden-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #059669;
}

.tool-icon-woordenschat-uitbreiden-nederlands {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.tool-card-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.25;
}

.tool-card-text-woordenschat-uitbreiden-nederlands {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
}

.advanced-section-woordenschat-uitbreiden-nederlands {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.advanced-image-woordenschat-uitbreiden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-image-content-woordenschat-uitbreiden-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.advanced-text-woordenschat-uitbreiden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.advanced-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.advanced-paragraph-woordenschat-uitbreiden-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.featured-quote-woordenschat-uitbreiden-nederlands {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  margin: 1rem 0;
  border-radius: var(--radius-md);
}

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

.quote-author-woordenschat-uitbreiden-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.tracking-section-woordenschat-uitbreiden-nederlands {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.tracking-content-woordenschat-uitbreiden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tracking-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.tracking-intro-woordenschat-uitbreiden-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  max-width: 700px;
}

.tracking-metrics-woordenschat-uitbreiden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
}

.metric-item-woordenschat-uitbreiden-nederlands {
  flex: 1 1 280px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border-left: 4px solid #059669;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.metric-title-woordenschat-uitbreiden-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.metric-text-woordenschat-uitbreiden-nederlands {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
}

.tracking-image-woordenschat-uitbreiden-nederlands {
  max-width: 600px;
  margin-top: 1rem;
}

.tracking-image-content-woordenschat-uitbreiden-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.conclusion-section-woordenschat-uitbreiden-nederlands {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-woordenschat-uitbreiden-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.conclusion-text-woordenschat-uitbreiden-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  max-width: 700px;
}

.cta-box-woordenschat-uitbreiden-nederlands {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin: 1.5rem 0;
}

.cta-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-woordenschat-uitbreiden-nederlands {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
}

.btn-cta-woordenschat-uitbreiden-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #059669;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.btn-cta-woordenschat-uitbreiden-nederlands:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.key-takeaways-woordenschat-uitbreiden-nederlands {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
}

.takeaways-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.takeaways-list-woordenschat-uitbreiden-nederlands {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.takeaway-item-woordenschat-uitbreiden-nederlands {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  padding-left: 1.75rem;
  position: relative;
}

.takeaway-item-woordenschat-uitbreiden-nederlands::before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.disclaimer-section-woordenschat-uitbreiden-nederlands {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-box-woordenschat-uitbreiden-nederlands {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
  max-width: 800px;
}

.disclaimer-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.75rem;
}

.disclaimer-text-woordenschat-uitbreiden-nederlands {
  font-size: 0.9375rem;
  color: #78350f;
  line-height: 1.7;
}

.related-section-woordenschat-uitbreiden-nederlands {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-woordenschat-uitbreiden-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-woordenschat-uitbreiden-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  overflow: hidden;
}

.related-card-woordenschat-uitbreiden-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-woordenschat-uitbreiden-nederlands {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.related-card-title-woordenschat-uitbreiden-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-woordenschat-uitbreiden-nederlands {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-woordenschat-uitbreiden-nederlands {
  display: inline-flex;
  align-items: center;
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  margin-top: 0.75rem;
}

.related-link-woordenschat-uitbreiden-nederlands:hover {
  color: #047857;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-content-woordenschat-uitbreiden-nederlands,
  .introduction-content-woordenschat-uitbreiden-nederlands,
  .practices-wrapper-woordenschat-uitbreiden-nederlands,
  .advanced-wrapper-woordenschat-uitbreiden-nederlands {
    flex-direction: column;
  }

  .hero-text-block-woordenschat-uitbreiden-nederlands,
  .hero-image-block-woordenschat-uitbreiden-nederlands,
  .intro-text-woordenschat-uitbreiden-nederlands,
  .intro-image-woordenschat-uitbreiden-nederlands,
  .practices-text-woordenschat-uitbreiden-nederlands,
  .practices-image-woordenschat-uitbreiden-Nederlands,
  .advanced-text-woordenschat-uitbreiden-nederlands,
  .advanced-image-woordenschat-uitbreiden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-woordenschat-uitbreiden-nederlands {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-woordenschat-uitbreiden-nederlands {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }

  .stat-number-woordenschat-uitbreiden-nederlands {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .method-step-woordenschat-uitbreiden-nederlands {
    flex-direction: column;
    gap: 1rem;
  }

  .method-number-woordenschat-uitbreiden-nederlands {
    font-size: 2rem;
    min-width: auto;
  }

  .tools-cards-woordenschat-uitbreiden-nederlands {
    flex-direction: column;
  }

  .tool-card-woordenschat-uitbreiden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tracking-metrics-woordenschat-uitbreiden-nederlands {
    flex-direction: column;
  }

  .metric-item-woordenschat-uitbreiden-nederlands {
    flex: 1 1 100%;
  }

  .related-cards-woordenschat-uitbreiden-nederlands {
    flex-direction: column;
  }

  .related-card-woordenschat-uitbreiden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stats-woordenschat-uitbreiden-nederlands {
    gap: 1rem;
  }

  .stat-number-woordenschat-uitbreiden-nederlands {
    font-size: 1.5rem;
  }

  .stat-label-woordenschat-uitbreiden-nederlands {
    font-size: 0.75rem;
  }

  .highlight-list-woordenschat-uitbreiden-nederlands {
    gap: 0.5rem;
  }

  .breadcrumbs-woordenschat-uitbreiden-nederlands {
    font-size: 0.75rem;
  }
}

.main-conversatie-nederlands-spreken {
  width: 100%;
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
}

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

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

.breadcrumbs-conversatie-nederlands-spreken {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-conversatie-nederlands-spreken {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-conversatie-nederlands-spreken:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-conversatie-nederlands-spreken {
  color: #d1d5db;
  margin: 0 0.25rem;
}

.breadcrumb-current-conversatie-nederlands-spreken {
  color: #6b7280;
  font-weight: 500;
}

.hero-content-conversatie-nederlands-spreken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-wrapper-conversatie-nederlands-spreken {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-conversatie-nederlands-spreken {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: #111827;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-conversatie-nederlands-spreken {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.meta-badge-conversatie-nederlands-spreken {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-conversatie-nederlands-spreken i {
  font-size: 0.875rem;
}

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

.hero-image-conversatie-nederlands-spreken {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

.hero-stats-conversatie-nederlands-spreken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

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

.stat-number-conversatie-nederlands-spreken {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-label-conversatie-nederlands-spreken {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

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

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

.introduction-text-conversatie-nederlands-spreken {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-title-conversatie-nederlands-spreken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.introduction-description-conversatie-nederlands-spreken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.featured-quote-conversatie-nederlands-spreken {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #f3f4f6;
  margin: 1.5rem 0;
  font-style: italic;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-quote-conversatie-nederlands-spreken p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1e293b;
  line-height: 1.7;
  margin: 0;
}

.featured-quote-conversatie-nederlands-spreken cite {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: normal;
  font-weight: 500;
}

.introduction-image-conversatie-nederlands-spreken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-conversatie-nederlands-spreken {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

.process-section-conversatie-nederlands-spreken {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-header-conversatie-nederlands-spreken {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-conversatie-nederlands-spreken {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.process-title-conversatie-nederlands-spreken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle-conversatie-nederlands-spreken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps-conversatie-nederlands-spreken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-conversatie-nederlands-spreken {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step-conversatie-nederlands-spreken:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.process-step-number-conversatie-nederlands-spreken {
  font-size: 2.5rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  font-family: var(--font-heading);
}

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

.process-step-title-conversatie-nederlands-spreken {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.process-step-text-conversatie-nederlands-spreken {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
}

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

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

.techniques-text-conversatie-nederlands-spreken {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.techniques-title-conversatie-nederlands-spreken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.techniques-description-conversatie-nederlands-spreken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.techniques-list-conversatie-nederlands-spreken {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.technique-item-conversatie-nederlands-spreken {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.technique-item-conversatie-nederlands-spreken::before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
  font-size: 1.125rem;
}

.techniques-image-conversatie-nederlands-spreken {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-img-conversatie-nederlands-spreken {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

.practice-section-conversatie-nederlands-spreken {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-header-conversatie-nederlands-spreken {
  text-align: center;
  margin-bottom: 3rem;
}

.practice-title-conversatie-nederlands-spreken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

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

.practice-card-icon-conversatie-nederlands-spreken {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 12px;
  font-size: 1.5rem;
}

.practice-card-title-conversatie-nederlands-spreken {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.practice-card-text-conversatie-nederlands-spreken {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
}

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

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

.cultural-image-conversatie-nederlands-spreken {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.cultural-img-conversatie-nederlands-spreken {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

.cultural-text-conversatie-nederlands-spreken {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cultural-title-conversatie-nederlands-spreken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.cultural-description-conversatie-nederlands-spreken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.cultural-highlight-conversatie-nederlands-spreken {
  padding: 1.5rem;
  background: #f3f4f6;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.highlight-title-conversatie-nederlands-spreken {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.highlight-text-conversatie-nederlands-spreken {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.conclusion-section-conversatie-nederlands-spreken {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-conversatie-nederlands-spreken {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-conversatie-nederlands-spreken {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #111827;
  text-align: center;
  line-height: 1.2;
}

.conclusion-text-conversatie-nederlands-spreken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  text-align: center;
}

.cta-box-conversatie-nederlands-spreken {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 40px rgba(5, 150, 105, 0.2);
}

.cta-title-conversatie-nederlands-spreken {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.cta-text-conversatie-nederlands-spreken {
  font-size: 0.9375rem;
  color: #d1fae5;
  line-height: 1.6;
  margin: 0;
}

.cta-box-conversatie-nederlands-spreken .btn-primary {
  background: #ffffff;
  color: #059669;
  margin-top: 0.5rem;
  font-weight: 600;
}

.cta-box-conversatie-nederlands-spreken .btn-primary:hover {
  background: #f0fdf4;
  color: #047857;
}

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

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

.disclaimer-title-conversatie-nederlands-spreken {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-conversatie-nederlands-spreken {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.related-section-conversatie-nederlands-spreken {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-conversatie-nederlands-spreken {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-conversatie-nederlands-spreken {
  font-size: 0.9375rem;
  color: #4b5563;
}

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

.related-card-conversatie-nederlands-spreken {
  flex: 1 1 300px;
  max-width: 400px;
  display: block;
  text-decoration: none;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.related-card-conversatie-nederlands-spreken:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

.related-card-content-conversatie-nederlands-spreken {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-conversatie-nederlands-spreken {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-conversatie-nederlands-spreken {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.related-card-arrow-conversatie-nederlands-spreken {
  display: inline-block;
  color: #059669;
  font-weight: 700;
  margin-top: 0.5rem;
  transition: transform 0.2s ease;
}

.related-card-conversatie-nederlands-spreken:hover .related-card-arrow-conversatie-nederlands-spreken {
  transform: translateX(4px);
}

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

  .hero-text-wrapper-conversatie-nederlands-spreken,
  .hero-image-wrapper-conversatie-nederlands-spreken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-conversatie-nederlands-spreken {
    justify-content: space-around;
    gap: 1rem;
  }

  .introduction-wrapper-conversatie-nederlands-spreken,
  .techniques-wrapper-conversatie-Nederlands-spreken,
  .cultural-wrapper-conversatie-nederlands-spreken {
    flex-direction: column;
  }

  .introduction-text-conversatie-nederlands-spreken,
  .introduction-image-conversatie-nederlands-spreken,
  .techniques-text-conversatie-nederlands-spreken,
  .techniques-image-conversatie-nederlands-spreken,
  .cultural-image-conversatie-nederlands-spreken,
  .cultural-text-conversatie-nederlands-spreken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cultural-image-conversatie-nederlands-spreken {
    order: 0;
  }

  .process-step-conversatie-nederlands-spreken {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .process-step-number-conversatie-nederlands-spreken {
    font-size: 2rem;
  }

  .practice-card-conversatie-nederlands-spreken {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-conversatie-nederlands-spreken {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-stats-conversatie-nederlands-spreken {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .breadcrumbs-conversatie-nederlands-spreken {
    font-size: 0.75rem;
  }

  .process-step-conversatie-nederlands-spreken {
    padding: 1.5rem;
  }

  .cta-box-conversatie-nederlands-spreken {
    padding: 1.5rem;
  }
}

.main-nederlandse-grammatica-meesterschap {
  width: 100%;
  background: #f9fafb;
}

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

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

section {
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  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 {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

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

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

.btn-primary-nederlandse-grammatica-meesterschap {
  background: #059669;
  color: #ffffff;
}

.btn-primary-nederlandse-grammatica-meesterschap:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

ul {
  margin-left: 2rem;
}

li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

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

.breadcrumbs-nederlandse-grammatica-meesterschap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-nederlandse-grammatica-meesterschap {
  color: #059669;
  transition: color 0.2s ease;
}

.breadcrumb-link-nederlandse-grammatica-meesterschap:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-nederlandse-grammatica-meesterschap {
  color: #9ca3af;
}

.breadcrumb-current-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  font-weight: 500;
}

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

.hero-text-wrapper-nederlandse-grammatica-meesterschap {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-nederlandse-grammatica-meesterschap {
  color: #111827;
  margin-bottom: 1rem;
}

.hero-subtitle-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-meta-nederlandse-grammatica-meesterschap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-nederlandse-grammatica-meesterschap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-nederlandse-grammatica-meesterschap i {
  font-size: 0.875rem;
}

.hero-stats-nederlandse-grammatica-meesterschap {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

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

.stat-number-nederlandse-grammatica-meesterschap {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #059669;
  display: block;
}

.stat-label-nederlandse-grammatica-meesterschap {
  font-size: 0.875rem;
  color: #4b5563;
  opacity: 0.9;
}

.hero-image-wrapper-nederlandse-grammatica-meesterschap {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-nederlandse-grammatica-meesterschap {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

  .hero-text-wrapper-nederlandse-grammatica-meesterschap,
  .hero-image-wrapper-nederlandse-grammatica-meesterschap {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-nederlandse-grammatica-meesterschap {
    gap: 1.5rem;
  }
}

.introduction-section-nederlandse-grammatica-meesterschap {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

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

.introduction-text-nederlandse-grammatica-meesterschap {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-nederlandse-grammatica-meesterschap {
  color: #111827;
  margin-bottom: 1.5rem;
}

.introduction-paragraph-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.introduction-highlight-nederlandse-grammatica-meesterschap {
  flex: 1 1 50%;
  max-width: 50%;
}

.featured-quote-nederlandse-grammatica-meesterschap {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.quote-text-nederlandse-grammatica-meesterschap {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #111827;
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.quote-author-nederlandse-grammatica-meesterschap {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
}

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

  .introduction-text-nederlandse-grammatica-meesterschap,
  .introduction-highlight-nederlandse-grammatica-meesterschap {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.foundations-section-nederlandse-grammatica-meesterschap {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

.foundations-header-nederlandse-grammatica-meesterschap {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-nederlandse-grammatica-meesterschap {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.foundations-title-nederlandse-grammatica-meesterschap {
  color: #111827;
  margin-bottom: 0.5rem;
}

.foundations-subtitle-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.foundations-text-nederlandse-grammatica-meesterschap {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-heading-nederlandse-grammatica-meesterschap {
  color: #111827;
  margin: 1.5rem 0 1rem;
}

.foundations-paragraph-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.foundations-list-nederlandse-grammatica-meesterschap {
  margin: 1.5rem 0 1.5rem 2rem;
}

.list-item-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.foundations-image-nederlandse-grammatica-meesterschap {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-image-img-nederlandse-grammatica-meesterschap {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

  .foundations-text-nederlandse-grammatica-meesterschap,
  .foundations-image-nederlandse-grammatica-meesterschap {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.structure-section-nederlandse-grammatica-meesterschap {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

.structure-header-nederlandse-grammatica-meesterschap {
  text-align: center;
  margin-bottom: 3rem;
}

.structure-title-nederlandse-grammatica-meesterschap {
  color: #111827;
  margin-bottom: 0.5rem;
}

.structure-subtitle-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.structure-steps-nederlandse-grammatica-meesterschap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.structure-step-nederlandse-grammatica-meesterschap {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.structure-step-number-nederlandse-grammatica-meesterschap {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #059669;
  flex-shrink: 0;
  min-width: 60px;
}

.structure-step-content-nederlandse-grammatica-meesterschap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.structure-step-title-nederlandse-grammatica-meesterschap {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.structure-step-text-nederlandse-grammatica-meesterschap {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

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

  .structure-step-number-nederlandse-grammatica-meesterschap {
    min-width: auto;
  }
}

.verbs-section-nederlandse-grammatica-meesterschap {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

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

.verbs-image-nederlandse-grammatica-meesterschap {
  flex: 1 1 50%;
  max-width: 50%;
}

.verbs-image-img-nederlandse-grammatica-meesterschap {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.verbs-text-nederlandse-grammatica-meesterschap {
  flex: 1 1 50%;
  max-width: 50%;
}

.verbs-title-nederlandse-grammatica-meesterschap {
  color: #111827;
  margin-bottom: 1rem;
}

.verbs-paragraph-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.verbs-subheading-nederlandse-grammatica-meesterschap {
  color: #111827;
  margin: 1.5rem 0 0.75rem;
  font-size: 1.125rem;
}

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

  .verbs-image-nederlandse-grammatica-meesterschap,
  .verbs-text-nederlandse-grammatica-meesterschap {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cases-section-nederlandse-grammatica-meesterschap {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

.cases-header-nederlandse-grammatica-meesterschap {
  text-align: center;
  margin-bottom: 3rem;
}

.cases-title-nederlandse-grammatica-meesterschap {
  color: #111827;
  margin-bottom: 0.5rem;
}

.cases-subtitle-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.cases-card-nederlandse-grammatica-meesterschap {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cases-card-nederlandse-grammatica-meesterschap:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cases-card-icon-nederlandse-grammatica-meesterschap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
}

.cases-card-title-nederlandse-grammatica-meesterschap {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.cases-card-text-nederlandse-grammatica-meesterschap {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

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

.practice-section-nederlandse-grammatica-meesterschap {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

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

.practice-text-nederlandse-grammatica-meesterschap {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-nederlandse-grammatica-meesterschap {
  color: #111827;
  margin-bottom: 1rem;
}

.practice-paragraph-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.practice-tips-nederlandse-grammatica-meesterschap {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.practice-tips-title-nederlandse-grammatica-meesterschap {
  color: #111827;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.practice-tips-list-nederlandse-grammatica-meesterschap {
  margin-left: 2rem;
}

.practice-tip-item-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

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

.practice-image-img-nederlandse-grammatica-meesterschap {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

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

.conclusion-section-nederlandse-grammatica-meesterschap {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

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

.conclusion-title-nederlandse-grammatica-meesterschap {
  color: #111827;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-paragraph-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: center;
}

.conclusion-cta-nederlandse-grammatica-meesterschap {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  text-align: center;
  border: 1px solid #e5e7eb;
}

.cta-heading-nederlandse-grammatica-meesterschap {
  color: #111827;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.cta-paragraph-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.disclaimer-section-nederlandse-grammatica-meesterschap {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
}

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

.disclaimer-title-nederlandse-grammatica-meesterschap {
  color: #111827;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.related-section-nederlandse-grammatica-meesterschap {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

.related-header-nederlandse-grammatica-meesterschap {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-nederlandse-grammatica-meesterschap {
  color: #111827;
  margin-bottom: 0.5rem;
}

.related-subtitle-nederlandse-grammatica-meesterschap {
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-nederlandse-grammatica-meesterschap {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-nederlandse-grammatica-meesterschap:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.related-card-title-nederlandse-grammatica-meesterschap {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  padding: 0 1.25rem;
  padding-top: 1rem;
}

.related-card-text-nederlandse-grammatica-meesterschap {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
  padding: 0 1.25rem;
}

.related-card-link-nederlandse-grammatica-meesterschap {
  color: #059669;
  font-weight: 500;
  padding: 0 1.25rem 1.25rem;
  transition: color 0.2s ease;
}

.related-card-link-nederlandse-grammatica-meesterschap:hover {
  color: #047857;
}

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

@media (min-width: 768px) {
  section {
    padding: clamp(3rem, 7vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

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

.btn:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

.main-leesbegrip-nederlands-teksten {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-leesbegrip-nederlands-teksten {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.hero-text-wrapper-leesbegrip-nederlands-teksten {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-leesbegrip-nederlands-teksten {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-leesbegrip-nederlands-teksten {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.meta-badge-leesbegrip-nederlands-teksten {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-leesbegrip-nederlands-teksten i {
  font-size: 0.875rem;
}

.hero-image-leesbegrip-nederlands-teksten {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-leesbegrip-nederlands-teksten {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.breadcrumbs-leesbegrip-Nederlands-teksten {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-leesbegrip-nederlands-teksten {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-leesbegrip-nederlands-teksten:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-leesbegrip-nederlands-teksten {
  color: #9ca3af;
  margin: 0 0.25rem;
}

.breadcrumb-current-leesbegrip-nederlands-teksten {
  color: #4b5563;
}

.intro-section-leesbegrip-nederlands-teksten {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

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

.intro-title-leesbegrip-nederlands-teksten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-leesbegrip-nederlands-teksten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

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

.intro-img-leesbegrip-nederlands-teksten {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: block;
}

.fundamentals-section-leesbegrip-nederlands-teksten {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.fundamentals-header-leesbegrip-nederlands-teksten {
  text-align: center;
  margin-bottom: 3rem;
}

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

.fundamentals-subtitle-leesbegrip-nederlands-teksten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.technique-card-leesbegrip-nederlands-teksten {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.technique-number-leesbegrip-nederlands-teksten {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.technique-title-leesbegrip-nederlands-teksten {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.technique-text-leesbegrip-nederlands-teksten {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

.practice-section-leesbegrip-nederlands-teksten {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.practice-content-leesbegrip-nederlands-teksten {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-title-leesbegrip-nederlands-teksten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.practice-text-leesbegrip-nederlands-teksten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.practice-highlights-leesbegrip-nederlands-teksten {
  margin-top: 1rem;
}

.highlight-box-leesbegrip-nederlands-teksten {
  padding: 1.5rem;
  background: #d1fae5;
  border-left: 4px solid #059669;
  border-radius: 8px;
}

.highlight-text-leesbegrip-nederlands-teksten {
  font-size: 0.95rem;
  color: #047857;
  line-height: 1.7;
  margin: 0;
}

.practice-image-leesbegrip-nederlands-teksten {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-leesbegrip-nederlands-teksten {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: block;
}

.strategies-section-leesbegrip-nederlands-teksten {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.strategies-header-leesbegrip-nederlands-teksten {
  text-align: center;
  margin-bottom: 3rem;
}

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

.strategies-subtitle-leesbegrip-nederlands-teksten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.strategies-wrapper-leesbegrip-nederlands-teksten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.strategy-block-leesbegrip-nederlands-teksten {
  flex: 1 1 240px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: transform 0.3s ease;
}

.strategy-block-leesbegrip-nederlands-teksten:hover {
  transform: translateY(-3px);
}

.strategy-icon-leesbegrip-nederlands-teksten {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
  margin: 0 auto;
}

.strategy-block-title-leesbegrip-nederlands-teksten {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.strategy-block-text-leesbegrip-nederlands-teksten {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
}

.assessment-section-leesbegrip-nederlands-teksten {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.assessment-image-leesbegrip-nederlands-teksten {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.assessment-img-leesbegrip-nederlands-teksten {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: block;
}

.assessment-content-leesbegrip-nederlands-teksten {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.assessment-title-leesbegrip-nederlands-teksten {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.assessment-text-leesbegrip-nederlands-teksten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.assessment-checklist-leesbegrip-nederlands-teksten {
  padding: 1.5rem;
  background: #f3f4f6;
  border-radius: 8px;
  margin-top: 0.5rem;
}

.checklist-title-leesbegrip-nederlands-teksten {
  font-size: 0.95rem;
  color: #111827;
  margin-bottom: 1rem;
  font-weight: 600;
}

.checklist-items-leesbegrip-nederlands-teksten {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist-items-leesbegrip-nederlands-teksten li {
  font-size: 0.9375rem;
  color: #4b5563;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  line-height: 1.6;
}

.checklist-items-leesbegrip-nederlands-teksten li:before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.resources-section-leesbegrip-nederlands-teksten {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.resources-header-leesbegrip-nederlands-teksten {
  text-align: center;
  margin-bottom: 3rem;
}

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

.resources-subtitle-leesbegrip-nederlands-teksten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.resource-item-leesbegrip-nederlands-teksten {
  flex: 1 1 240px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.resource-icon-leesbegrip-nederlands-teksten {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
  margin: 0 auto;
}

.resource-item-title-leesbegrip-nederlands-teksten {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.resource-item-text-leesbegrip-nederlands-teksten {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
}

.conclusion-section-leesbegrip-nederlands-teksten {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-leesbegrip-nederlands-teksten {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.conclusion-title-leesbegrip-nederlands-teksten {
  font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
}

.conclusion-text-leesbegrip-nederlands-teksten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.conclusion-cta-leesbegrip-nederlands-teksten {
  margin-top: 1rem;
}

.cta-button-leesbegrip-nederlands-teksten {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-leesbegrip-nederlands-teksten:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.2);
}

.related-section-leesbegrip-nederlands-teksten {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

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

.related-subtitle-leesbegrip-nederlands-teksten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-leesbegrip-nederlands-teksten {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.related-card-image-leesbegrip-nederlands-teksten img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-leesbegrip-nederlands-teksten {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  padding: 0 1.5rem;
  padding-top: 1.5rem;
}

.related-card-text-leesbegrip-nederlands-teksten {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  padding: 0 1.5rem;
  flex-grow: 1;
}

.related-card-link-leesbegrip-nederlands-teksten {
  display: inline-block;
  padding: 1rem 1.5rem;
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.related-card-link-leesbegrip-nederlands-teksten:hover {
  color: #047857;
  transform: translateX(4px);
}

.disclaimer-section-leesbegrip-nederlands-teksten {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}

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

.disclaimer-title-leesbegrip-nederlands-teksten {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-leesbegrip-nederlands-teksten {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-leesbegrip-nederlands-teksten,
  .intro-wrapper-leesbegrip-nederlands-teksten,
  .practice-wrapper-leesbegrip-nederlands-teksten,
  .assessment-wrapper-leesbegrip-nederlands-teksten {
    flex-direction: column;
  }

  .hero-text-wrapper-leesbegrip-nederlands-teksten,
  .intro-text-leesbegrip-nederlands-teksten,
  .practice-content-leesbegrip-nederlands-teksten,
  .assessment-content-leesbegrip-nederlands-teksten,
  .hero-image-leesbegrip-nederlands-teksten,
  .intro-image-leesbegrip-nederlands-teksten,
  .practice-image-leesbegrip-nederlands-teksten,
  .assessment-image-leesbegrip-nederlands-teksten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .assessment-image-leesbegrip-nederlands-teksten {
    order: 0;
  }

  .techniques-grid-leesbegrip-nederlands-teksten,
  .strategies-wrapper-leesbegrip-nederlands-teksten,
  .resources-grid-leesbegrip-nederlands-teksten,
  .related-cards-leesbegrip-nederlands-teksten {
    flex-direction: column;
  }

  .technique-card-leesbegrip-nederlands-teksten,
  .strategy-block-leesbegrip-nederlands-teksten,
  .resource-item-leesbegrip-nederlands-teksten,
  .related-card-leesbegrip-nederlands-teksten {
    flex: 1 1 100%;
    max-width: none;
  }

  .meta-badge-leesbegrip-nederlands-teksten {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

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

.cta-button-leesbegrip-nederlands-teksten:focus-visible,
.related-card-link-leesbegrip-nederlands-teksten:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-bg-card: rgba(255, 255, 255, 0.03);
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  --color-primary: #f59e0b;
  --color-primary-hover: #fbbf24;
  --color-secondary: #3b82f6;
  --color-accent: #06b6d4;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

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

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

.taallab-about-main {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

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

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  max-width: 700px;
  line-height: 1.6;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0 0;
}

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

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

.journey-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

.journey-intro-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.timeline-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.timeline-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

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

.timeline-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.timeline-year-about {
  font-size: 1rem;
  font-weight: 600;
  color: #fbbf24;
}

.timeline-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.approach-content-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.approach-text-about {
  flex: 1 1 400px;
  min-width: 300px;
}

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

.approach-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.approach-image-about {
  flex: 1 1 350px;
  min-width: 300px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

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

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

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

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

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

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

.value-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
}

.value-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.value-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.value-description-about {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #94a3b8;
  line-height: 1.6;
}

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

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

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

.methods-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

.methods-intro-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.method-item-about {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-accent);
}

.method-number-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.method-title-about {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.method-description-about {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #94a3b8;
  line-height: 1.6;
}

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

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

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

.commitment-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.commitment-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.commitment-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.commitment-highlight-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.commitment-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2rem) auto 0;
}

.disclaimer-section-about {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
}

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

.disclaimer-icon-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

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

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 0.9375rem);
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 900px;
}

@media (min-width: 768px) {
  .hero-section-about {
    padding: 5rem 0;
  }
  .journey-section-about {
    padding: 5rem 0;
  }
  .approach-section-about {
    padding: 5rem 0;
  }
  .values-section-about {
    padding: 5rem 0;
  }
  .methods-section-about {
    padding: 5rem 0;
  }
  .commitment-section-about {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: 6rem 0;
  }
  .journey-section-about {
    padding: 6rem 0;
  }
  .approach-section-about {
    padding: 6rem 0;
  }
  .values-section-about {
    padding: 6rem 0;
  }
  .methods-section-about {
    padding: 6rem 0;
  }
  .commitment-section-about {
    padding: 6rem 0;
  }
}

.legal-portal {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

.legal-portal-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
}

.legal-portal-hero h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-portal-hero-date {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
}

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

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

.legal-portal-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-portal-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.25;
}

.legal-portal-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1.5rem;
}

.legal-portal-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.legal-portal-contact {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-accent-light);
  overflow: hidden;
}

.legal-portal-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-portal-contact h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.25;
}

.legal-portal-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.legal-portal-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-portal-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.legal-portal-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .legal-portal-hero {
    padding: 5rem 0;
  }

  .legal-portal-content {
    padding: 5rem 0;
  }

  .legal-portal-contact {
    padding: 5rem 0;
  }

  .legal-portal-section {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-portal-hero {
    padding: 6rem 0;
  }

  .legal-portal-content {
    padding: 6rem 0;
  }

  .legal-portal-contact {
    padding: 6rem 0;
  }

  .legal-portal-contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 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;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  background: var(--color-accent-light);
  border-radius: var(--radius-xl);
  animation: bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--color-primary);
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 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-primary);
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.5rem);
  font-family: var(--font-primary);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 500px;
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(5, 150, 105, 0.1);
}

.detail-item i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
}

.detail-item p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1rem);
  font-family: var(--font-primary);
  line-height: 1.5;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1.0625rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
  70% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    min-height: 100vh;
  }

  .thank-details {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2rem);
    margin: clamp(2rem, 4vw, 3rem) 0;
  }

  .detail-item {
    padding: clamp(1.25rem, 2.5vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-icon {
    width: 120px;
    height: 120px;
  }
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.error-code-wrapper {
  position: relative;
  margin: clamp(1rem, 4vw, 2rem) 0;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -2px;
  margin: 0;
  padding: 0;
  text-shadow: 
    0 10px 20px rgba(5, 150, 105, 0.15),
    0 -2px 5px rgba(5, 150, 105, 0.05);
}

.error-code-underline {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: clamp(0.75rem, 2vw, 1.5rem) auto;
  width: clamp(120px, 30vw, 200px);
  border-radius: var(--radius-lg);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: clamp(1rem, 3vw, 1.5rem) 0;
  line-height: 1.2;
}

.error-message {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: clamp(1rem, 3vw, 1.5rem) auto;
  max-width: 550px;
  font-weight: 500;
}

.error-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  margin: clamp(2rem, 5vw, 3rem) auto;
  width: 100%;
  max-width: 500px;
}

.error-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.error-feature:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 16px rgba(5, 150, 105, 0.1);
  transform: translateY(-2px);
}

.error-feature i {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-primary);
}

.error-feature span {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: var(--color-text-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-large {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 5vw, 3rem) !important;
  margin: clamp(1.5rem, 4vw, 2rem) 0;
  display: inline-block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: 0 12px 24px rgba(5, 150, 105, 0.25);
  transform: translateY(-3px);
}

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

.error-decoration {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-accent-light);
  opacity: 0.6;
  margin: clamp(1rem, 3vw, 1.5rem) 0;
  animation: float 3s ease-in-out infinite;
}

.error-decoration-bottom {
  animation-delay: 0.5s;
}

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

.error-hint {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 2px solid #e5e7eb;
  max-width: 550px;
}

.error-hint strong {
  color: var(--color-primary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .error-code {
    text-shadow: 
      0 15px 30px rgba(5, 150, 105, 0.2),
      0 -2px 8px rgba(5, 150, 105, 0.08);
  }

  .error-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .error-feature {
    padding: 1.5rem;
  }

  .error-feature:hover {
    box-shadow: 0 12px 24px rgba(5, 150, 105, 0.15);
  }
}

@media (min-width: 1024px) {
  .error-section {
    min-height: 100vh;
    padding: 0;
  }

  .error-content {
    min-height: 100vh;
    justify-content: center;
  }

  .error-code {
    text-shadow: 
      0 20px 40px rgba(5, 150, 105, 0.25),
      0 -3px 10px rgba(5, 150, 105, 0.1);
  }

  .error-feature {
    padding: 2rem 1.5rem;
  }

  .error-decoration {
    font-size: 4rem;
  }
}

@media (min-width: 1440px) {
  .error-code {
    text-shadow: 
      0 25px 50px rgba(5, 150, 105, 0.3),
      0 -3px 12px rgba(5, 150, 105, 0.12);
  }
}

@media (max-height: 600px) and (min-width: 768px) {
  .error-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .error-content {
    min-height: auto;
  }

  .error-code {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .error-decoration {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration,
  .error-feature,
  .btn-large {
    animation: none;
    transition: none;
  }
}

@media (prefers-contrast: more) {
  .error-section {
    background: #ffffff;
  }

  .error-code {
    color: #000000;
  }

  .error-feature {
    border-width: 2px;
    border-color: #000000;
  }

  .btn-primary {
    border-width: 2px;
  }
}