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

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0d9488;
  --color-accent: #f59e0b;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

h5 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-primary);
}

h6 {
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-primary);
}

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

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

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

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

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

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

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

.btn-secondary:hover {
  background: #0a8a7a;
  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-primary);
  color: #ffffff;
}

.btn-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}

.btn-light:hover {
  background: var(--color-bg-tertiary);
  box-shadow: var(--shadow-md);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

.card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

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

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

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

.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 {
  display: flex;
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  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(37, 99, 235, 0.1);
}

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

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

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

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

.form-submit-btn {
  align-self: flex-start;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: inherit;
}

.icon-lg {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-xl {
  width: 3.5rem;
  height: 3.5rem;
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-secondary);
}

.divider {
  height: 1px;
  background: var(--color-bg-tertiary);
  margin: var(--space-lg) 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  }

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

  h3 {
    font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.75rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0d9488;
  --color-accent: #f59e0b;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.08);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
}

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

.header-taal-portal {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-bg-tertiary);
  position: relative;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.header-taal-portal-logo-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

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

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

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

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

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

.header-taal-portal-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-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 300ms ease;
  white-space: nowrap;
  flex-shrink: 0;
}

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

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

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

.header-taal-portal-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-taal-portal-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.header-taal-portal-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms ease;
  z-index: 99;
  overflow-y: auto;
  padding-top: clamp(3.5rem, 8vw, 5rem);
}

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

.header-taal-portal-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 4vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--color-bg-tertiary);
  position: sticky;
  top: 0;
  background: var(--color-bg-primary);
  z-index: 1;
}

.header-taal-portal-mobile-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

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

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

.header-taal-portal-mobile-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.header-taal-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.header-taal-portal-mobile-link {
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 4vw, 2rem);
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-bg-tertiary);
  font-size: clamp(0.875rem, 1vw, 1.0625rem);
  font-weight: 500;
  transition: all 200ms ease;
  display: block;
}

.header-taal-portal-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
}

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

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

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

.header-taal-portal-mobile-cta:active {
  transform: translateY(0);
}

.header-taal-portal-mobile-cta:focus-visible {
  outline: 2px solid var(--color-primary-hover);
  outline-offset: 2px;
}

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

  .header-taal-portal-cta-button {
    display: inline-block;
  }

  .header-taal-portal-mobile-toggle {
    display: none;
  }

  .header-taal-portal-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header-taal-portal-container {
    gap: 1rem;
  }

  .header-taal-portal-brand {
    gap: 0.5rem;
  }

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

  .header-taal-portal-logo-text {
    font-size: 1rem;
  }
}

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

  .header-taal-portal-nav-link::after {
    display: none;
  }
}

    .dutch-learning-hub {
font-family: var(--font-primary);
color: var(--color-text-primary);
background: var(--color-bg-primary);
}

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

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

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

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

.hero-shape-blob-index {
position: absolute;
bottom: 20%;
right: 5%;
width: 200px;
height: 200px;
background: rgba(59, 130, 246, 0.05);
border-radius: 45% 55% 50% 50% / 50% 50% 55% 45%;
z-index: 1;
pointer-events: none;
}

.hero-light-ray-index {
position: absolute;
top: 50%;
right: 20%;
width: 150px;
height: 3px;
background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
transform: rotate(45deg);
z-index: 2;
pointer-events: none;
}

.hero-corner-element-index {
position: absolute;
top: 5%;
left: 5%;
width: 100px;
height: 100px;
border: 2px solid rgba(139, 92, 246, 0.1);
border-radius: 12px;
transform: rotate(15deg);
z-index: 2;
pointer-events: none;
}

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

