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

:root {
  --color-bg-primary-dark: #0f172a;
  --color-bg-secondary-dark: #1e293b;
  --color-bg-tertiary-dark: #334155;
  --color-bg-light: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;

  --color-text-light: #ffffff;
  --color-text-light-secondary: #cbd5e1;
  --color-text-light-muted: #94a3b8;
  --color-text-dark: #1e293b;
  --color-text-dark-secondary: #475569;
  --color-text-dark-muted: #64748b;

  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-dark: #1e40af;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;

  --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;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

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

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

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

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

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

h5 {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
}

h6 {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

a {
  transition: color var(--transition-base), background-color var(--transition-base);
  text-decoration: none;
}

button {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
}

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

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

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

.btn-primary:active {
  transform: translateY(0);
}

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

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

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

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

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

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

.btn-small {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  font-size: 0.875rem;
}

.btn-large {
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
}

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

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

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

.flex {
  display: flex;
}

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

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

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

.grid {
  display: grid;
}

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

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

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

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

.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);
}

.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);
}

.py-section {
  padding: clamp(2.5rem, 8vw, 6rem) 0;
}

.py-section-sm {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.py-section-lg {
  padding: clamp(3rem, 10vw, 8rem) 0;
}

.px-container {
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.list-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hidden {
  display: none;
}

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

@media (max-width: 767px) {
  html {
    font-size: 15px;
  }

  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hidden-desktop {
    display: none !important;
  }
}

.card {
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

.card-dark {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: var(--space-lg) 0;
}

.divider-light {
  background: rgba(255, 255, 255, 0.1);
}

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  width: 100%;
}

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

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

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

.form-label {
  font-weight: 600;
  font-size: 0.9375rem;
}

.form-error {
  color: #dc2626;
  font-size: 0.875rem;
}

.form-success {
  color: #059669;
  font-size: 0.875rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-secondary {
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-secondary);
}

.badge-accent {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-accent);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.icon-md {
  width: 2rem;
  height: 2rem;
  font-size: 1.25rem;
}

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

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

.scroll-smooth {
  scroll-behavior: smooth;
}

.fade-in {
  animation: fadeIn var(--transition-slow) ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp var(--transition-slow) ease-out;
}

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

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

@supports (backdrop-filter: blur(1px)) {
  .backdrop-blur {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
  }

  .backdrop-blur-dark {
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.8);
  }
}

@media (max-width: 767px) {
  .btn {
    width: 100%;
  }

  input,
  textarea,
  select {
    font-size: 16px;
  }
}

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

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

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

@media (prefers-color-scheme: dark) {
  input,
  textarea,
  select {
    background: #1e293b;
    color: #f1f5f9;
    border-color: #334155;
  }

  input:focus,
  textarea:focus,
  select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  }
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

.header-taal-portal {
  width: 100%;
  background: var(--color-bg-primary-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: static;
  top: 0;
  z-index: 100;
}

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

.header-taal-portal-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

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

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

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

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

.header-taal-portal-nav-link {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

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

.header-taal-portal-nav-link:hover {
  color: #ffffff;
}

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

.header-taal-portal-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-taal-portal-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

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

.header-taal-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

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

.header-taal-portal-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: all var(--transition-base);
}

.header-taal-portal-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-taal-portal-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-taal-portal-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-taal-portal-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary-dark);
  padding-top: clamp(60px, 12vw, 80px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.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: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-taal-portal-mobile-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

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

.header-taal-portal-mobile-close:hover {
  color: #ffffff;
}

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

.header-taal-portal-mobile-link {
  padding: 1rem 1.5rem;
  color: #cbd5e1;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition-base);
}

.header-taal-portal-mobile-link:hover {
  background: rgba(59, 130, 246, 0.08);
  color: #ffffff;
  padding-left: 2rem;
}

.header-taal-portal-mobile-cta {
  margin: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
}

.header-taal-portal-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

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

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

  .header-taal-portal-desktop-nav {
    display: flex;
  }

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

  .header-taal-portal-container {
    height: 80px;
  }
}

@media (min-width: 1024px) {
  .header-taal-portal-nav-link {
    font-size: 0.9375rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  .header-taal-portal-brand,
  .header-taal-portal-nav-link,
  .header-taal-portal-nav-link::after,
  .header-taal-portal-cta-button,
  .header-taal-portal-mobile-toggle,
  .header-taal-portal-mobile-toggle span,
  .header-taal-portal-mobile-menu,
  .header-taal-portal-mobile-link,
  .header-taal-portal-mobile-cta {
    transition-duration: 0.01ms !important;
  }
}

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

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

.hero-ambient-glow {
  position: absolute;
  top: 10%;
  left: -100px;
  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 {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

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

.hero-light-burst {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-organic-shape {
  position: absolute;
  top: 60%;
  left: -50px;
  width: 300px;
  height: 280px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 70% 30% 40% 60% / 30% 70% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.hero-edge-accent {
  position: absolute;
  top: 0;
  right: 20%;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-main-title {
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

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

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

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

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

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

.about-accent-shape-1 {
  position: absolute;
  top: 15%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.about-accent-shape-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 60% 40% 30% 70% / 40% 60% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

.about-subtle-glow {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.about-line-element {
  position: absolute;
  bottom: 30%;
  left: 5%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), transparent);
  z-index: 1;
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

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

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

.about-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

.about-highlight-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.about-highlight-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #3b82f6;
  min-width: 50px;
  line-height: 1;
}

.about-highlight-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-highlight-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1e293b;
}

.about-highlight-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.about-main-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

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

.features-mesh-glow-left {
  position: absolute;
  top: 20%;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-mesh-glow-right {
  position: absolute;
  bottom: 15%;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-floating-card-1 {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 180px;
  height: 120px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
}

.features-floating-card-2 {
  position: absolute;
  bottom: 25%;
  left: 3%;
  width: 150px;
  height: 100px;
  background: rgba(6, 182, 212, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.08);
  border-radius: 10px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

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

.features-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 4rem;
}

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

.features-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

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

.features-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

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

.features-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.features-card-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

.lessons-glow-accent-2 {
  position: absolute;
  bottom: 20%;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.lessons-shape-decoration {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.lessons-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

.lessons-tag {
  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: 500;
  margin-bottom: 1rem;
}

.lessons-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.featured-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.featured-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

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

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

.featured-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.featured-card-description {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.featured-card-link {
  font-size: 0.9375rem;
  color: #60a5fa;
  font-weight: 500;
  text-decoration: none;
  transition: color 300ms ease-in-out;
  align-self: flex-start;
}

.featured-card-link:hover {
  color: #3b82f6;
}

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

.lessons-cta-text {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

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

.testimonial-accent-glow-1 {
  position: absolute;
  top: 15%;
  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;
}

.testimonial-accent-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-floating-element {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 180px;
  height: 150px;
  background: rgba(139, 92, 246, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
}

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

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

.testimonial-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.featured-testimonial {
  position: relative;
  z-index: 10;
  padding: 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #f8fafc;
  margin: 2rem auto;
  max-width: 700px;
}

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

.testimonial-attribution {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
}

.testimonial-highlights {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  margin-top: 3rem;
}

.testimonial-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.testimonial-stat-number {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.testimonial-stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

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

.path-mesh-left {
  position: absolute;
  top: 20%;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.path-mesh-right {
  position: absolute;
  bottom: 15%;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.path-glow-element {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.path-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.path-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

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

.path-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}

.path-step-number {
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f6;
  min-width: 60px;
  line-height: 1;
}

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

.path-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.path-step-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

.cta-glow-right {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-accent-burst {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.cta-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.cta-benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  color: #e2e8f0;
}

.cta-benefit-icon {
  color: #22c55e;
  font-weight: bold;
  font-size: 1.25rem;
}

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

.contact-accent-glow-1 {
  position: absolute;
  top: 15%;
  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;
}

.contact-accent-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-accent {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 180px;
  height: 180px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

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

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

.contact-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
}

.contact-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

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

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

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

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-primary);
  color: #0f172a;
  transition: all 300ms ease-in-out;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.contact-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.contact-info-block {
  flex: 1 1 350px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

.contact-faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-faq-question {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
}

.contact-faq-answer {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.contact-privacy-link {
  margin-top: 1rem;
}

.contact-privacy-text {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.6;
}

.contact-privacy-anchor {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease-in-out;
}

.contact-privacy-anchor:hover {
  color: #2563eb;
}

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

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

.cookie-banner-text {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex: 1 1 300px;
  min-width: 200px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.cookie-btn-accept {
  background: #3b82f6;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

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

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

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

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

  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }

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

  .path-step {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .testimonial-highlights {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

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

  .cta-benefits {
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

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

@media (min-width: 768px) {
  .path-step {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-image-block {
    flex: 0 1 auto;
  }

  .featured-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: none;
  }
}

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

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

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

.footer-content {
  display: block;
}

.footer-about-section {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-about-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-light-muted);
  max-width: 500px;
}

.footer-navigation-section,
.footer-contact-section,
.footer-legal-section {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

.footer-nav-list li,
.footer-legal-list li {
  margin-bottom: 0.75rem;
}

.footer-nav-link,
.footer-legal-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-muted);
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
  position: relative;
}

.footer-nav-link::after,
.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-secondary);
  transition: width var(--transition-base);
}

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

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

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

.footer-contact-item {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-contact-label {
  display: block;
  color: var(--color-text-light);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.footer-contact-value {
  display: block;
  color: var(--color-text-light-muted);
}

.footer-copyright-section {
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 0.9vw + 0.4rem, 0.9375rem);
  color: var(--color-text-light-muted);
  margin: 0;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: flex-start;
  }

  .footer-about-section {
    flex: 1 1 280px;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .footer-navigation-section {
    flex: 0 1 180px;
  }

  .footer-contact-section {
    flex: 0 1 240px;
  }

  .footer-legal-section {
    flex: 0 1 180px;
  }

  .footer-copyright-section {
    flex: 1 1 100%;
    order: 10;
    padding-top: clamp(2.5rem, 5vw, 4rem);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
  }
}

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

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

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

  .footer-contact-section {
    flex: 0 1 260px;
  }

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

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

  .footer-nav-link::after,
  .footer-legal-link::after {
    transition: none;
  }
}
    

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

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

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

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

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

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

.hero-title-dutch-learning {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-dutch-learning {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

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

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

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

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

.hero-cta-group-dutch-learning {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

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

.posts-header-dutch-learning {
  text-align: center;
  margin-bottom: 3.5rem;
}

.posts-tag-dutch-learning {
  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;
}

.posts-title-dutch-learning {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.posts-subtitle-dutch-learning {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.card-dutch-learning:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

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

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

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

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

.meta-badge-dutch-learning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: #f0f9ff;
  color: #0284c7;
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.card-link-dutch-learning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  align-self: flex-start;
}

.card-link-dutch-learning:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

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

.learning-header-dutch-learning {
  text-align: center;
  margin-bottom: 3.5rem;
}

.learning-tag-dutch-learning {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.learning-title-dutch-learning {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

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

.step-item-dutch-learning {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

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

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

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

.step-text-dutch-learning {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

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

.features-header-dutch-learning {
  text-align: center;
  margin-bottom: 3.5rem;
}

.features-title-dutch-learning {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

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

.feature-card-dutch-learning {
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-dutch-learning:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

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

.feature-title-dutch-learning {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

.feature-text-dutch-learning {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

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

.featured-insight-dutch-learning {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #ffffff;
  border-radius: 8px;
  text-align: center;
}

.insight-text-dutch-learning {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.insight-cite-dutch-learning {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

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

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

  .step-item-dutch-learning {
    flex-direction: column;
    gap: 1rem;
  }

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

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

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

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

  .posts-section-dutch-learning {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .learning-path-section-dutch-learning {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .features-section-dutch-learning {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .step-item-dutch-learning {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .card-dutch-learning {
    flex: 1 1 340px;
    max-width: 380px;
  }

  .feature-card-dutch-learning {
    flex: 1 1 300px;
    max-width: 340px;
  }
}

.main-ai-ondersteunde-nederlandse-taalcursus {
  background: #ffffff;
  width: 100%;
}

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

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

.breadcrumb-link-ai-ondersteunde-nederlandse-taalcursus {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-ai-ondersteunde-nederlandse-taalcursus:hover {
  color: #f1f5f9;
}

.breadcrumb-separator-ai-ondersteunde-nederlandse-taalcursus {
  color: #475569;
}

.breadcrumb-current-ai-ondersteunde-nederlandse-taalcursus {
  color: #94a3b8;
}

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

.hero-text-block-ai-ondersteunde-nederlandse-taalcursus {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-ai-ondersteunde-nederlandse-taalcursus {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.hero-description-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-stats-ai-ondersteunde-nederlandse-taalcursus {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.stat-item-ai-ondersteunde-nederlandse-taalcursus {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-ai-ondersteunde-nederlandse-taalcursus {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-weight: 500;
}

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

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

  .hero-text-block-ai-ondersteunde-nederlandse-taalcursus,
  .hero-image-block-ai-ondersteunde-nederlandse-taalcursus {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-ai-ondersteunde-nederlandse-taalcursus {
    flex-direction: column;
    gap: 1rem;
  }
}

.intro-section-ai-ondersteunde-nederlandse-taalcursus {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.intro-header-ai-ondersteunde-nederlandse-taalcursus {
  text-align: center;
  margin-bottom: 3rem;
}

.intro-tag-ai-ondersteunde-nederlandse-taalcursus {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.intro-title-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.intro-subtitle-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.intro-text-ai-ondersteunde-nederlandse-taalcursus {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-ai-ondersteunde-nederlandse-taalcursus {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-paragraph-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-img-ai-ondersteunde-nederlandse-taalcursus {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-ai-ondersteunde-nederlandse-taalcursus {
    flex-direction: column;
  }

  .intro-text-ai-ondersteunde-nederlandse-taalcursus,
  .intro-image-ai-ondersteunde-nederlandse-taalcursus {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-ai-ondersteunde-nederlandse-taalcursus {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.benefits-header-ai-ondersteunde-nederlandse-taalcursus {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-title-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
}

.benefits-cards-ai-ondersteunde-nederlandse-taalcursus {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.benefits-card-ai-ondersteunde-nederlandse-taalcursus {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-card-ai-ondersteunde-nederlandse-taalcursus:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.benefits-card-icon-ai-ondersteunde-nederlandse-taalcursus {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.benefits-card-title-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.benefits-card-text-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-card-ai-ondersteunde-nederlandse-taalcursus {
    flex: 1 1 100%;
    max-width: none;
  }
}

.process-section-ai-ondersteunde-nederlandse-taalcursus {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.process-header-ai-ondersteunde-nederlandse-taalcursus {
  text-align: center;
  margin-bottom: 3rem;
}

.process-title-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.process-subtitle-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

.process-steps-ai-ondersteunde-nederlandse-taalcursus {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step-ai-ondersteunde-nederlandse-taalcursus {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

.process-step-content-ai-ondersteunde-nederlandse-taalcursus {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.process-step-title-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

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

@media (max-width: 768px) {
  .process-step-ai-ondersteunde-nederlandse-taalcursus {
    flex-direction: column;
  }

  .process-step-number-ai-ondersteunde-nederlandse-taalcursus {
    min-width: auto;
  }
}

.features-section-ai-ondersteunde-nederlandse-taalcursus {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.features-header-ai-ondersteunde-nederlandse-taalcursus {
  text-align: center;
  margin-bottom: 3rem;
}

.features-title-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.features-subtitle-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

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

.features-text-ai-ondersteunde-nederlandse-taalcursus {
  flex: 1 1 50%;
  max-width: 50%;
}

.features-image-ai-ondersteunde-nederlandse-taalcursus {
  flex: 1 1 50%;
  max-width: 50%;
}

.features-paragraph-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.features-image-img-ai-ondersteunde-nederlandse-taalcursus {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .features-content-ai-ondersteunde-nederlandse-taalcursus {
    flex-direction: column;
  }

  .features-text-ai-ondersteunde-nederlandse-taalcursus,
  .features-image-ai-ondersteunde-nederlandse-taalcursus {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-ai-ondersteunde-nederlandse-taalcursus {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-ai-ondersteunde-nederlandse-taalcursus {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: 0 auto;
  max-width: 700px;
  border-radius: 0 8px 8px 0;
}

.quote-text-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-ai-ondersteunde-nederlandse-taalcursus {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
}

.tips-section-ai-ondersteunde-nederlandse-taalcursus {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.tips-header-ai-ondersteunde-nederlandse-taalcursus {
  text-align: center;
  margin-bottom: 3rem;
}

.tips-title-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.tips-subtitle-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

.tips-grid-ai-ondersteunde-nederlandse-taalcursus {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.tips-card-ai-ondersteunde-nederlandse-taalcursus {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tips-card-ai-ondersteunde-nederlandse-taalcursus:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tips-card-title-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

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

@media (max-width: 768px) {
  .tips-card-ai-ondersteunde-nederlandse-taalcursus {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-ai-ondersteunde-nederlandse-taalcursus {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-ai-ondersteunde-nederlandse-taalcursus {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.conclusion-text-ai-ondersteunde-nederlandse-taalcursus {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-ai-ondersteunde-nederlandse-taalcursus {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-paragraph-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-image-img-ai-ondersteunde-nederlandse-taalcursus {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.cta-box-ai-ondersteunde-nederlandse-taalcursus {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 3rem;
}

.cta-title-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.cta-description-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-cta-ai-ondersteunde-nederlandse-taalcursus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-cta-ai-ondersteunde-nederlandse-taalcursus:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .conclusion-content-ai-ondersteunde-nederlandse-taalcursus {
    flex-direction: column;
  }

  .conclusion-text-ai-ondersteunde-nederlandse-taalcursus,
  .conclusion-image-ai-ondersteunde-nederlandse-taalcursus {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-section-ai-ondersteunde-nederlandse-taalcursus {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-ai-ondersteunde-nederlandse-taalcursus {
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-subtitle-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

.related-cards-ai-ondersteunde-nederlandse-taalcursus {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.related-card-ai-ondersteunde-nederlandse-taalcursus {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-ai-ondersteunde-nederlandse-taalcursus:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.related-card-text-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-ai-ondersteunde-nederlandse-taalcursus {
  font-size: 0.9375rem;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.related-link-ai-ondersteunde-nederlandse-taalcursus:hover {
  color: #2563eb;
  text-decoration: underline;
}

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

.disclaimer-section-ai-ondersteunde-nederlandse-taalcursus {
  background: #0f172a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-ai-ondersteunde-nederlandse-taalcursus {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.disclaimer-title-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.disclaimer-text-ai-ondersteunde-nederlandse-taalcursus {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

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

  .intro-section-ai-ondersteunde-nederlandse-taalcursus,
  .benefits-section-ai-ondersteunde-nederlandse-taalcursus,
  .process-section-ai-ondersteunde-nederlandse-taalcursus,
  .features-section-ai-ondersteunde-nederlandse-taalcursus,
  .tips-section-ai-ondersteunde-nederlandse-taalcursus,
  .conclusion-section-ai-ondersteunde-nederlandse-taalcursus,
  .related-section-ai-ondersteunde-nederlandse-taalcursus {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .quote-section-ai-ondersteunde-nederlandse-taalcursus {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .disclaimer-section-ai-ondersteunde-nederlandse-taalcursus {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

@media (max-width: 768px) {
  .hero-stats-ai-ondersteunde-nederlandse-taalcursus {
    justify-content: flex-start;
  }
}

.main-interactieve-nederlandse-lessen {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-section-interactieve-nederlandse-lessen {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

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

.hero-text-block-interactieve-nederlandse-lessen {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-title-interactieve-nederlandse-lessen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-interactieve-nederlandse-lessen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-interactieve-nederlandse-lessen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-interactieve-nederlandse-lessen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #38bdf8;
}

.meta-badge-interactieve-nederlandse-lessen i {
  font-size: 1rem;
}

.hero-stats-interactieve-nederlandse-lessen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
}

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

.stat-number-interactieve-nederlandse-lessen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
}

.stat-label-interactieve-nederlandse-lessen {
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-image-block-interactieve-nederlandse-lessen {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-image-interactieve-nederlandse-lessen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-interactieve-nederlandse-lessen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-size: 0.9375rem;
}

.breadcrumb-link-interactieve-nederlandse-lessen {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-interactieve-nederlandse-lessen:hover {
  color: #60a5fa;
}

.breadcrumb-separator-interactieve-nederlandse-lessen {
  color: #64748b;
}

.breadcrumb-current-interactieve-nederlandse-lessen {
  color: #cbd5e1;
}

.introduction-section-interactieve-nederlandse-lessen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.introduction-text-interactieve-nederlandse-lessen {
  flex: 1 1 300px;
  min-width: 280px;
}

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

.introduction-description-interactieve-nederlandse-lessen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.introduction-image-interactieve-nederlandse-lessen {
  flex: 1 1 300px;
  min-width: 280px;
}

.introduction-image-item-interactieve-nederlandse-lessen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.learning-path-section-interactieve-nederlandse-lessen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-interactieve-nederlandse-lessen {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.learning-path-title-interactieve-nederlandse-lessen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.learning-path-subtitle-interactieve-nederlandse-lessen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-interactieve-nederlandse-lessen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-interactieve-nederlandse-lessen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.step-item-interactieve-nederlandse-lessen:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

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

.step-content-interactieve-nederlandse-lessen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.step-description-interactieve-nederlandse-lessen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.features-section-interactieve-nederlandse-lessen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.features-text-interactieve-nederlandse-lessen {
  flex: 1 1 300px;
  min-width: 280px;
}

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

.features-description-interactieve-nederlandse-lessen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.features-list-interactieve-nederlandse-lessen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-point-interactieve-nederlandse-lessen {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-point-interactieve-nederlandse-lessen i {
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-point-title-interactieve-nederlandse-lessen {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.feature-point-text-interactieve-nederlandse-lessen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.features-image-interactieve-nederlandse-lessen {
  flex: 1 1 300px;
  min-width: 280px;
}

.features-image-item-interactieve-nederlandse-lessen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-section-interactieve-nederlandse-lessen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.testimonial-quote-block-interactieve-nederlandse-lessen {
  flex: 1 1 300px;
  min-width: 280px;
}

.testimonial-quote-interactieve-nederlandse-lessen {
  padding: 2rem;
  border-left: 4px solid #38bdf8;
  background: rgba(59, 130, 246, 0.08);
  margin: 0;
}

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

.testimonial-author-interactieve-nederlandse-lessen {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
}

.testimonial-image-interactieve-nederlandse-lessen {
  flex: 1 1 300px;
  min-width: 280px;
}

.testimonial-image-item-interactieve-nederlandse-lessen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.practical-section-interactieve-nederlandse-lessen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.practical-text-interactieve-nederlandse-lessen {
  flex: 1 1 300px;
  min-width: 280px;
}

.practical-title-interactieve-nederlandse-lessen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.practical-subtitle-interactieve-nederlandse-lessen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin-bottom: 3rem;
}

.practical-heading-interactieve-nederlandse-lessen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.practical-heading-interactieve-nederlandse-lessen:first-child {
  margin-top: 0;
}

.practical-description-interactieve-nederlandse-lessen {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.practical-image-interactieve-nederlandse-lessen {
  flex: 1 1 300px;
  min-width: 280px;
}

.practical-image-item-interactieve-nederlandse-lessen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.content-text-block-interactieve-nederlandse-lessen {
  flex: 1 1 300px;
  min-width: 280px;
}

.content-title-interactieve-nederlandse-lessen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.content-text-interactieve-nederlandse-lessen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-block-interactieve-nederlandse-lessen {
  flex: 1 1 300px;
  min-width: 280px;
}

.content-image-interactieve-nederlandse-lessen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-section-interactieve-nederlandse-lessen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.faq-title-interactieve-nederlandse-lessen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.faq-list-interactieve-nederlandse-lessen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
}

.faq-item-interactieve-nederlandse-lessen {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item-interactieve-nederlandse-lessen[open] {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.faq-question-interactieve-nederlandse-lessen {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  user-select: none;
}

.faq-question-interactieve-nederlandse-lessen:hover {
  background: #f8fafc;
}

.faq-item-interactieve-nederlandse-lessen summary::marker {
  color: #3b82f6;
}

.faq-answer-interactieve-nederlandse-lessen {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.faq-answer-text-interactieve-nederlandse-lessen {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

.cta-section-interactieve-nederlandse-lessen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cta-box-interactieve-nederlandse-lessen {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(59, 130, 246, 0.2);
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-interactieve-nederlandse-lessen {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-description-interactieve-nederlandse-lessen {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button-interactieve-nederlandse-lessen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 600;
  background: #3b82f6;
  color: #0f172a;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-interactieve-nederlandse-lessen:hover {
  background: #60a5fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.disclaimer-section-interactieve-nederlandse-lessen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.disclaimer-box-interactieve-nederlandse-lessen {
  background: #f8fafc;
  border-left: 4px solid #f59e0b;
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

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

.disclaimer-text-interactieve-nederlandse-lessen {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

.related-section-interactieve-nederlandse-lessen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

.related-card-interactieve-nederlandse-lessen {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-interactieve-nederlandse-lessen:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

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

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

.related-card-content-interactieve-nederlandse-lessen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  flex-grow: 1;
}

.related-card-title-interactieve-nederlandse-lessen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.related-card-description-interactieve-nederlandse-lessen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-interactieve-nederlandse-lessen {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.related-card-link-interactieve-nederlandse-lessen:hover {
  color: #2563eb;
  gap: 0.5rem;
}

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

  .hero-text-block-interactieve-nederlandse-lessen,
  .hero-image-block-interactieve-nederlandse-lessen {
    flex: 1 1 100%;
  }

  .introduction-content-interactieve-nederlandse-lessen {
    flex-direction: column;
  }

  .introduction-text-interactieve-nederlandse-lessen,
  .introduction-image-interactieve-nederlandse-lessen {
    flex: 1 1 100%;
  }

  .features-content-interactieve-nederlandse-lessen {
    flex-direction: column;
  }

  .features-text-interactieve-nederlandse-lessen,
  .features-image-interactieve-nederlandse-lessen {
    flex: 1 1 100%;
  }

  .testimonial-content-interactieve-nederlandse-lessen {
    flex-direction: column;
  }

  .testimonial-quote-block-interactieve-nederlandse-lessen,
  .testimonial-image-interactieve-nederlandse-lessen {
    flex: 1 1 100%;
  }

  .practical-content-interactieve-nederlandse-lessen {
    flex-direction: column;
  }

  .practical-text-interactieve-nederlandse-lessen,
  .practical-image-interactieve-nederlandse-lessen {
    flex: 1 1 100%;
  }

  .content-wrapper-interactieve-nederlandse-lessen {
    flex-direction: column;
  }

  .content-text-block-interactieve-nederlandse-lessen,
  .content-image-block-interactieve-nederlandse-lessen {
    flex: 1 1 100%;
  }

  .related-card-interactieve-nederlandse-lessen {
    flex: 1 1 100%;
    max-width: none;
  }

  .faq-question-interactieve-nederlandse-lessen {
    padding: 1.25rem;
    font-size: 0.95rem;
  }

  .faq-answer-interactieve-nederlandse-lessen {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }

  .hero-stats-interactieve-nederlandse-lessen {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .step-item-interactieve-nederlandse-lessen {
    padding: 1.25rem;
    gap: 1rem;
  }

  .step-number-interactieve-nederlandse-lessen {
    min-width: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .related-cards-interactieve-nederlandse-lessen {
    flex-direction: column;
  }

  .related-card-interactieve-nederlandse-lessen {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.hero-section-nederlandse-woordenschat-grammatica {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.breadcrumb-link-nederlandse-woordenschat-grammatica {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.breadcrumb-link-nederlandse-woordenschat-grammatica:hover {
  color: #3b82f6;
}

.breadcrumb-separator-nederlandse-woordenschat-grammatica {
  color: #475569;
  margin: 0 0.25rem;
}

.breadcrumb-current-nederlandse-woordenschat-grammatica {
  color: #cbd5e1;
}

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

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

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

.hero-title-nederlandse-woordenschat-grammatica {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-subtitle-nederlandse-woordenschat-grammatica {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #cbd5e1;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

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

.meta-badge-nederlandse-woordenschat-grammatica {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

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

.hero-cta-nederlandse-woordenschat-grammatica {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.hero-stats-nederlandse-woordenschat-grammatica {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: space-around;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-nederlandse-woordenschat-grammatica {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  flex: 1 1 150px;
}

.stat-number-nederlandse-woordenschat-grammatica {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-nederlandse-woordenschat-grammatica {
  font-size: 0.875rem;
  color: #94a3b8;
}

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

.intro-section-nederlandse-woordenschat-grammatica .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.intro-text-block-nederlandse-woordenschat-grammatica {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-description-nederlandse-woordenschat-grammatica {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

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

.learning-path-section-nederlandse-woordenschat-grammatica .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

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

.section-title-nederlandse-woordenschat-grammatica {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.steps-container-nederlandse-woordenschat-grammatica {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-nederlandse-woordenschat-grammatica {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  align-items: flex-start;
}

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

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

.step-title-nederlandse-woordenschat-grammatica {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

.step-description-nederlandse-woordenschat-grammatica {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.features-section-nederlandse-woordenschat-grammatica .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

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

.feature-card-nederlandse-woordenschat-grammatica:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.feature-title-nederlandse-woordenschat-grammatica {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

.feature-text-nederlandse-woordenschat-grammatica {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.methods-section-nederlandse-woordenschat-grammatica .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.methods-text-block-nederlandse-woordenschat-grammatica {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.methods-description-nederlandse-woordenschat-grammatica {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.methods-highlight-nederlandse-woordenschat-grammatica {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.highlight-title-nederlandse-woordenschat-grammatica {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.highlight-text-nederlandse-woordenschat-grammatica {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

.quote-section-nederlandse-woordenschat-grammatica .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.featured-quote-nederlandse-woordenschat-grammatica {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

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

.quote-author-nederlandse-woordenschat-grammatica {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
}

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

.outcomes-section-nederlandse-woordenschat-grammatica .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.outcomes-wrapper-nederlandse-woordenschat-grammatica {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-top: 3rem;
}

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

.outcomes-text-block-nederlandse-woordenschat-grammatica {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.outcomes-list-nederlandse-woordenschat-grammatica {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.outcome-item-nederlandse-woordenschat-grammatica {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.outcome-icon-nederlandse-woordenschat-grammatica {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: bold;
  flex-shrink: 0;
}

.outcome-text-nederlandse-woordenschat-grammatica {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

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

.cta-section-nederlandse-woordenschat-grammatica .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.cta-box-nederlandse-woordenschat-grammatica {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title-nederlandse-woordenschat-grammatica {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-description-nederlandse-woordenschat-grammatica {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-box-nederlandse-woordenschat-grammatica .btn-light {
  background: #ffffff;
  color: #3b82f6;
  font-weight: 600;
}

.cta-box-nederlandse-woordenschat-grammatica .btn-light:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
}

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

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

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

.disclaimer-title-nederlandse-woordenschat-grammatica {
  font-size: 1.125rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.2;
}

.disclaimer-title-nederlandse-woordenschat-grammatica i {
  font-size: 1.25rem;
}

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

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

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

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

.related-card-nederlandse-woordenschat-grammatica {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-nederlandse-woordenschat-grammatica:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-card-image-nederlandse-woordenschat-grammatica {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-image-nederlandse-woordenschat-grammatica {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-title-nederlandse-woordenschat-grammatica {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0 1.5rem;
  padding-top: 1rem;
  line-height: 1.3;
}

.related-description-nederlandse-woordenschat-grammatica {
  font-size: 0.875rem;
  color: #64748b;
  padding: 0 1.5rem;
  line-height: 1.6;
}

.related-link-nederlandse-woordenschat-grammatica {
  display: inline-block;
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #3b82f6;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-link-nederlandse-woordenschat-grammatica:hover {
  color: #2563eb;
}

@media (max-width: 768px) {
  .hero-content-nederlandse-woordenschat-grammatica,
  .intro-content-nederlandse-woordenschat-grammatica,
  .methods-wrapper-nederlandse-woordenschat-grammatica,
  .outcomes-wrapper-nederlandse-woordenschat-grammatica {
    flex-direction: column;
  }

  .hero-text-block-nederlandse-woordenschat-grammatica,
  .hero-image-block-nederlandse-woordenschat-grammatica,
  .intro-text-block-nederlandse-woordenschat-grammatica,
  .intro-image-block-nederlandse-woordenschat-grammatica,
  .methods-text-block-nederlandse-woordenschat-grammatica,
  .methods-image-block-nederlandse-woordenschat-grammatica,
  .outcomes-image-block-nederlandse-woordenschat-grammatica,
  .outcomes-text-block-nederlandse-woordenschat-grammatica {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

  .stat-item-nederlandse-woordenschat-grammatica {
    flex: 1 1 100%;
  }

  .step-item-nederlandse-woordenschat-grammatica {
    gap: 1rem;
  }

  .step-number-nederlandse-woordenschat-grammatica {
    min-width: 60px;
  }

  .feature-card-nederlandse-woordenschat-grammatica {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-nederlandse-woordenschat-grammatica {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

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

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

.hero-text-block-nederlandse-conversatieclubs {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-nederlandse-conversatieclubs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

.breadcrumb-link-nederlandse-conversatieclubs {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.breadcrumb-link-nederlandse-conversatieclubs:hover {
  color: #3b82f6;
}

.breadcrumb-separator-nederlandse-conversatieclubs {
  color: #475569;
  margin: 0 0.25rem;
}

.breadcrumb-current-nederlandse-conversatieclubs {
  color: #cbd5e1;
  font-weight: 500;
}

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

.hero-subtitle-nederlandse-conversatieclubs {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #38bdf8;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.hero-description-nederlandse-conversatieclubs {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

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

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

.stat-number-nederlandse-conversatieclubs {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.stat-label-nederlandse-conversatieclubs {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-block-nederlandse-conversatieclubs {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-nederlandse-conversatieclubs {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-block-nederlandse-conversatieclubs,
  .hero-image-block-nederlandse-conversatieclubs {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

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

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

.intro-text-column-nederlandse-conversatieclubs {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlandse-conversatieclubs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.intro-text-nederlandse-conversatieclubs {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.intro-image-nederlandse-conversatieclubs {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

.benefits-header-nederlandse-conversatieclubs {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-tag-nederlandse-conversatieclubs {
  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;
}

.benefits-title-nederlandse-conversatieclubs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

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

.benefits-card-nederlandse-conversatieclubs {
  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: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.benefits-card-icon-nederlandse-conversatieclubs {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 10px;
  font-size: 1.5rem;
}

.benefits-card-title-nederlandse-conversatieclubs {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  font-family: 'Poppins', sans-serif;
}

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

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

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

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

.structure-text-column-nederlandse-conversatieclubs {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-nederlandse-conversatieclubs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.structure-text-nederlandse-conversatieclubs {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.structure-quote-nederlandse-conversatieclubs {
  padding: 1.5rem 2rem;
  border-left: 4px solid #3b82f6;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: 4px;
}

.quote-text-nederlandse-conversatieclubs {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-style: italic;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

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

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

.structure-image-nederlandse-conversatieclubs {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

.process-header-nederlandse-conversatieclubs {
  text-align: center;
  margin-bottom: 3rem;
}

.process-tag-nederlandse-conversatieclubs {
  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;
}

.process-title-nederlandse-conversatieclubs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.process-steps-nederlandse-conversatieclubs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-nederlandse-conversatieclubs {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

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

.process-step-title-nederlandse-conversatieclubs {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  font-family: 'Poppins', sans-serif;
}

.process-step-text-nederlandse-conversatieclubs {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .process-step-nederlandse-conversatieclubs {
    gap: 1rem;
  }
}

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

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

.types-image-column-nederlandse-conversatieclubs {
  flex: 1 1 50%;
  max-width: 50%;
}

.types-image-nederlandse-conversatieclubs {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.types-text-column-nederlandse-conversatieclubs {
  flex: 1 1 50%;
  max-width: 50%;
}

.types-title-nederlandse-conversatieclubs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.types-text-nederlandse-conversatieclubs {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.types-list-nederlandse-conversatieclubs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.types-item-nederlandse-conversatieclubs {
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}

.types-item-title-nederlandse-conversatieclubs {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.types-item-text-nederlandse-conversatieclubs {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

  .types-image-column-nederlandse-conversatieclubs,
  .types-text-column-nederlandse-conversatieclubs {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tips-header-nederlandse-conversatieclubs {
  text-align: center;
  margin-bottom: 3rem;
}

.tips-tag-nederlandse-conversatieclubs {
  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;
}

.tips-title-nederlandse-conversatieclubs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

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

.tips-text-column-nederlandse-conversatieclubs {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-item-nederlandse-conversatieclubs {
  margin-bottom: 2rem;
}

.tips-item-title-nederlandse-conversatieclubs {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.tips-item-text-nederlandse-conversatieclubs {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.tips-image-column-nederlandse-conversatieclubs {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-image-nederlandse-conversatieclubs {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

  .tips-text-column-nederlandse-conversatieclubs,
  .tips-image-column-nederlandse-conversatieclubs {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.faq-title-nederlandse-conversatieclubs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2.5rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.faq-items-nederlandse-conversatieclubs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-nederlandse-conversatieclubs {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.faq-summary-nederlandse-conversatieclubs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  background: #f8fafc;
  transition: background 0.2s ease;
  user-select: none;
}

.faq-item-nederlandse-conversatieclubs:hover .faq-summary-nederlandse-conversatieclubs {
  background: #f1f5f9;
}

.faq-question-nederlandse-conversatieclubs {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 600;
  color: #0f172a;
  flex: 1;
  font-family: 'Poppins', sans-serif;
}

.faq-icon-nederlandse-conversatieclubs {
  color: #3b82f6;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item-nederlandse-conversatieclubs[open] .faq-icon-nederlandse-conversatieclubs {
  transform: rotate(180deg);
}

.faq-answer-nederlandse-conversatieclubs {
  padding: 1.5rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

.faq-answer-nederlandse-conversatieclubs p {
  margin: 0;
}

.cta-section-nederlandse-conversatieclubs {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  text-align: center;
}

.cta-content-nederlandse-conversatieclubs {
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-description-nederlandse-conversatieclubs {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-button-nederlandse-conversatieclubs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 600;
  background: #3b82f6;
  color: #0f172a;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 1.5rem;
  cursor: pointer;
}

.cta-button-nederlandse-conversatieclubs:hover {
  background: #60a5fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

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

.disclaimer-content-nederlandse-conversatieclubs {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 4px;
}

.disclaimer-title-nederlandse-conversatieclubs {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.disclaimer-text-nederlandse-conversatieclubs {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

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

.related-title-nederlandse-conversatieclubs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2.5rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

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

.related-card-nederlandse-conversatieclubs {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.related-card-image-nederlandse-conversatieclubs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-nederlandse-conversatieclubs {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-nederlandse-conversatieclubs {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.related-card-text-nederlandse-conversatieclubs {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-nederlandse-conversatieclubs {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.related-card-link-nederlandse-conversatieclubs:hover {
  color: #2563eb;
}

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

@media (max-width: 768px) {
  .cta-button-nederlandse-conversatieclubs {
    width: 100%;
  }
}

.main-nederlands-voor-expats-professionals {
  width: 100%;
}

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

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

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

.hero-text-block-nederlands-voor-expats-professionals {
  flex: 1 1 400px;
  max-width: 50%;
}

.hero-image-block-nederlands-voor-expats-professionals {
  flex: 1 1 400px;
  max-width: 50%;
}

.hero-title-nederlands-voor-expats-professionals {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.hero-subtitle-nederlands-voor-expats-professionals {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-nederlands-voor-expats-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-nederlands-voor-expats-professionals {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #94a3b8;
}

.meta-badge-nederlands-voor-expats-professionals i {
  color: #3b82f6;
  font-size: 0.875rem;
}

.hero-stats-nederlands-voor-expats-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

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

.stat-number-nederlands-voor-expats-professionals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}

.stat-label-nederlands-voor-expats-professionals {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-nederlands-voor-expats-professionals {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.breadcrumbs-nederlands-voor-expats-professionals {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.breadcrumb-link-nederlands-voor-expats-professionals {
  color: #94a3b8;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  text-decoration: none;
}

.breadcrumb-link-nederlands-voor-expats-professionals:hover {
  color: #3b82f6;
}

.breadcrumb-separator-nederlands-voor-expats-professionals {
  color: #475569;
  font-size: 0.875rem;
}

.breadcrumb-current-nederlands-voor-expats-professionals {
  color: #cbd5e1;
  font-size: 0.9375rem;
}

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

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

.intro-text-nederlands-voor-expats-professionals {
  flex: 1 1 400px;
  max-width: 50%;
}

.intro-image-block-nederlands-voor-expats-professionals {
  flex: 1 1 400px;
  max-width: 50%;
}

.intro-title-nederlands-voor-expats-professionals {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

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

.intro-image-nederlands-voor-expats-professionals {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.content-section-1-nederlands-voor-expats-professionals {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-header-nederlands-voor-expats-professionals {
  text-align: center;
  margin-bottom: 3rem;
}

.content-tag-nederlands-voor-expats-professionals {
  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;
}

.content-section-title-nederlands-voor-expats-professionals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.steps-container-nederlands-voor-expats-professionals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-item-nederlands-voor-expats-professionals {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item-nederlands-voor-expats-professionals:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.step-number-nederlands-voor-expats-professionals {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  font-family: 'Poppins', sans-serif;
}

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

.step-title-nederlands-voor-expats-professionals {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.step-description-nederlands-voor-expats-professionals {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.content-section-2-nederlands-voor-expats-professionals {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-2-wrapper-nederlands-voor-expats-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-2-text-nederlands-voor-expats-professionals {
  flex: 1 1 400px;
  max-width: 50%;
}

.content-2-image-nederlands-voor-expats-professionals {
  flex: 1 1 400px;
  max-width: 50%;
}

.content-2-title-nederlands-voor-expats-professionals {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.content-2-intro-nederlands-voor-expats-professionals {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tips-list-nederlands-voor-expats-professionals {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tips-list-item-nederlands-voor-expats-professionals {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #e2e8f0;
  line-height: 1.7;
  padding-left: 0;
}

.tips-list-item-nederlands-voor-expats-professionals strong {
  color: #3b82f6;
  font-weight: 600;
}

.content-2-image-tag-nederlands-voor-expats-professionals {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.features-section-nederlands-voor-expats-professionals {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-header-nederlands-voor-expats-professionals {
  text-align: center;
  margin-bottom: 3.5rem;
}

.features-tag-nederlands-voor-expats-professionals {
  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;
}

.features-title-nederlands-voor-expats-professionals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

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

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

.features-card-nederlands-voor-expats-professionals {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-nederlands-voor-expats-professionals:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.features-card-title-nederlands-voor-expats-professionals {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.features-card-text-nederlands-voor-expats-professionals {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.content-section-3-nederlands-voor-expats-professionals {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-3-wrapper-nederlands-voor-expats-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-3-image-nederlands-voor-expats-professionals {
  flex: 1 1 400px;
  max-width: 50%;
}

.content-3-text-nederlands-voor-expats-professionals {
  flex: 1 1 400px;
  max-width: 50%;
}

.content-3-image-tag-nederlands-voor-expats-professionals {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.content-3-title-nederlands-voor-expats-professionals {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.content-3-description-nederlands-voor-expats-professionals {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.quote-block-nederlands-voor-expats-professionals {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quote-text-nederlands-voor-expats-professionals {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: #1e293b;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 500;
}

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

.conclusion-section-nederlands-voor-expats-professionals {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-nederlands-voor-expats-professionals {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-nederlands-voor-expats-professionals {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.conclusion-text-nederlands-voor-expats-professionals {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.conclusion-cta-box-nederlands-voor-expats-professionals {
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid #3b82f6;
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.cta-title-nederlands-voor-expats-professionals {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.cta-description-nederlands-voor-expats-professionals {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.related-section-nederlands-voor-expats-professionals {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-nederlands-voor-expats-professionals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

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

.related-card-nederlands-voor-expats-professionals {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-nederlands-voor-expats-professionals:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-card-image-nederlands-voor-expats-professionals {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-nederlands-voor-expats-professionals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.related-card-title-nederlands-voor-expats-professionals {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}

.related-card-description-nederlands-voor-expats-professionals {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-nederlands-voor-expats-professionals {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-nederlands-voor-expats-professionals:hover {
  color: #2563eb;
}

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

.disclaimer-content-nederlands-voor-expats-professionals {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-nederlands-voor-expats-professionals {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.disclaimer-text-nederlands-voor-expats-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-nederlands-voor-expats-professionals,
  .intro-content-nederlands-voor-expats-professionals,
  .content-2-wrapper-nederlands-voor-expats-professionals,
  .content-3-wrapper-nederlands-voor-expats-professionals {
    flex-direction: column;
  }

  .hero-text-block-nederlands-voor-expats-professionals,
  .hero-image-block-nederlands-voor-expats-professionals,
  .intro-text-nederlands-voor-expats-professionals,
  .intro-image-block-nederlands-voor-expats-professionals,
  .content-2-text-nederlands-voor-expats-professionals,
  .content-2-image-nederlands-voor-expats-professionals,
  .content-3-image-nederlands-voor-expats-professionals,
  .content-3-text-nederlands-voor-expats-professionals {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-nederlands-voor-expats-professionals {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-nederlands-voor-expats-professionals {
    font-size: 2rem;
    min-width: auto;
  }

  .features-card-nederlands-voor-expats-professionals {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-nederlands-voor-expats-professionals {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-nederlands-voor-expats-professionals {
    gap: 1.5rem;
  }

  .stat-item-nederlands-voor-expats-professionals {
    flex: 1 1 45%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .features-card-nederlands-voor-expats-professionals {
    flex: 1 1 calc(50% - 1rem);
  }

  .related-card-nederlands-voor-expats-professionals {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .features-card-nederlands-voor-expats-professionals {
    flex: 1 1 calc(33.333% - 1.33rem);
  }
}

:root {
    --color-bg-primary-dark: #0f172a;
    --color-bg-secondary-dark: #1e293b;
    --color-bg-tertiary-dark: #334155;
    --color-bg-light: #ffffff;
    --color-bg-light-secondary: #f8fafc;
    --color-bg-light-tertiary: #f1f5f9;
    --color-bg-card-dark: rgba(255, 255, 255, 0.05);
    --color-bg-card-light: #ffffff;
    --color-text-light: #ffffff;
    --color-text-light-secondary: #cbd5e1;
    --color-text-light-muted: #94a3b8;
    --color-text-dark: #1e293b;
    --color-text-dark-secondary: #475569;
    --color-text-dark-muted: #64748b;
    --color-primary: #3b82f6;
    --color-primary-hover: #2563eb;
    --color-primary-dark: #1e40af;
    --color-secondary: #06b6d4;
    --color-secondary-hover: #0891b2;
    --color-accent: #f59e0b;
    --color-accent-hover: #d97706;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  }

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

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

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

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

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

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

  .hero-header-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-title-about {
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle-about {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
    color: var(--color-text-dark-secondary);
    max-width: 700px;
    line-height: 1.6;
  }

  .hero-stats-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3.5rem);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: var(--color-bg-light-tertiary);
    border-radius: var(--radius-lg);
  }

  .stat-item-about {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

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

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

  .hero-visual-about {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-lg);
  }

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

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

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

  .section-header-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .section-tag-about {
    display: inline-block;
    width: fit-content;
    padding: 0.375rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
  }

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

  .section-intro-about {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--color-text-dark-secondary);
    max-width: 800px;
    line-height: 1.7;
  }

  .timeline-steps-about {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: 2rem;
  }

  .timeline-step-about {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    align-items: flex-start;
  }

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

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

  .step-title-about {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--color-text-dark);
  }

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

  @media (min-width: 768px) {
    .foundation-section-about {
      padding: clamp(4rem, 10vw, 7rem) 0;
    }
  }

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

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

  .approach-intro-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
  }

  .approach-description-about {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    color: var(--color-text-dark-secondary);
    line-height: 1.7;
  }

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

  .feature-card-about {
    flex: 1 1 280px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-light-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-bg-light-tertiary);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

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

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

  .feature-title-about {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
  }

  .feature-text-about {
    font-size: 0.9375rem;
    color: var(--color-text-dark-muted);
    line-height: 1.6;
  }

  .approach-visual-about {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .approach-section-about {
      padding: clamp(4rem, 10vw, 7rem) 0;
    }

    .feature-card-about {
      flex: 1 1 300px;
    }
  }

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

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

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

  .commitment-item-about {
    flex: 1 1 280px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-bg-light-tertiary);
  }

  .commitment-number-about {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
  }

  .commitment-heading-about {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
  }

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

  .commitment-image-about {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-md);
  }

  @media (min-width: 768px) {
    .commitment-section-about {
      padding: clamp(4rem, 10vw, 7rem) 0;
    }

    .commitment-item-about {
      flex: 1 1 300px;
    }
  }

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

  .quote-content-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .featured-quote-about {
    padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
    border-left: 4px solid var(--color-secondary);
    background: var(--color-bg-light-tertiary);
    max-width: 700px;
    margin: 0;
    border-radius: var(--radius-lg);
  }

  .quote-text-about {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--color-text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .quote-author-about {
    font-size: 0.9375rem;
    color: var(--color-text-dark-secondary);
    font-style: normal;
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .quote-section-about {
      padding: clamp(4rem, 10vw, 7rem) 0;
    }
  }

  .disclaimer-section-about {
    background: var(--color-bg-light-secondary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-bg-light-tertiary);
  }

  .disclaimer-content-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
  }

  .disclaimer-header-about {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .disclaimer-icon-about {
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .disclaimer-title-about {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
  }

  .disclaimer-text-about {
    font-size: 0.875rem;
    color: var(--color-text-dark-secondary);
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .disclaimer-section-about {
      padding: clamp(3rem, 8vw, 5rem) 0;
    }
  }

.legal-hub {
  width: 100%;
  font-family: var(--font-primary);
}

.legal-hub h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.legal-hub h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-hub p,
.legal-hub li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-dark-secondary);
  margin-bottom: 1rem;
}

.legal-hub a {
  color: var(--color-primary);
  text-decoration: underline;
}

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

.legal-hub strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

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

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

.legal-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.legal-hero-content .legal-last-updated {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-dark-muted);
  font-style: italic;
}

.legal-content-section {
  width: 100%;
  background: var(--color-bg-light);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.legal-content-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-content-block h2 {
  color: var(--color-text-dark);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-bg-light-secondary);
}

.legal-content-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-content-block li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark-secondary);
}

.legal-content-block li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-contact-section {
  width: 100%;
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 4rem);
}

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

.legal-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-contact-content h2 {
  color: var(--color-text-dark);
}

.legal-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-contact-item strong {
  color: var(--color-text-dark);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.legal-contact-item p {
  color: var(--color-text-dark-secondary);
  margin-bottom: 0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

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

  .legal-content-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .legal-contact-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .legal-content-block h2 {
    margin-top: 2.5rem;
  }

  .legal-content-block h2:first-child {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .legal-hero-section {
    padding: 6rem 0;
  }

  .legal-content-section {
    padding: 5rem 0;
  }

  .legal-contact-section {
    padding: 6rem 0;
  }
}

.legal-hub h1,
.legal-hub h2,
.legal-hub h3 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-page {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary-dark);
  padding: clamp(2rem, 8vw, 6rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.thank-icon {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-secondary);
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.thank-section h1 {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.3px;
}

.thank-description {
  color: var(--color-text-light-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  width: 100%;
  max-width: 500px;
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.thank-subtitle {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

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

.thank-list li {
  color: var(--color-text-light-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-list i {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  gap: 0.5rem;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 8rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .thank-next-steps {
    padding: clamp(2rem, 3vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: 2.5rem;
  }

  .thank-icon {
    animation: float-icon 3s ease-in-out infinite;
  }

  @keyframes float-icon {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  .thank-next-steps {
    padding: 2.5rem;
  }

  .btn:hover {
    transform: translateY(-4px);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

.error-404-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, var(--color-bg-primary-dark) 0%, #0a1628 100%);
  padding: clamp(2rem, 10vh, 4rem) var(--space-lg);
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.error-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.error-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.error-decoration {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--color-primary);
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
  transition: all var(--transition-base);
}

.error-decoration-top {
  animation-delay: 0s;
}

.error-decoration-bottom {
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-code-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
  animation: pulse-scale 2s ease-in-out infinite;
}

@keyframes pulse-scale {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.error-code-divider {
  width: clamp(3rem, 15vw, 8rem);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  border-radius: var(--radius-full);
}

.error-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: #ffffff;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.error-message {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 520px;
  margin: 0;
  line-height: 1.7;
  font-weight: 400;
}

.error-context {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 520px;
  margin: clamp(0.5rem, 2vw, 1rem) 0;
  transition: all var(--transition-base);
}

.error-context:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.error-subtext {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-secondary);
  margin: 0;
  line-height: 1.6;
}

.error-subtext strong {
  color: var(--color-primary);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #000000;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-large {
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.btn i {
  font-size: 1.2em;
}

.error-footer-text {
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  color: var(--color-text-light-muted);
  margin: clamp(1rem, 2vw, 1.5rem) 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  line-height: 1.5;
}

.error-footer-text strong {
  color: var(--color-secondary);
  font-weight: 600;
}

.error-footer-text i {
  color: var(--color-accent);
  font-size: 1.1em;
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 12vh, 5rem) var(--space-lg);
    min-height: 100vh;
  }

  .error-code {
    animation: pulse-scale 2.5s ease-in-out infinite;
  }

  .error-decoration {
    font-size: clamp(3rem, 8vw, 5rem);
  }

  .error-context {
    padding: clamp(1.5rem, 3.5vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 4rem var(--space-lg);
  }

  .error-content {
    gap: 3rem;
  }

  .error-code {
    font-size: clamp(5rem, 15vw, 8rem);
  }

  .error-heading {
    font-size: clamp(2rem, 6vw, 2.75rem);
  }

  .error-message {
    font-size: 1.125rem;
  }

  .btn-primary:hover {
    box-shadow: 0 16px 32px rgba(59, 130, 246, 0.5);
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 6rem var(--space-lg);
  }

  .error-content {
    gap: 3.5rem;
  }

  .error-code {
    font-size: 8rem;
  }

  .error-heading {
    font-size: 2.75rem;
  }
}

.error-heading,
.error-message,
.error-subtext,
.error-footer-text {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-decoration,
  .btn {
    animation: none;
  }

  .error-decoration,
  .error-context,
  .btn {
    transition: none;
  }
}

@media print {
  .error-section {
    background: white;
    min-height: auto;
    padding: 2rem;
  }

  .error-code {
    -webkit-text-fill-color: #1e293b;
    color: #1e293b;
  }

  .error-heading {
    color: #1e293b;
  }

  .error-message,
  .error-subtext,
  .error-footer-text {
    color: #475569;
  }

  .btn {
    display: none;
  }
}