.hero-title-index {
font-family: var(--font-heading);
font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
font-weight: 700;
color: #0f172a;
line-height: 1.1;
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.hero-stats-index {
display: flex;
flex-wrap: wrap;
gap: clamp(2rem, 4vw, 3.5rem);
justify-content: center;
margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

.hero-stat-number-index {
display: block;
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 800;
color: #2563eb;
line-height: 1;
}

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

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

.btn-primary-index {
display: inline-flex;
align-items: center;
justify-content: center;
padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
background: #2563eb;
color: #ffffff;
border-radius: 8px;
font-weight: 600;
font-size: clamp(0.9375rem, 1vw, 1.125rem);
text-decoration: none;
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-index:hover {
background: #1d4ed8;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary-index {
display: inline-flex;
align-items: center;
justify-content: center;
padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
background: transparent;
border: 2px solid #2563eb;
color: #2563eb;
border-radius: 8px;
font-weight: 600;
font-size: clamp(0.9375rem, 1vw, 1.125rem);
text-decoration: none;
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary-index:hover {
background: #2563eb;
color: #ffffff;
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

@media (max-width: 768px) {
.hero-buttons-index {
gap: 0.75rem;
}
}

.why-dutch-section-index {
position: relative;
padding: clamp(4rem, 10vw, 6rem) 0;
background: #ffffff;
overflow: hidden;
}

.why-dutch-decoration-1-index {
position: absolute;
top: 5%;
left: -100px;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
filter: blur(60px);
z-index: 1;
pointer-events: none;
}

.why-dutch-decoration-2-index {
position: absolute;
bottom: 10%;
right: -50px;
width: 280px;
height: 280px;
background: rgba(20, 184, 166, 0.05);
border-radius: 55% 45% 52% 48% / 48% 52% 48% 52%;
z-index: 1;
pointer-events: none;
}

.why-dutch-decoration-3-index {
position: absolute;
top: 50%;
right: 5%;
width: 150px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.15), transparent);
z-index: 2;
pointer-events: none;
}

.why-dutch-decoration-4-index {
position: absolute;
bottom: 15%;
left: 10%;
width: 120px;
height: 120px;
border: 2px solid rgba(59, 130, 246, 0.1);
border-radius: 16px;
z-index: 2;
pointer-events: none;
}

.why-dutch-content-index {
position: relative;
z-index: 10;
display: flex;
flex-wrap: wrap;
gap: clamp(3rem, 6vw, 5rem);
align-items: center;
}

.why-dutch-text-block-index {
flex: 1 1 300px;
min-width: 0;
}

.why-dutch-title-index {
font-family: var(--font-heading);
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: #0f172a;
line-height: 1.2;
margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.why-dutch-description-index {
font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
color: #475569;
line-height: 1.7;
margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.why-dutch-benefits-index {
display: flex;
flex-direction: column;
gap: clamp(1.25rem, 2vw, 1.75rem);
}

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

.why-dutch-benefit-item-index i {
font-size: 1.5rem;
color: #2563eb;
margin-top: 0.25rem;
}

.benefit-title-index {
font-size: clamp(1rem, 1.5vw, 1.125rem);
font-weight: 600;
color: #1e293b;
margin-bottom: 0.25rem;
}

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

.why-dutch-image-block-index {
flex: 1 1 300px;
min-width: 0;
}

.why-dutch-image-index {
width: 100%;
height: auto;
max-width: 450px;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
object-fit: cover;
}

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

.why-dutch-image-block-index {
flex: 1 1 100%;
}
}

.learning-path-section-index {
position: relative;
padding: clamp(4rem, 10vw, 6rem) 0;
background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
overflow: hidden;
}

.learning-path-decoration-1-index {
position: absolute;
top: 10%;
right: -120px;
width: 350px;
height: 350px;
background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
filter: blur(75px);
z-index: 1;
pointer-events: none;
}

.learning-path-decoration-2-index {
position: absolute;
bottom: 5%;
left: -80px;
width: 300px;
height: 300px;
background: rgba(20, 184, 166, 0.06);
border-radius: 50% 50% 50% 50% / 45% 55% 45% 55%;
z-index: 1;
pointer-events: none;
}

.learning-path-decoration-3-index {
position: absolute;
top: 30%;
left: 15%;
width: 100px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.12), transparent);
z-index: 2;
pointer-events: none;
}

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

.learning-path-tag-index {
display: inline-block;
padding: 0.375rem 1rem;
background: rgba(37, 99, 235, 0.1);
color: #2563eb;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 500;
margin-bottom: 1rem;
}

.learning-path-title-index {
font-family: var(--font-heading);
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: #0f172a;
line-height: 1.2;
margin-bottom: 1rem;
}

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

.learning-path-steps-index {
position: relative;
z-index: 10;
display: flex;
flex-direction: column;
gap: clamp(1rem, 2vw, 1.5rem);
}

.learning-path-step-index {
display: flex;
gap: clamp(1.5rem, 3vw, 2rem);
align-items: flex-start;
padding: clamp(1.25rem, 2vw, 1.75rem);
background: #ffffff;
border-radius: 12px;
border: 1px solid #e2e8f0;
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.learning-path-step-index:hover {
border-color: rgba(37, 99, 235, 0.3);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.learning-path-step-number-index {
font-family: var(--font-heading);
font-size: clamp(2rem, 4vw, 2.75rem);
font-weight: 800;
color: #2563eb;
line-height: 1;
flex-shrink: 0;
min-width: 70px;
}

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

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

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

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

.learning-path-step-number-index {
margin-bottom: 0;
}
}

.featured-resources-section-index {
position: relative;
padding: clamp(4rem, 10vw, 6rem) 0;
background: #ffffff;
overflow: hidden;
}

.featured-resources-decoration-1-index {
position: absolute;
top: 0;
right: -150px;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
filter: blur(80px);
z-index: 1;
pointer-events: none;
}

.featured-resources-decoration-2-index {
position: absolute;
bottom: 10%;
left: -80px;
width: 300px;
height: 300px;
background: rgba(139, 92, 246, 0.06);
border-radius: 55% 45% 50% 50% / 50% 50% 45% 55%;
z-index: 1;
pointer-events: none;
}

.featured-resources-decoration-3-index {
position: absolute;
top: 40%;
right: 10%;
width: 150px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.12), transparent);
z-index: 2;
pointer-events: none;
}

.featured-resources-decoration-4-index {
position: absolute;
bottom: 20%;
right: 5%;
width: 120px;
height: 120px;
border: 2px solid rgba(139, 92, 246, 0.08);
border-radius: 14px;
transform: rotate(-20deg);
z-index: 2;
pointer-events: none;
}

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

.featured-resources-tag-index {
display: inline-block;
padding: 0.375rem 1rem;
background: rgba(20, 184, 166, 0.1);
color: #0d9488;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 500;
margin-bottom: 1rem;
}

.featured-resources-title-index {
font-family: var(--font-heading);
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: #0f172a;
line-height: 1.2;
margin-bottom: 1rem;
}

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

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

.featured-resources-card-index {
flex: 1 1 300px;
max-width: 400px;
display: flex;
flex-direction: column;
gap: 1.25rem;
background: #ffffff;
border-radius: 12px;
border: 1px solid #e2e8f0;
overflow: hidden;
transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-resources-card-index:hover {
border-color: rgba(37, 99, 235, 0.3);
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
transform: translateY(-6px);
}

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

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

.featured-resources-card-title-index {
font-size: clamp(1.125rem, 2vw, 1.375rem);
font-weight: 600;
color: #1e293b;
line-height: 1.3;
}

.featured-resources-card-text-index {
font-size: clamp(0.875rem, 1vw, 1rem);
color: #64748b;
line-height: 1.6;
flex: 1;
}

.featured-card-link-index {
display: inline-flex;
align-items: center;
color: #2563eb;
font-weight: 600;
font-size: 0.9375rem;
text-decoration: none;
transition: all 300ms ease-in-out;
}

.featured-card-link-index:hover {
color: #1d4ed8;
gap: 0.5rem;
}

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

.featured-resources-view-all-index {
display: inline-flex;
align-items: center;
justify-content: center;
padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
background: transparent;
border: 2px solid #2563eb;
color: #2563eb;
border-radius: 8px;
font-weight: 600;
font-size: clamp(0.9375rem, 1vw, 1.125rem);
text-decoration: none;
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-resources-view-all-index:hover {
background: #2563eb;
color: #ffffff;
transform: translateY(-2px);
}

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

.learning-approach-section-index {
position: relative;
padding: clamp(4rem, 10vw, 6rem) 0;
background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
overflow: hidden;
}

.learning-approach-decoration-1-index {
position: absolute;
top: 5%;
left: -100px;
width: 350px;
height: 350px;
background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
filter: blur(75px);
z-index: 1;
pointer-events: none;
}

.learning-approach-decoration-2-index {
position: absolute;
bottom: 10%;
right: -80px;
width: 300px;
height: 300px;
background: rgba(59, 130, 246, 0.06);
border-radius: 48% 52% 45% 55% / 55% 45% 55% 45%;
z-index: 1;
pointer-events: none;
}

.learning-approach-decoration-3-index {
position: absolute;
top: 50%;
left: 5%;
width: 120px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.12), transparent);
transform: rotate(-30deg);
z-index: 2;
pointer-events: none;
}

.learning-approach-content-index {
position: relative;
z-index: 10;
display: flex;
flex-wrap: wrap;
gap: clamp(3rem, 6vw, 5rem);
align-items: center;
}

.learning-approach-text-block-index {
flex: 1 1 300px;
min-width: 0;
}

.learning-approach-title-index {
font-family: var(--font-heading);
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: #0f172a;
line-height: 1.2;
margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.learning-approach-quote-index {
padding: clamp(1.5rem, 2vw, 2rem) clamp(1.25rem, 2vw, 1.75rem);
border-left: 4px solid #2563eb;
background: rgba(37, 99, 235, 0.05);
border-radius: 8px;
margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

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

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

.learning-approach-description-index {
font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
color: #475569;
line-height: 1.7;
margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.learning-approach-features-index {
display: flex;
flex-wrap: wrap;
gap: clamp(1rem, 2vw, 1.5rem);
}

.learning-approach-feature-item-index {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1.25rem;
background: #ffffff;
border-radius: 8px;
border: 1px solid #e2e8f0;
font-size: clamp(0.875rem, 1vw, 1rem);
color: #1e293b;
font-weight: 500;
}

.learning-approach-feature-item-index i {
color: #2563eb;
font-size: 1.25rem;
}

.learning-approach-image-block-index {
flex: 1 1 300px;
min-width: 0;
}

.learning-approach-image-index {
width: 100%;
height: auto;
max-width: 450px;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
object-fit: cover;
}

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

.learning-approach-image-block-index {
flex: 1 1 100%;
}
}

.student-testimonials-section-index {
position: relative;
padding: clamp(4rem, 10vw, 6rem) 0;
background: #ffffff;
overflow: hidden;
}

.testimonials-decoration-1-index {
position: absolute;
top: -50px;
right: -100px;
width: 350px;
height: 350px;
background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
filter: blur(75px);
z-index: 1;
pointer-events: none;
}

.testimonials-decoration-2-index {
position: absolute;
bottom: 5%;
left: -80px;
width: 280px;
height: 280px;
background: rgba(20, 184, 166, 0.05);
border-radius: 50% 50% 48% 52% / 52% 48% 52% 48%;
z-index: 1;
pointer-events: none;
}

.testimonials-decoration-3-index {
position: absolute;
top: 30%;
right: 5%;
width: 120px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
z-index: 2;
pointer-events: none;
}

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

.testimonials-tag-index {
display: inline-block;
padding: 0.375rem 1rem;
background: rgba(139, 92, 246, 0.1);
color: #7c3aed;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 500;
margin-bottom: 1rem;
}

.testimonials-title-index {
font-family: var(--font-heading);
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: #0f172a;
line-height: 1.2;
}

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

.testimonials-card-index {
flex: 1 1 280px;
max-width: 380px;
display: flex;
flex-direction: column;
gap: 1rem;
padding: clamp(1.5rem, 2vw, 2rem);
background: #ffffff;
border-radius: 12px;
border: 1px solid #e2e8f0;
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-card-index:hover {
border-color: rgba(139, 92, 246, 0.3);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
transform: translateY(-4px);
}

.testimonials-stars-index {
display: flex;
gap: 0.25rem;
}

.testimonials-stars-index i {
color: #fbbf24;
font-size: 0.875rem;
}

.testimonials-quote-index {
font-size: clamp(0.9375rem, 1vw, 1.125rem);
color: #1e293b;
line-height: 1.7;
font-style: italic;
}

.testimonials-author-index {
font-size: clamp(0.9375rem, 1vw, 1rem);
font-weight: 600;
color: #0f172a;
margin-top: 0.5rem;
}

.testimonials-role-index {
font-size: 0.875rem;
color: #64748b;
}

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

.faq-section-index {
position: relative;
padding: clamp(4rem, 10vw, 6rem) 0;
background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
overflow: hidden;
}

.faq-decoration-1-index {
position: absolute;
top: 10%;
left: -120px;
width: 350px;
height: 350px;
background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
filter: blur(75px);
z-index: 1;
pointer-events: none;
}

.faq-decoration-2-index {
position: absolute;
bottom: 10%;
right: -80px;
width: 300px;
height: 300px;
background: rgba(20, 184, 166, 0.06);
border-radius: 52% 48% 50% 50% / 50% 50% 48% 52%;
z-index: 1;
pointer-events: none;
}

.faq-decoration-3-index {
position: absolute;
top: 40%;
left: 10%;
width: 100px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
z-index: 2;
pointer-events: none;
}

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

.faq-tag-index {
display: inline-block;
padding: 0.375rem 1rem;
background: rgba(251, 146, 60, 0.1);
color: #ea580c;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 500;
margin-bottom: 1rem;
}

.faq-title-index {
font-family: var(--font-heading);
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: #0f172a;
line-height: 1.2;
margin-bottom: 1rem;
}

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

.faq-content-index {
position: relative;
z-index: 10;
display: flex;
flex-wrap: wrap;
gap: clamp(3rem, 6vw, 4rem);
}

.faq-questions-block-index {
flex: 1 1 350px;
min-width: 0;
display: flex;
flex-direction: column;
gap: clamp(1.25rem, 2vw, 1.75rem);
}

.faq-item-index {
padding: clamp(1.25rem, 2vw, 1.75rem);
background: #ffffff;
border-radius: 10px;
border: 1px solid #e2e8f0;
}

.faq-question-index {
font-size: clamp(1rem, 1.5vw, 1.125rem);
font-weight: 600;
color: #1e293b;
margin-bottom: 0.75rem;
cursor: pointer;
}

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

.faq-info-block-index {
flex: 1 1 350px;
display: flex;
flex-direction: column;
gap: clamp(1.25rem, 2vw, 1.75rem);
}

.faq-info-card-index {
display: flex;
gap: 1rem;
padding: clamp(1.25rem, 2vw, 1.75rem);
background: #ffffff;
border-radius: 10px;
border: 1px solid #e2e8f0;
align-items: flex-start;
}

.faq-info-card-index i {
font-size: 1.5rem;
color: #2563eb;
margin-top: 0.25rem;
flex-shrink: 0;
}

.faq-info-title-index {
font-size: clamp(1rem, 1.5vw, 1.125rem);
font-weight: 600;
color: #1e293b;
margin-bottom: 0.25rem;
}

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

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

.faq-questions-block-index,
.faq-info-block-index {
flex: 1 1 100%;
}
}

.contact-section-index {
position: relative;
padding: clamp(4rem, 10vw, 6rem) 0;
background: #0f172a;
overflow: hidden;
}

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

.contact-decoration-2-index {
position: absolute;
bottom: 10%;
left: -80px;
width: 300px;
height: 300px;
background: rgba(6, 182, 212, 0.08);
border-radius: 55% 45% 52% 48% / 48% 52% 48% 52%;
z-index: 1;
pointer-events: none;
}

.contact-decoration-3-index {
position: absolute;
top: 40%;
right: 10%;
width: 120px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.15), transparent);
z-index: 2;
pointer-events: none;
}

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

.contact-tag-index {
display: inline-block;
padding: 0.375rem 1rem;
background: rgba(6, 182, 212, 0.15);
color: #06b6d4;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 500;
margin-bottom: 1rem;
}

.contact-title-index {
font-family: var(--font-heading);
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
color: #ffffff;
line-height: 1.2;
margin-bottom: 1rem;
}

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

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

.contact-form-wrapper-index {
flex: 1 1 350px;
min-width: 0;
}

.contact-form-index {
display: flex;
flex-direction: column;
gap: clamp(1.25rem, 2vw, 1.5rem);
width: 100%;
}

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

.contact-form-label-index {
font-size: clamp(0.875rem, 1vw, 1rem);
font-weight: 500;
color: #e2e8f0;
}

.contact-form-input-index,
.contact-form-textarea-index {
width: 100%;
padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.25rem);
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
color: #ffffff;
font-family: var(--font-primary);
font-size: clamp(0.9375rem, 1vw, 1.125rem);
transition: all 300ms ease;
}

.contact-form-input-index::placeholder,
.contact-form-textarea-index::placeholder {
color: rgba(255, 255, 255, 0.4);
}

.contact-form-input-index:focus,
.contact-form-textarea-index:focus {
outline: none;
border-color: rgba(6, 182, 212, 0.5);
background: rgba(255, 255, 255, 0.08);
box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

.contact-form-submit-index {
align-self: flex-start;
padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
background: #06b6d4;
color: #0f172a;
border: none;
border-radius: 8px;
font-weight: 600;
font-size: clamp(0.9375rem, 1vw, 1.125rem);
cursor: pointer;
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
font-family: var(--font-primary);
}

.contact-form-submit-index:hover {
background: #0891b2;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

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

.contact-info-block-index {
flex: 1 1 350px;
display: flex;
flex-direction: column;
gap: clamp(1.25rem, 2vw, 1.75rem);
}

.contact-info-title-index {
font-family: var(--font-heading);
font-size: clamp(1.25rem, 2vw, 1.5rem);
font-weight: 600;
color: #ffffff;
margin-bottom: 0.5rem;
}

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

.contact-info-item-index i {
font-size: 1.5rem;
color: #06b6d4;
margin-top: 0.25rem;
flex-shrink: 0;
}

.contact-info-text-index {
display: flex;
flex-direction: column;
gap: 0.25rem;
flex: 1;
}

.contact-info-subtitle-index {
font-size: clamp(0.9375rem, 1vw, 1.125rem);
font-weight: 600;
color: #e2e8f0;
}

.contact-info-description-index {
font-size: clamp(0.875rem, 1vw, 1rem);
color: #cbd5e1;
line-height: 1.6;
}

.cookie-policy-link-index {
color: #06b6d4;
text-decoration: underline;
transition: color 300ms ease;
}

.cookie-policy-link-index:hover {
color: #0891b2;
}

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

.contact-form-wrapper-index,
.contact-info-block-index {
flex: 1 1 100%;
}

.contact-form-submit-index {
width: 100%;
}
}

.cookie-banner-index {
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);
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner-text-index {
flex: 1 1 300px;
font-size: clamp(0.875rem, 1vw, 1rem);
color: #cbd5e1;
line-height: 1.5;
}

.cookie-banner-buttons-index {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
flex-shrink: 0;
}

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

.cookie-btn-accept-index {
background: #06b6d4;
color: #0f172a;
}

.cookie-btn-accept-index:hover {
background: #0891b2;
}

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

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

@media (max-width: 768px) {
.cookie-banner-index {
gap: 0.5rem;
}

.cookie-banner-text-index {
flex: 1 1 100%;
}

.cookie-banner-buttons-index {
width: 100%;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
flex: 1;
}
}

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

    .footer {
    background: var(--color-bg-primary);
    border-top: 1px solid var(--color-bg-tertiary);
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

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

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

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

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

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

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

  .footer-nav-title,
  .footer-contact-title,
  .footer-legal-title {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 1rem 0;
  }

  .footer-nav-links,
  .footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-nav-link,
  .footer-legal-link {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
  }

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

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

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

  .footer-contact-item {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin: 0;
  }

  .footer-divider {
    height: 1px;
    background: var(--color-bg-tertiary);
    margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  }

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

  .footer-copyright-text {
    font-family: var(--font-primary);
    font-size: clamp(0.8125rem, 1vw, 0.875rem);
    color: var(--color-text-muted);
    margin: 0;
  }

  @media (max-width: 767px) {
    .footer-content {
      flex-direction: column;
      gap: clamp(1.5rem, 4vw, 2.5rem);
    }

    .footer-about-section {
      order: -1;
    }

    .footer-about-title {
      font-size: 1.25rem;
    }

    .footer-about-text {
      font-size: 0.875rem;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .footer-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .footer-about-section {
      grid-column: 1 / -1;
    }
  }

  @media (min-width: 1024px) {
    .footer-content {
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-between;
      gap: 3rem;
    }

    .footer-about-section {
      flex: 0 1 320px;
    }

    .footer-navigation-section,
    .footer-contact-section,
    .footer-legal-section {
      flex: 0 1 200px;
    }
  }

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

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

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

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

.hero-decorative-glow-2 {
  position: absolute;
  bottom: 5%;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-decorative-line-accent {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-subtitle-dutch-learning {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-stats-dutch-learning {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin: 2.5rem 0 3rem 0;
}

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

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

.hero-stat-label-dutch-learning {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero-buttons-dutch-learning {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-buttons-dutch-learning .btn {
  min-width: 150px;
}

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

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

.posts-decorative-glow-1 {
  position: absolute;
  top: 15%;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.posts-decorative-shape-1 {
  position: absolute;
  top: 40%;
  right: -40px;
  width: 250px;
  height: 250px;
  background: rgba(13, 148, 136, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.posts-decorative-shape-2 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 200px;
  height: 150px;
  background: rgba(59, 130, 246, 0.03);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.posts-tag-dutch-learning {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

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

.posts-card-dutch-learning:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

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

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

.posts-meta-badge-dutch-learning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(59, 130, 246, 0.08);
  color: #2563eb;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

.posts-meta-badge-dutch-learning i {
  font-size: 0.85rem;
}

.posts-card-title-dutch-learning {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  min-height: 2.6rem;
}

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

.posts-card-link-dutch-learning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.posts-card-link-dutch-learning:hover {
  color: #1d4ed8;
  gap: 0.75rem;
}

.posts-card-link-dutch-learning::after {
  content: "";
  transition: transform 0.3s ease;
}

.posts-card-link-dutch-learning:hover::after {
  transform: translateX(3px);
}

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

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

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

.learning-decorative-glow-1 {
  position: absolute;
  top: 20%;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.learning-decorative-shape-1 {
  position: absolute;
  bottom: 15%;
  left: -50px;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.learning-tag-dutch-learning {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.learning-steps-dutch-learning {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.learning-step-dutch-learning {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.learning-step-number-dutch-learning {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: #2563eb;
  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 + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
}

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

@media (max-width: 768px) {
  .learning-step-dutch-learning {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

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

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

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

.resources-decorative-glow-1 {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.resources-decorative-glow-2 {
  position: absolute;
  bottom: 5%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.resources-decorative-shape-1 {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 220px;
  height: 220px;
  background: rgba(13, 148, 136, 0.03);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.resources-tag-dutch-learning {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.resources-subtitle-dutch-learning {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.resources-quote-dutch-learning {
  position: relative;
  z-index: 10;
  padding: clamp(2rem, 4vw, 2.5rem) clamp(2rem, 4vw, 2.5rem);
  border-left: 4px solid #2563eb;
  background: #ffffff;
  margin: 2.5rem auto;
  max-width: 700px;
}

.resources-quote-text-dutch-learning {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.resources-quote-author-dutch-learning {
  font-size: 0.9rem;
  color: #64748b;
  font-style: normal;
}

.resources-list-dutch-learning {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resources-list-item-dutch-learning {
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.resources-list-item-dutch-learning:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.resources-list-item-dutch-learning:nth-child(2) {
  border-left-color: #0d9488;
}

.resources-list-item-dutch-learning:nth-child(3) {
  border-left-color: #f59e0b;
}

.resources-list-item-dutch-learning:nth-child(4) {
  border-left-color: #2563eb;
}

.resources-list-title-dutch-learning {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

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

@media (min-width: 768px) {
  .resources-section-dutch-learning {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .resources-list-dutch-learning {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .resources-list-dutch-learning {
    grid-template-columns: 1fr;
  }
}

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

.cta-decorative-glow-1 {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-decorative-accent-1 {
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

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

.cta-description-dutch-learning {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-content-dutch-learning .btn {
  margin-top: 0.5rem;
}

.cta-content-dutch-learning .btn-primary {
  background: #ffffff;
  color: #2563eb;
}

.cta-content-dutch-learning .btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

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

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

@media (max-width: 768px) {
  .hero-stats-dutch-learning {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .learning-step-dutch-learning {
    padding: 1.5rem;
  }
}

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

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

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

.hero-section-conversatievoering-nederlands-beheersen {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.breadcrumb-link-conversatievoering-nederlands-beheersen:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumb-separator-conversatievoering-nederlands-beheersen {
  color: var(--color-text-muted);
}

.breadcrumb-current-conversatievoering-nederlands-beheersen {
  color: var(--color-text-secondary);
}

.hero-content-conversatievoering-nederlands-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-conversatievoering-nederlands-beheersen {
  flex: 1 1 300px;
  min-width: 300px;
}

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

.hero-subtitle-conversatievoering-nederlands-beheersen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-conversatievoering-nederlands-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta-badge-conversatievoering-nederlands-beheersen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 500;
}

.meta-badge-conversatievoering-nederlands-beheersen i {
  font-size: 0.875rem;
}

.hero-image-conversatievoering-nederlands-beheersen {
  flex: 1 1 300px;
  min-width: 300px;
}

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

@media (max-width: 768px) {
  .hero-content-conversatievoering-nederlands-beheersen {
    flex-direction: column;
  }
  
  .hero-text-wrapper-conversatievoering-nederlands-beheersen,
  .hero-image-conversatievoering-nederlands-beheersen {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.intro-section-conversatievoering-nederlands-beheersen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-conversatievoering-nederlands-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-block-conversatievoering-nederlands-beheersen {
  flex: 1 1 300px;
  min-width: 300px;
}

.intro-title-conversatievoering-nederlands-beheersen {
  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;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-conversatievoering-nederlands-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-block-conversatievoering-nederlands-beheersen {
  flex: 1 1 300px;
  min-width: 300px;
}

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

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

.content-section-one-conversatievoering-nederlands-beheersen {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-conversatievoering-nederlands-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-one-conversatievoering-nederlands-beheersen {
  flex: 1 1 300px;
  min-width: 300px;
}

.content-title-one-conversatievoering-nederlands-beheersen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-text-conversatievoering-nederlands-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-list-conversatievoering-nederlands-beheersen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  list-style: none;
}

.content-list-item-conversatievoering-nederlands-beheersen {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-list-item-conversatievoering-nederlands-beheersen::before {
  content: "";
  color: var(--color-secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.content-image-one-conversatievoering-nederlands-beheersen {
  flex: 1 1 300px;
  min-width: 300px;
}

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

@media (max-width: 768px) {
  .content-wrapper-one-conversatievoering-nederlands-beheersen {
    flex-direction: column;
  }
  
  .content-text-one-conversatievoering-nederlands-beheersen,
  .content-image-one-conversatievoering-nederlands-beheersen {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.content-section-two-conversatievoering-nederlands-beheersen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-conversatievoering-nederlands-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-two-conversatievoering-nederlands-beheersen {
  flex: 1 1 300px;
  min-width: 300px;
  order: -1;
}

.content-text-two-conversatievoering-nederlands-beheersen {
  flex: 1 1 300px;
  min-width: 300px;
}

.content-title-two-conversatievoering-nederlands-beheersen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.featured-quote-conversatievoering-nederlands-beheersen {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-primary);
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

.quote-text-conversatievoering-nederlands-beheersen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-conversatievoering-nederlands-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .content-wrapper-two-conversatievoering-nederlands-beheersen {
    flex-direction: column;
  }
  
  .content-image-two-conversatievoering-nederlands-beheersen,
  .content-text-two-conversatievoering-nederlands-beheersen {
    flex: 1 1 100%;
    min-width: auto;
    order: initial;
  }
}

.strategies-section-conversatievoering-nederlands-beheersen {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-header-conversatievoering-nederlands-beheersen {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-conversatievoering-nederlands-beheersen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.strategies-title-conversatievoering-nederlands-beheersen {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategies-subtitle-conversatievoering-nederlands-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategies-steps-conversatievoering-nederlands-beheersen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-step-conversatievoering-nederlands-beheersen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
}

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

.strategy-content-conversatievoering-nederlands-beheersen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.strategy-title-conversatievoering-nederlands-beheersen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-text-conversatievoering-nederlands-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .strategy-step-conversatievoering-nederlands-beheersen {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .strategy-number-conversatievoering-nederlands-beheersen {
    min-width: auto;
  }
}

.tools-section-conversatievoering-nederlands-beheersen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-conversatievoering-nederlands-beheersen {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-conversatievoering-nederlands-beheersen {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-subtitle-conversatievoering-nederlands-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.tools-card-conversatievoering-nederlands-beheersen {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.tools-card-title-conversatievoering-nederlands-beheersen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-list-conversatievoering-nederlands-beheersen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.tools-item-conversatievoering-nederlands-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-item-conversatievoering-nederlands-beheersen::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

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

.practice-section-conversatievoering-nederlands-beheersen {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-wrapper-conversatievoering-nederlands-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.practice-text-conversatievoering-nederlands-beheersen {
  flex: 1 1 300px;
  min-width: 300px;
}

.practice-title-conversatievoering-nederlands-beheersen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-text-item-conversatievoering-nederlands-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-scenarios-conversatievoering-nederlands-beheersen {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.scenario-conversatievoering-nederlands-beheersen {
  padding: 1.25rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-secondary);
}

.scenario-title-conversatievoering-nederlands-beheersen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.scenario-text-conversatievoering-nederlands-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-image-conversatievoering-nederlands-beheersen {
  flex: 1 1 300px;
  min-width: 300px;
}

.practice-featured-image-conversatievoering-nederlands-beheersen {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .practice-wrapper-conversatievoering-nederlands-beheersen {
    flex-direction: column;
  }
  
  .practice-text-conversatievoering-nederlands-beheersen,
  .practice-image-conversatievoering-nederlands-beheersen {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.conclusion-section-conversatievoering-nederlands-beheersen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-conversatievoering-nederlands-beheersen {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-conversatievoering-nederlands-beheersen {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-conversatievoering-nederlands-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-box-conversatievoering-nederlands-beheersen {
  background: var(--color-primary);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 2rem;
}

.cta-title-conversatievoering-nederlands-beheersen {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-conversatievoering-nederlands-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #f1f5f9;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-button-conversatievoering-nederlands-beheersen {
  background: #ffffff;
  color: var(--color-primary);
}

.cta-button-conversatievoering-nederlands-beheersen:hover {
  background: #f1f5f9;
}

.related-section-conversatievoering-nederlands-beheersen {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-conversatievoering-nederlands-beheersen {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 3rem;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-conversatievoering-nederlands-beheersen {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

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

.related-card-image-conversatievoering-nederlands-beheersen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-bg-tertiary);
}

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

.related-card-content-conversatievoering-nederlands-beheersen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-conversatievoering-nederlands-beheersen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-conversatievoering-nederlands-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-link-conversatievoering-nederlands-beheersen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: all 0.3s ease;
}

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

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

.disclaimer-section-conversatievoering-nederlands-beheersen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.disclaimer-title-conversatievoering-nederlands-beheersen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-conversatievoering-nederlands-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .hero-section-conversatievoering-nederlands-beheersen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .intro-section-conversatievoering-nederlands-beheersen,
  .content-section-one-conversatievoering-nederlands-beheersen,
  .content-section-two-conversatievoering-nederlands-beheersen,
  .strategies-section-conversatievoering-nederlands-beheersen,
  .tools-section-conversatievoering-nederlands-beheersen,
  .practice-section-conversatievoering-nederlands-beheersen,
  .conclusion-section-conversatievoering-nederlands-beheersen,
  .related-section-conversatievoering-nederlands-beheersen,
  .disclaimer-section-conversatievoering-nederlands-beheersen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (max-width: 768px) {
  .breadcrumbs-conversatievoering-nederlands-beheersen {
    margin-bottom: 1.5rem;
  }
  
  .hero-meta-conversatievoering-nederlands-beheersen {
    margin-bottom: 1rem;
  }
}

.main-fundamentele-nederlandse-woordenschat {
  width: 100%;
  display: flex;
  flex-direction: column;
}

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

.hero-section-fundamentele-nederlandse-woordenschat {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.hero-content-fundamentele-nederlandse-woordenschat {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.hero-title-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-subtitle-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #475569;
}

.hero-meta-fundamentele-nederlandse-woordenschat {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-fundamentele-nederlandse-woordenschat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #2563eb;
}

.meta-badge-fundamentele-nederlandse-woordenschat i {
  font-size: 0.875rem;
}

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

.stat-item-fundamentele-nederlandse-woordenschat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
}

.stat-label-fundamentele-nederlandse-woordenschat {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
}

.hero-image-block-fundamentele-nederlandse-woordenschat {
  flex: 1 1 400px;
  max-width: 50%;
}

.hero-image-fundamentele-nederlandse-woordenschat {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.breadcrumb-link-fundamentele-nederlandse-woordenschat {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-fundamentele-nederlandse-woordenschat:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb-separator-fundamentele-nederlandse-woordenschat {
  color: #cbd5e1;
}

.breadcrumb-current-fundamentele-nederlandse-woordenschat {
  color: #64748b;
}

.introduction-section-fundamentele-nederlandse-woordenschat {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.introduction-content-fundamentele-nederlandse-woordenschat {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

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

.intro-paragraph-fundamentele-nederlandse-woordenschat {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.intro-image-fundamentele-nederlandse-woordenschat {
  flex: 1 1 400px;
  max-width: 50%;
}

.intro-image-fundamentele-nederlandse-woordenschat img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-text-fundamentele-nederlandse-woordenschat,
  .intro-image-fundamentele-nederlandse-woordenschat {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .introduction-content-fundamentele-nederlandse-woordenschat {
    flex-direction: column;
  }
}

.categories-section-fundamentele-nederlandse-woordenschat {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.categories-header-fundamentele-nederlandse-woordenschat {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-fundamentele-nederlandse-woordenschat {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.categories-title-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
}

.categories-subtitle-fundamentele-nederlandse-woordenschat {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.categories-grid-fundamentele-nederlandse-woordenschat {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.category-card-fundamentele-nederlandse-woordenschat {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.category-card-fundamentele-nederlandse-woordenschat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.category-icon-fundamentele-nederlandse-woordenschat {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 10px;
  font-size: 1.5rem;
}

.category-title-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.category-text-fundamentele-nederlandse-woordenschat {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #64748b;
}

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

.methods-section-fundamentele-nederlandse-woordenschat {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.methods-header-fundamentele-nederlandse-woordenschat {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.methods-title-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.methods-content-fundamentele-nederlandse-woordenschat {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.methods-text-fundamentele-nederlandse-woordenschat {
  flex: 1 1 400px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.method-step-fundamentele-nederlandse-woordenschat {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.step-number-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: #2563eb;
  flex-shrink: 0;
  min-width: 50px;
}

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

.step-title-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
}

.step-text-fundamentele-nederlandse-woordenschat {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #475569;
}

.methods-image-fundamentele-nederlandse-woordenschat {
  flex: 1 1 400px;
  max-width: 50%;
}

.methods-image-fundamentele-nederlandse-woordenschat img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.featured-quote-section-fundamentele-nederlandse-woordenschat {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.featured-quote-fundamentele-nederlandse-woordenschat {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #2563eb;
  background: rgba(255, 255, 255, 0.05);
  margin: 0;
  border-radius: 8px;
}

.quote-text-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  margin: 0 0 1rem 0;
  font-style: italic;
}

.quote-author-fundamentele-nederlandse-woordenschat {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  font-style: normal;
}

.tips-section-fundamentele-nederlandse-woordenschat {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.tips-header-fundamentele-nederlandse-woordenschat {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.tips-title-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tips-subtitle-fundamentele-nederlandse-woordenschat {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.tips-content-fundamentele-nederlandse-woordenschat {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.tips-image-fundamentele-nederlandse-woordenschat {
  flex: 1 1 400px;
  max-width: 50%;
}

.tips-image-fundamentele-nederlandse-woordenschat img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tips-list-fundamentele-nederlandse-woordenschat {
  flex: 1 1 400px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tip-item-fundamentele-nederlandse-woordenschat {
  display: flex;
  gap: clamp(1.25rem, 2vw, 1.5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-radius: 10px;
  border-left: 3px solid #2563eb;
  flex-direction: column;
}

.tip-number-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #2563eb;
  flex-shrink: 0;
  min-width: 40px;
  text-align: center;
}

.tip-title-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.tip-text-fundamentele-nederlandse-woordenschat {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

@media (max-width: 768px) {
  .tips-image-fundamentele-nederlandse-woordenschat,
  .tips-list-fundamentele-nederlandse-woordenschat {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .tips-content-fundamentele-nederlandse-woordenschat {
    flex-direction: column !important;
  }
}

.resources-section-fundamentele-nederlandse-woordenschat {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.resources-header-fundamentele-nederlandse-woordenschat {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.resources-title-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
}

.resources-subtitle-fundamentele-nederlandse-woordenschat {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.resources-content-fundamentele-nederlandse-woordenschat {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.resources-text-fundamentele-nederlandse-woordenschat {
  flex: 1 1 400px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.resources-paragraph-fundamentele-nederlandse-woordenschat {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.resources-image-fundamentele-nederlandse-woordenschat {
  flex: 1 1 400px;
  max-width: 50%;
}

.resources-image-fundamentele-nederlandse-woordenschat img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.conclusion-section-fundamentele-nederlandse-woordenschat {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.conclusion-content-fundamentele-nederlandse-woordenschat {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-title-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.conclusion-text-fundamentele-nederlandse-woordenschat {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #475569;
  margin: 0;
}

.conclusion-cta-fundamentele-nederlandse-woordenschat {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-primary-conclusion-fundamentele-nederlandse-woordenschat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-conclusion-fundamentele-nederlandse-woordenschat:hover {
  background: #1d4ed8;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}

.disclaimer-section-fundamentele-nederlandse-woordenschat {
  background: #f1f5f9;
  padding: clamp(2rem, 5vw, 4rem) 0;
  width: 100%;
  overflow: hidden;
}

.disclaimer-content-fundamentele-nederlandse-woordenschat {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #92400e;
  margin: 0 0 0.75rem 0;
}

.disclaimer-text-fundamentele-nederlandse-woordenschat {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #78350f;
  margin: 0;
}

.related-section-fundamentele-nederlandse-woordenschat {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

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

.related-title-fundamentele-nederlandse-woordenschat {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.related-subtitle-fundamentele-nederlandse-woordenschat {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: #64748b;
}

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

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

.related-card-fundamentele-nederlandse-woordenschat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.related-card-image-fundamentele-nederlandse-woordenschat {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin: -1.5rem -1.5rem 0 -1.5rem;
}

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

.related-card-content-fundamentele-nederlandse-woordenschat {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.related-card-link-fundamentele-nederlandse-woordenschat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.2s ease;
  width: fit-content;
}

.related-card-link-fundamentele-nederlandse-woordenschat:hover {
  color: #1d4ed8;
  gap: 0.75rem;
}

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

@media (max-width: 768px) {
  .hero-section-fundamentele-nederlandse-woordenschat,
  .introduction-section-fundamentele-nederlandse-woordenschat,
  .categories-section-fundamentele-nederlandse-woordenschat,
  .methods-section-fundamentele-nederlandse-woordenschat,
  .featured-quote-section-fundamentele-nederlandse-woordenschat,
  .tips-section-fundamentele-nederlandse-woordenschat,
  .resources-section-fundamentele-nederlandse-woordenschat,
  .conclusion-section-fundamentele-nederlandse-woordenschat,
  .disclaimer-section-fundamentele-nederlandse-woordenschat,
  .related-section-fundamentele-nederlandse-woordenschat {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .hero-stats-fundamentele-nederlandse-woordenschat {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero-section-fundamentele-nederlandse-woordenschat,
  .introduction-section-fundamentele-nederlandse-woordenschat,
  .categories-section-fundamentele-nederlandse-woordenschat,
  .methods-section-fundamentele-nederlandse-woordenschat,
  .featured-quote-section-fundamentele-nederlandse-woordenschat,
  .tips-section-fundamentele-nederlandse-woordenschat,
  .resources-section-fundamentele-nederlandse-woordenschat,
  .conclusion-section-fundamentele-nederlandse-woordenschat,
  .disclaimer-section-fundamentele-nederlandse-woordenschat,
  .related-section-fundamentele-nederlandse-woordenschat {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

.main-nederlandse-cultuur-integratie {
  width: 100%;
}

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

.hero-section-nederlandse-cultuur-integratie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.breadcrumbs-nederlandse-cultuur-integratie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-nederlandse-cultuur-integratie {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlandse-cultuur-integratie:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb-separator-nederlandse-cultuur-integratie {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

.breadcrumb-current-nederlandse-cultuur-integratie {
  color: #64748b;
}

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

.hero-text-wrapper-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.hero-subtitle-nederlandse-cultuur-integratie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  line-height: 1.6;
}

.hero-meta-nederlandse-cultuur-integratie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.meta-badge-nederlandse-cultuur-integratie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-nederlandse-cultuur-integratie i {
  font-size: 0.875rem;
}

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

.hero-image-nederlandse-cultuur-integratie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-nederlandse-cultuur-integratie {
    flex-direction: column;
    gap: 2rem;
  }

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

  .hero-title-nederlandse-cultuur-integratie {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  }
}

.introduction-section-nederlandse-cultuur-integratie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.introduction-section-nederlandse-cultuur-integratie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.introduction-wrapper-nederlandse-cultuur-integratie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.introduction-paragraph-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.introduction-image-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-nederlandse-cultuur-integratie {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .introduction-wrapper-nederlandse-cultuur-integratie {
    flex-direction: column;
    gap: 2rem;
  }

  .introduction-text-nederlandse-cultuur-integratie,
  .introduction-image-nederlandse-cultuur-integratie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-één-nederlandse-cultuur-integratie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-één-nederlandse-cultuur-integratie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.content-wrapper-één-nederlandse-cultuur-integratie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-één-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-title-één-nederlandse-cultuur-integratie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-paragraph-één-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.highlight-box-één-nederlandse-cultuur-integratie {
  background: rgba(37, 99, 235, 0.08);
  border-left: 4px solid #2563eb;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.highlight-title-één-nederlandse-cultuur-integratie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.highlight-text-één-nederlandse-cultuur-integratie {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
}

.content-image-één-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-één-nederlandse-cultuur-integratie {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-één-nederlandse-cultuur-integratie {
    flex-direction: column;
    gap: 2rem;
  }

  .content-text-één-nederlandse-cultuur-integratie,
  .content-image-één-nederlandse-cultuur-integratie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-twee-nederlandse-cultuur-integratie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-twee-nederlandse-cultuur-integratie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.content-wrapper-twee-nederlandse-cultuur-integratie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-twee-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-twee-nederlandse-cultuur-integratie {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.content-text-twee-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-title-twee-nederlandse-cultuur-integratie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-paragraph-twee-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.content-list-twee-nederlandse-cultuur-integratie {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.list-item-twee-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-twee-nederlandse-cultuur-integratie::before {
  content: "";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.list-item-twee-nederlandse-cultuur-integratie strong {
  color: #0f172a;
}

@media (max-width: 768px) {
  .content-wrapper-twee-nederlandse-cultuur-integratie {
    flex-direction: column;
    gap: 2rem;
  }

  .content-image-twee-nederlandse-cultuur-integratie,
  .content-text-twee-nederlandse-cultuur-integratie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-drie-nederlandse-cultuur-integratie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-drie-nederlandse-cultuur-integratie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.content-wrapper-drie-nederlandse-cultuur-integratie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-drie-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-title-drie-nederlandse-cultuur-integratie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-paragraph-drie-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.featured-quote-nederlandse-cultuur-integratie {
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 4px solid #2563eb;
  background: #f0f4ff;
  border-radius: 8px;
  margin: 1rem 0;
}

.quote-text-nederlandse-cultuur-integratie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-nederlandse-cultuur-integratie {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.content-image-drie-nederlandse-cultuur-integratie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-drie-nederlandse-cultuur-integratie {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-drie-nederlandse-cultuur-integratie {
    flex-direction: column;
    gap: 2rem;
  }

  .content-text-drie-nederlandse-cultuur-integratie,
  .content-image-drie-nederlandse-cultuur-integratie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cultural-elements-section-nederlandse-cultuur-integratie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cultural-elements-section-nederlandse-cultuur-integratie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.cultural-header-nederlandse-cultuur-integratie {
  text-align: center;
  margin-bottom: 3rem;
}

.cultural-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.cultural-subtitle-nederlandse-cultuur-integratie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.cultural-cards-nederlandse-cultuur-integratie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

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

.cultural-card-nederlandse-cultuur-integratie:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.cultural-card-icon-nederlandse-cultuur-integratie {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 10px;
  font-size: 1.5rem;
}

.cultural-card-title-nederlandse-cultuur-integratie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.cultural-card-text-nederlandse-cultuur-integratie {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

.conclusion-section-nederlandse-cultuur-integratie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.conclusion-content-nederlandse-cultuur-integratie {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conclusion-title-nederlandse-cultuur-integratie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.conclusion-paragraph-nederlandse-cultuur-integratie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  max-width: 800px;
}

.conclusion-tips-nederlandse-cultuur-integratie {
  background: #f0f4ff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.tips-heading-nederlandse-cultuur-integratie {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.tips-list-nederlandse-cultuur-integratie {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-item-nederlandse-cultuur-integratie {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.tip-item-nederlandse-cultuur-integratie::before {
  content: "";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
  font-size: 1.125rem;
}

.tip-item-nederlandse-cultuur-integratie strong {
  color: #0f172a;
}

.conclusion-cta-nederlandse-cultuur-integratie {
  margin-top: 1rem;
}

.cta-button-nederlandse-cultuur-integratie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-nederlandse-cultuur-integratie:hover {
  background: #1d4ed8;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

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

.disclaimer-section-nederlandse-cultuur-integratie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.disclaimer-content-nederlandse-cultuur-integratie {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-nederlandse-cultuur-integratie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlandse-cultuur-integratie {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

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

.related-section-nederlandse-cultuur-integratie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.related-header-nederlandse-cultuur-integratie {
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-subtitle-nederlandse-cultuur-integratie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-nederlandse-cultuur-integratie {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  background: #ffffff;
}

.related-card-nederlandse-cultuur-integratie:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-nederlandse-cultuur-integratie {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-nederlandse-cultuur-integratie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-nederlandse-cultuur-integratie {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-nederlandse-cultuur-integratie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-nederlandse-cultuur-integratie {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-nederlandse-cultuur-integratie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-nederlandse-cultuur-integratie:hover {
  color: #1d4ed8;
}

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

@media (max-width: 768px) {
  .hero-meta-nederlandse-cultuur-integratie {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-badge-nederlandse-cultuur-integratie {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title-nederlandse-cultuur-integratie {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
  }

  .content-title-één-nederlandse-cultuur-integratie,
  .content-title-twee-nederlandse-cultuur-integratie,
  .content-title-drie-nederlandse-cultuur-integratie,
  .introduction-title-nederlandse-cultuur-integratie {
    font-size: clamp(1.375rem, 3.5vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .cultural-cards-nederlandse-cultuur-integratie {
    gap: 2rem;
  }

  .cultural-card-nederlandse-cultuur-integratie {
    flex: 1 1 calc(33.333% - 1.33rem);
  }
}

.main-nederlandse-grammatica-syntaxis {
  width: 100%;
  background: #ffffff;
}

.hero-section-nederlandse-grammatica-syntaxis {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

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

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

.breadcrumb-link-nederlandse-grammatica-syntaxis {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlandse-grammatica-syntaxis:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb-separator-nederlandse-grammatica-syntaxis {
  color: #cbd5e1;
}

.breadcrumb-current-nederlandse-grammatica-syntaxis {
  color: #64748b;
}

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

.hero-text-wrapper-nederlandse-grammatica-syntaxis {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-nederlandse-grammatica-syntaxis {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlandse-grammatica-syntaxis {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-nederlandse-grammatica-syntaxis {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.meta-badge-nederlandse-grammatica-syntaxis {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-nederlandse-grammatica-syntaxis i {
  font-size: 1rem;
}

.hero-stats-nederlandse-grammatica-syntaxis {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

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

.stat-number-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
}

.stat-label-nederlandse-grammatica-syntaxis {
  font-size: 0.875rem;
  color: #64748b;
}

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

.hero-image-img-nederlandse-grammatica-syntaxis {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

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

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

.introduction-text-nederlandse-grammatica-syntaxis {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-title-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.introduction-description-nederlandse-grammatica-syntaxis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.introduction-image-nederlandse-grammatica-syntaxis {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-img-nederlandse-grammatica-syntaxis {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

.featured-quote-nederlandse-grammatica-syntaxis {
  padding: 2rem 2.5rem;
  border-left: 4px solid #2563eb;
  background: #ffffff;
  margin: 1rem 0;
  font-style: italic;
  border-radius: 4px;
}

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

.quote-author-nederlandse-grammatica-syntaxis {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

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

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

.section-tag-nederlandse-grammatica-syntaxis {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.fundamentals-title-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fundamentals-subtitle-nederlandse-grammatica-syntaxis {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.fundamentals-text-nederlandse-grammatica-syntaxis {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fundamentals-subheading-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.fundamentals-description-nederlandse-grammatica-syntaxis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.highlight-box-nederlandse-grammatica-syntaxis {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #eff6ff;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
}

.highlight-title-nederlandse-grammatica-syntaxis {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 1rem;
}

.highlight-list-nederlandse-grammatica-syntaxis {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.highlight-item-nederlandse-grammatica-syntaxis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #1e3a8a;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.highlight-item-nederlandse-grammatica-syntaxis::before {
  content: "";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.fundamentals-image-nederlandse-grammatica-syntaxis {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-image-img-nederlandse-grammatica-syntaxis {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

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

.parts-title-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.parts-subtitle-nederlandse-grammatica-syntaxis {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.parts-content-nederlandse-grammatica-syntaxis {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.parts-text-nederlandse-grammatica-syntaxis {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.parts-subheading-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.parts-description-nederlandse-grammatica-syntaxis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.parts-card-nederlandse-grammatica-syntaxis {
  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 #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parts-card-nederlandse-grammatica-syntaxis:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.parts-card-icon-nederlandse-grammatica-syntaxis {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 10px;
  font-size: 1.5rem;
}

.parts-card-title-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.parts-card-text-nederlandse-grammatica-syntaxis {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

.conjugation-title-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conjugation-subtitle-nederlandse-grammatica-syntaxis {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.conjugation-image-img-nederlandse-grammatica-syntaxis {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

.conjugation-text-nederlandse-grammatica-syntaxis {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conjugation-subheading-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.conjugation-description-nederlandse-grammatica-syntaxis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-steps-nederlandse-grammatica-syntaxis {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.process-step-nederlandse-grammatica-syntaxis {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}

.process-step-number-nederlandse-grammatica-syntaxis {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: #2563eb;
  flex-shrink: 0;
  min-width: 60px;
}

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

.process-step-title-nederlandse-grammatica-syntaxis {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.process-step-text-nederlandse-grammatica-syntaxis {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

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

.practice-title-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-subtitle-nederlandse-grammatica-syntaxis {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.practice-text-nederlandse-grammatica-syntaxis {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-subheading-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.practice-description-nederlandse-grammatica-syntaxis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.practice-image-img-nederlandse-grammatica-syntaxis {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

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

.conclusion-content-nederlandse-grammatica-syntaxis {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-nederlandse-grammatica-syntaxis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-box-nederlandse-grammatica-syntaxis {
  background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 1rem;
}

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

.cta-text-nederlandse-grammatica-syntaxis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.btn-primary-cta-nederlandse-grammatica-syntaxis {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #2563eb;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

.btn-primary-cta-nederlandse-grammatica-syntaxis:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.related-section-nederlandse-grammatica-syntaxis {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.related-title-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-nederlandse-grammatica-syntaxis {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

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

.related-card-nederlandse-grammatica-syntaxis:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.related-card-image-nederlandse-grammatica-syntaxis {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.related-card-image-img-nederlandse-grammatica-syntaxis {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-text-nederlandse-grammatica-syntaxis {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.related-card-arrow-nederlandse-grammatica-syntaxis {
  color: #2563eb;
  font-weight: 600;
  transition: transform 0.3s ease;
  display: inline-block;
}

.related-card-nederlandse-grammatica-syntaxis:hover .related-card-arrow-nederlandse-grammatica-syntaxis {
  transform: translateX(4px);
}

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

.disclaimer-section-nederlandse-grammatica-syntaxis {
  background: #eff6ff;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid #dbeafe;
  border-radius: 12px;
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.disclaimer-content-nederlandse-grammatica-syntaxis {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-nederlandse-grammatica-syntaxis {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlandse-grammatica-syntaxis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #1e3a8a;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .hero-content-nederlandse-grammatica-syntaxis,
  .introduction-content-nederlandse-grammatica-syntaxis,
  .fundamentals-content-nederlandse-grammatica-syntaxis,
  .conjugation-content-nederlandse-grammatica-syntaxis,
  .practice-content-nederlandse-grammatica-syntaxis {
    flex-direction: column;
  }

  .hero-text-wrapper-nederlandse-grammatica-syntaxis,
  .hero-image-nederlandse-grammatica-syntaxis,
  .introduction-text-nederlandse-grammatica-syntaxis,
  .introduction-image-nederlandse-grammatica-syntaxis,
  .fundamentals-text-nederlandse-grammatica-syntaxis,
  .fundamentals-image-nederlandse-grammatica-syntaxis,
  .conjugation-text-nederlandse-grammatica-syntaxis,
  .conjugation-image-nederlandse-grammatica-syntaxis,
  .practice-text-nederlandse-grammatica-syntaxis,
  .practice-image-nederlandse-grammatica-syntaxis {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

  .hero-stats-nederlandse-grammatica-syntaxis {
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-step-nederlandse-grammatica-syntaxis {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step-number-nederlandse-grammatica-sintaxis {
    min-width: auto;
  }
}

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

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

.main-nederlands-examens-voorbereiding {
  width: 100%;
}

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

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

.hero-text-block-nederlands-examens-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-title-nederlands-examens-voorbereiding {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlands-examens-voorbereiding {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-meta-nederlands-examens-voorbereiding {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-nederlands-examens-voorbereiding {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f0f9ff;
  color: #0284c7;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-nederlands-examens-voorbereiding i {
  font-size: 0.875rem;
}

.breadcrumbs-nederlands-examens-voorbereiding {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-nederlands-examens-voorbereiding {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlands-examens-voorbereiding:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb-separator-nederlands-examens-voorbereiding {
  color: #cbd5e1;
}

.breadcrumb-current-nederlands-examens-voorbereiding {
  color: #64748b;
}

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

  .hero-text-block-nederlands-examens-voorbereiding,
  .hero-image-block-nederlands-examens-voorbereiding {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.introduction-image-nederlands-examens-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-img-nederlands-examens-voorbereiding {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.introduction-title-nederlands-examens-voorbereiding {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-nederlands-examens-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .introduction-wrapper-nederlands-examens-voorbereiding {
    flex-direction: column;
  }

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

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

.preparation-header-nederlands-examens-voorbereiding {
  text-align: center;
  margin-bottom: 3rem;
}

.preparation-tag-nederlands-examens-voorbereiding {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #f0f9ff;
  color: #0284c7;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

.preparation-steps-nederlands-examens-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.preparation-step-nederlands-examens-voorbereiding {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #2563eb;
}

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

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

.preparation-step-title-nederlands-examens-voorbereiding {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.preparation-step-text-nederlands-examens-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .preparation-step-nederlands-examens-voorbereiding {
    flex-direction: column;
    padding: 1.5rem;
  }

  .preparation-step-number-nederlands-examens-voorbereiding {
    min-width: auto;
  }
}

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

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

.techniques-text-nederlands-examens-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-nederlands-examens-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-img-nederlands-examens-voorbereiding {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

.techniques-description-nederlands-examens-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.techniques-list-nederlands-examens-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  list-style: none;
}

.techniques-list-item-nederlands-examens-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.techniques-list-item-nederlands-examens-voorbereiding:before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: bold;
  font-size: 1.25rem;
}

.techniques-list-item-nederlands-examens-voorbereiding strong {
  color: #0f172a;
  font-weight: 600;
}

.featured-quote-nederlands-examens-voorbereiding {
  padding: 2rem 2.5rem;
  border-left: 4px solid #0d9488;
  background: #ecfdf5;
  margin: 2rem 0;
  font-style: italic;
}

.quote-text-nederlands-examens-voorbereiding {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-nederlands-examens-voorbereiding {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

@media (max-width: 768px) {
  .techniques-wrapper-nederlands-examens-voorbereiding {
    flex-direction: column;
  }

  .techniques-text-nederlands-examens-voorbereiding,
  .techniques-image-nederlands-examens-voorbereiding {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.skills-header-nederlands-examens-voorbereiding {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.skills-card-nederlands-examens-voorbereiding {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.skills-card-icon-nederlands-examens-voorbereiding {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f9ff;
  color: #2563eb;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.skills-card-title-nederlands-examens-voorbereiding {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.skills-card-text-nederlands-examens-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

.practical-section-nederlands-examens-voorbereiding {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practical-image-nederlands-examens-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-img-nederlands-examens-voorbereiding {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.practical-text-nederlands-examens-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-nederlands-examens-voorbereiding {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.practical-description-nederlands-examens-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.practical-highlight-box-nederlands-examens-voorbereiding {
  background: #ecfdf5;
  border-left: 4px solid #0d9488;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.practical-highlight-title-nederlands-examens-voorbereiding {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.practical-highlight-list-nederlands-examens-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.practical-highlight-item-nederlands-examens-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.practical-highlight-item-nederlands-examens-voorbereiding:before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: bold;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .practical-wrapper-nederlands-examens-voorbereiding {
    flex-direction: column-reverse;
  }

  .practical-image-nederlands-examens-voorbereiding,
  .practical-text-nederlands-examens-voorbereiding {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-nederlands-examens-voorbereiding {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-nederlands-examens-voorbereiding {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-nederlands-examens-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-box-nederlands-examens-voorbereiding {
  background: linear-gradient(135deg, #2563eb 0%, #0d9488 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-box-title-nederlands-examens-voorbereiding {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-box-text-nederlands-examens-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-cta-box-nederlands-examens-voorbereiding .btn {
  background: #ffffff;
  color: #2563eb;
  font-weight: 600;
}

.conclusion-cta-box-nederlands-examens-voorbereiding .btn:hover {
  background: #f0f9ff;
}

.disclaimer-section-nederlands-examens-voorbereiding {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-box-nederlands-examens-voorbereiding {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid #2563eb;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  max-width: 900px;
  margin: 0 auto;
}

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

.disclaimer-text-nederlands-examens-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #1e293b;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.disclaimer-text-nederlands-examens-voorbereiding:last-child {
  margin-bottom: 0;
}

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

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

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

.related-subtitle-nederlands-examens-voorbereiding {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

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

.related-card-nederlands-examens-voorbereiding:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #2563eb;
}

.related-card-content-nederlands-examens-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-nederlands-examens-voorbereiding {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-nederlands-examens-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  flex-grow: 1;
}

.related-card-link-nederlands-examens-voorbereiding {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: gap 0.3s ease, color 0.3s ease;
}

.related-card-link-nederlands-examens-voorbereiding:hover {
  color: #1d4ed8;
  gap: 0.75rem;
}

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

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

@media (min-width: 1024px) {
  .preparation-step-nederlands-examens-voorbereiding {
    padding: 2.5rem;
  }
}

.dutch-learning-journey-about {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

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

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

.hero-foundation-text-about {
  max-width: 700px;
}

.hero-foundation-title-about {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-foundation-intro-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-foundation-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: 2.5rem;
}

.hero-stat-item-about {
  flex: 1 1 auto;
  min-width: 150px;
}

.hero-stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-label-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3b8;
  font-weight: 500;
}

.hero-foundation-image-about {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

.heritage-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.heritage-block-about {
  max-width: 650px;
}

.heritage-subtitle-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.heritage-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.heritage-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.heritage-description-about:last-of-type {
  margin-bottom: 0;
}

.heritage-image-about {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

.methodology-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.methodology-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.methodology-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.methodology-intro-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

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

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

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

.methodology-step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
}

.methodology-step-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

.commitment-header-about {
  max-width: 700px;
}

.commitment-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.commitment-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.commitment-text-about:last-of-type {
  margin-bottom: 0;
}

.commitment-values-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.commitment-value-about {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.commitment-value-icon-about {
  font-size: 1.5rem;
  color: #60a5fa;
  width: 40px;
}

.commitment-value-title-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: #f1f5f9;
}

.commitment-value-text-about {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
}

.commitment-image-about {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.disclaimer-section-about {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

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

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-foundation-about {
    padding: 2.5rem 0;
  }

  .heritage-section-about {
    padding: 2.5rem 0;
  }

  .methodology-section-about {
    padding: 2.5rem 0;
  }

  .commitment-section-about {
    padding: 2.5rem 0;
  }

  .methodology-step-about {
    gap: 1rem;
    padding: 1.25rem;
  }

  .commitment-value-about {
    flex: 1 1 100%;
  }
}

@media (min-width: 768px) {
  .hero-foundation-about {
    padding: 4.5rem 0;
  }

  .heritage-section-about {
    padding: 4.5rem 0;
  }

  .methodology-section-about {
    padding: 4.5rem 0;
  }

  .commitment-section-about {
    padding: 4.5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-foundation-about {
    padding: 6rem 0;
  }

  .heritage-section-about {
    padding: 6rem 0;
  }

  .methodology-section-about {
    padding: 6rem 0;
  }

  .commitment-section-about {
    padding: 6rem 0;
  }
}

.legal-resource {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.legal-resource section {
  width: 100%;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.legal-resource .hero-section {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.legal-resource .hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-resource .hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-resource .hero-content .last-updated {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
}

.legal-resource .content-section {
  background: var(--color-bg-primary);
}

.legal-resource .content-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.legal-resource .content-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-resource .content-section ul {
  margin-left: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.legal-resource .content-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-resource .content-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-resource .contact-section {
  background: var(--color-bg-secondary);
}

.legal-resource .contact-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.legal-resource .contact-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-resource .contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.legal-resource .contact-value {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .legal-resource section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .legal-resource .hero-content {
    gap: 1.5rem;
  }

  .legal-resource .contact-item {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-resource section {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }

  .legal-resource .content-section h2 {
    margin-bottom: 1.5rem;
  }

  .legal-resource .content-section p {
    margin-bottom: 1.5rem;
  }
}

.thank-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  .thank-section {
    background: var(--color-bg-primary);
    width: 100%;
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

  .thank-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
  }

  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(13, 148, 136, 0.1));
  }

  .thank-icon i {
    font-size: clamp(40px, 10vw, 60px);
    color: var(--color-secondary);
  }

  .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;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-lead {
    color: var(--color-primary);
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    font-weight: 600;
    margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
    letter-spacing: 0.3px;
  }

  .thank-description {
    color: var(--color-text-secondary);
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    max-width: 600px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-next-steps {
    color: var(--color-text-secondary);
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin: 0 0 clamp(2rem, 4vw, 3rem) 0;
    max-width: 600px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    letter-spacing: 0.3px;
  }

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

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

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

  
  @media (min-width: 768px) {
    .thank-section {
      padding: clamp(4rem, 8vw, 6rem) 0;
    }

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

    .thank-section h1 {
      margin: 0 0 clamp(1.25rem, 2.5vw, 2rem) 0;
    }

    .thank-lead {
      margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem) 0;
    }

    .thank-description {
      margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem) 0;
    }

    .thank-next-steps {
      margin: 0 0 clamp(2.5rem, 5vw, 3.5rem) 0;
    }
  }

  
  @media (min-width: 1024px) {
    .thank-section {
      padding: clamp(5rem, 10vw, 8rem) 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .thank-content {
      padding: clamp(2rem, 5vw, 3rem);
    }

    .thank-icon {
      margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
    }

    .thank-section h1 {
      margin: 0 0 clamp(1.5rem, 3vw, 2.5rem) 0;
    }

    .thank-lead {
      margin: 0 0 clamp(2rem, 3.5vw, 2.75rem) 0;
      font-size: 1.25rem;
    }

    .thank-description {
      margin: 0 0 clamp(1.5rem, 2.5vw, 2rem) 0;
      font-size: 1.125rem;
    }

    .thank-next-steps {
      margin: 0 0 clamp(3rem, 5vw, 4rem) 0;
      font-size: 1.125rem;
    }
  }

  
  @media (min-width: 1440px) {
    .thank-section {
      padding: 8rem 0;
      min-height: 100vh;
    }

    .thank-section h1 {
      font-size: 3.5rem;
    }

    .thank-lead {
      font-size: 1.25rem;
    }

    .thank-description,
    .thank-next-steps {
      font-size: 1.125rem;
      max-width: 650px;
    }
  }

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

  @media (prefers-reduced-motion: reduce) {
    .btn {
      transition: none;
    }

    .btn:hover {
      transform: none;
    }
  }

  
  @media print {
    .thank-section {
      padding: 2rem 0;
    }

    .btn {
      display: none;
    }
  }

.error-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px 0px !important;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 5vw, 3rem);
}

.error-visual {
  position: relative;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: clamp(4rem, 12vw + 1rem, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
  letter-spacing: -0.05em;
  text-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
  margin: 0;
  padding: 0;
}

.error-icon {
  position: absolute;
  right: clamp(-1.5rem, -5vw, -3rem);
  top: clamp(-1rem, -3vw, -2rem);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--color-secondary);
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

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

.error-title {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtitle {
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 550px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 500px;
  border: 2px solid rgba(37, 99, 235, 0.1);
}

.suggestion-label {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.suggestion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.suggestion-list li {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestion-list i {
  color: var(--color-secondary);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 0.75rem);
  padding: clamp(0.875rem, 2.5vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-large {
  margin-top: clamp(1rem, 3vw, 2rem);
}

.btn i {
  font-size: 1.1em;
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .error-content {
    gap: clamp(2rem, 6vw, 4rem);
  }

  .error-code-wrapper {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .error-icon {
    right: clamp(-2rem, -6vw, -4rem);
    top: clamp(-1.5rem, -4vw, -3rem);
  }

  .error-suggestions {
    padding: clamp(2rem, 5vw, 3rem);
  }

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

@media (min-width: 1024px) {
  .error-section {
    padding: clamp(6rem, 12vw, 10rem) 0;
  }

  .error-content {
    gap: clamp(3rem, 7vw, 4.5rem);
  }

  .error-code-wrapper {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .btn:hover {
    transform: translateY(-3px);
  }
}

@media (min-width: 1440px) {
  .error-section {
    min-height: 100vh;
    padding: 0;
  }

  .error-content {
    gap: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-icon,
  .btn {
    animation: none !important;
    transition: none !important;
  }

  .btn:hover {
    transform: none !important;
  }
}

@media (prefers-color-scheme: dark) {
  .error-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  }

  .error-code {
    text-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
  }

  .error-title {
    color: #f8fafc;
  }

  .error-subtitle,
  .error-description,
  .suggestion-list li {
    color: #cbd5e1;
  }

  .suggestion-label {
    color: #f8fafc;
  }

  .error-suggestions {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(37, 99, 235, 0.2);
  }
}