
    @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-dark-primary: #0c1929;
  --color-bg-dark-secondary: #162d50;
  --color-bg-dark-tertiary: #1e3a5f;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(59, 130, 246, 0.08);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-light-primary: #ffffff;
  --color-text-light-secondary: #bfdbfe;
  --color-text-light-muted: #60a5fa;
  --color-text-dark-primary: #0c1929;
  --color-text-dark-secondary: #1e293b;
  --color-text-dark-muted: #475569;
  
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

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

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

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

.btn-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-light {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

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

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

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

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

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

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

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

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

.card-dark {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.card-dark:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

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

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

.icon-sm {
  font-size: 1.25rem;
}

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

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

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-text-dark-muted);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--color-text-dark-primary);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.py-1 { padding: var(--space-sm) 0; }
.py-2 { padding: var(--space-md) 0; }
.py-3 { padding: var(--space-lg) 0; }
.py-4 { padding: var(--space-xl) 0; }

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

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

@media (max-width: 768px) {
  h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
  h2 { font-size: clamp(1.25rem, 3vw, 2rem); }
  h3 { font-size: clamp(1rem, 2.5vw, 1.5rem); }
  
  .hide-mobile { display: none; }
}

@media (min-width: 769px) {
  .show-mobile { display: none; }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-light-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
  
  .no-print {
    display: none !important;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

  .header-fluency-hub {
    background: var(--color-bg-dark-primary);
    padding: 1.25rem 0;
    position: static;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }

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

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

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

  .header-fluency-hub-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
  }

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

  .header-fluency-hub-nav-link {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 500;
    color: #bfdbfe;
    text-decoration: none;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

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

  .header-fluency-hub-nav-link:hover {
    color: #ffffff;
  }

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

  .header-fluency-hub-cta-button {
    display: none;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: #0c1929;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .header-fluency-hub-cta-button:active {
    transform: translateY(0);
  }

  .header-fluency-hub-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
    z-index: 101;
  }

  .header-fluency-hub-mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
  }

  .header-fluency-hub-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
  }

  .header-fluency-hub-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .header-fluency-hub-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
  }

  .header-fluency-hub-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }

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

  .header-fluency-hub-mobile-header {
    display: flex;
    justify-content: flex-end;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }

  .header-fluency-hub-mobile-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 300ms ease;
  }

  .header-fluency-hub-mobile-close:active {
    color: var(--color-primary);
  }

  .header-fluency-hub-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
    flex: 1;
  }

  .header-fluency-hub-mobile-link {
    padding: 1rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    font-weight: 500;
    color: #bfdbfe;
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 130, 246, 0.08);
    transition: all 300ms ease;
  }

  .header-fluency-hub-mobile-link:active {
    background: rgba(59, 130, 246, 0.1);
    color: #ffffff;
  }

  .header-fluency-hub-mobile-cta {
    margin: 2rem 1.5rem 0 1.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--color-primary);
    color: #0c1929;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    transition: all 300ms ease;
    display: block;
  }

  .header-fluency-hub-mobile-cta:active {
    background: var(--color-primary-hover);
    transform: scale(0.98);
  }

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

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

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

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

    .header-fluency-hub-logo-text {
      font-size: 1.375rem;
    }
  }

  @media (min-width: 1024px) {
    .header-fluency-hub-container {
      gap: 3rem;
    }

    .header-fluency-hub-desktop-nav {
      gap: 3.5rem;
    }

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

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

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

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

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

.hero-ambient-glow-index {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field-index {
  position: absolute;
  top: 20%;
  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-index {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-side-orb-index {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-bottom-glow-index {
  position: absolute;
  bottom: 0;
  center: 50%;
  width: 400px;
  height: 200px;
  background: rgba(96, 165, 250, 0.06);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-text-block-index {
  flex: 1 1 400px;
  max-width: 600px;
}

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

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

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

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

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

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

.hero-stat-label-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #cbd5e1;
  opacity: 0.9;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-btn-primary-index {
  background: var(--color-primary);
  color: #0c1929;
}

.hero-btn-primary-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
}

.hero-btn-secondary-index {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-btn-secondary-index:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #60a5fa;
  color: #60a5fa;
}

.hero-image-index {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

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

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

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

.about-glow-element-index {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.about-corner-accent-index {
  position: absolute;
  bottom: 20%;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

.about-text-block-index {
  flex: 1 1 400px;
  max-width: 600px;
}

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

.about-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.about-description-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.7;
}

.about-features-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.about-feature-icon-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: 600;
}

.about-feature-text-index {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
}

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

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

.approach-gradient-mesh-index {
  position: absolute;
  top: -10%;
  right: -100px;
  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;
}

.approach-floating-shape-index {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50% 30% 60% 40% / 60% 40% 30% 50%;
  z-index: 1;
  pointer-events: none;
}

.approach-glow-accent-index {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.approach-side-element-index {
  position: absolute;
  bottom: 20%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.approach-decorative-line-index {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

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

.approach-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.approach-step-index {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-step-index:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(8px);
}

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

.approach-step-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.approach-step-text-index {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .approach-step-index {
    flex-direction: column;
  }
  
  .approach-step-number-index {
    min-width: auto;
  }
}

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

.features-ambient-glow-index {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-color-field-index {
  position: absolute;
  bottom: 5%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.features-accent-blob-index {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50% 40% 70% 30% / 40% 70% 30% 50%;
  z-index: 1;
  pointer-events: none;
}

.features-corner-glow-index {
  position: absolute;
  top: 20%;
  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;
}

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

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

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

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

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

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

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

.features-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0c1929;
}

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

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

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

.featured-posts-gradient-index {
  position: absolute;
  top: 10%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.featured-posts-glow-index {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

.featured-posts-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.featured-posts-card-index {
  flex: 1 1 300px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-posts-card-index:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
}

.featured-posts-card-image-index {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.featured-posts-card-content-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-posts-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

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

.featured-posts-card-link-index {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: all 300ms ease-in-out;
}

.featured-posts-card-link-index:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

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

.featured-posts-btn-index {
  background: var(--color-primary);
  color: #0c1929;
}

.featured-posts-btn-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
}

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

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

.testimony-glow-left-index {
  position: absolute;
  left: -100px;
  top: 50%;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.testimony-glow-right-index {
  position: absolute;
  right: -100px;
  bottom: 20%;
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.testimony-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

.testimony-quote-index {
  flex: 1 1 400px;
  padding: clamp(2rem, 3vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-light-secondary);
  border-radius: 8px;
  margin: 0;
}

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

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

.testimony-stats-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2.5rem);
}

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

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

.testimony-stat-label-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #475569;
  font-weight: 500;
}

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

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

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

.cta-glow-bottom-index {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-accent-line-index {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.cta-floating-accent-index {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.cta-shape-element-index {
  position: absolute;
  top: 50%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.cta-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  line-height: 1.2;
}

.cta-description-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #bfdbfe;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.6;
}

.cta-btn-index {
  background: var(--color-primary);
  color: #0c1929;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.cta-btn-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3);
}

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

.contact-ambient-glow-index {
  position: absolute;
  top: 10%;
  right: -150px;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-color-field-index {
  position: absolute;
  bottom: 5%;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.contact-corner-accent-index {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-accent-shape-index {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 50% 30% 60% 40% / 60% 40% 30% 50%;
  z-index: 1;
  pointer-events: none;
}

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

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

.contact-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

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

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

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

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: #0c1929;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 300ms ease-in-out;
}

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

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

.contact-submit-btn-index {
  width: 100%;
  padding: clamp(0.875rem, 1.5vw, 1.25rem);
  background: var(--color-primary);
  color: #0c1929;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-submit-btn-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

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

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

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

.contact-info-title-index {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0c1929;
}

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

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

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

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

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

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

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

.cookie-banner-link-index {
  color: #60a5fa;
  text-decoration: underline;
  transition: color 300ms ease-in-out;
}

.cookie-banner-link-index:hover {
  color: #38bdf8;
}

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

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

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

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

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

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

@media (min-width: 768px) {
  .hero-section-index,
  .about-section-index,
  .approach-section-index,
  .features-section-index,
  .featured-posts-section-index,
  .testimony-section-index,
  .cta-section-index,
  .contact-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-index,
  .about-section-index,
  .approach-section-index,
  .features-section-index,
  .featured-posts-section-index,
  .testimony-section-index,
  .cta-section-index,
  .contact-section-index {
    padding: 6rem 0;
  }
}

@media (max-width: 480px) {
  .hero-stats-index {
    gap: 1rem;
  }
  
  .hero-stat-number-index {
    font-size: 1.75rem;
  }
  
  .cookie-banner-index {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons-index {
    width: 100%;
  }
  
  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 45%;
  }
}

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

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
  position: relative;
  z-index: 10;
}

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

.footer-about {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.footer-navigation {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

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

.footer-contact {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

.footer-contact-item {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #bfdbfe;
  margin: 0;
  line-height: 1.6;
}

.footer-contact-label {
  font-weight: 500;
  color: #ffffff;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-contact-value {
  color: #bfdbfe;
  display: block;
}

.footer-legal {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

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

.footer-copyright {
  flex: 1 1 100%;
  border-top: 1px solid rgba(96, 165, 250, 0.1);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.footer-copyright-text {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #60a5fa;
  margin: 0;
  text-align: center;
}

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

  .footer-content {
    gap: clamp(2.5rem, 6vw, 4rem);
  }

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

  .footer-navigation {
    flex: 0 1 auto;
  }

  .footer-contact {
    flex: 0 1 auto;
  }

  .footer-legal {
    flex: 0 1 auto;
  }

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

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

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

  .footer-content {
    gap: 4rem;
  }

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

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

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

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

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

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

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

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

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

.hero-decoration-gradient-field {
  position: absolute;
  top: 50%;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-accent-shape-1 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-decoration-accent-shape-2 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-float-element {
  position: absolute;
  bottom: 20%;
  left: 50%;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(96, 165, 250, 0.1);
  border-radius: 12px;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-light-ray {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-decoration-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at bottom-left, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-pulse-orb {
  position: absolute;
  bottom: 15%;
  right: 30%;
  width: 150px;
  height: 150px;
  background: rgba(96, 165, 250, 0.07);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-tag-dutch-confidence {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title-dutch-confidence {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-description-dutch-confidence {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.hero-stat-label-dutch-confidence {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #60a5fa;
  font-weight: 500;
}

.hero-cta-group-dutch-confidence {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.hero-cta-group-dutch-confidence .btn {
  min-width: 180px;
}

@media (max-width: 768px) {
  .hero-section-dutch-confidence {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .hero-cta-group-dutch-confidence {
    flex-direction: column;
  }

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

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

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

.posts-decoration-soft-gradient {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.posts-decoration-accent-blob {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 45% 55% 35% 65% / 55% 45% 65% 35%;
  z-index: 1;
  pointer-events: none;
}

.posts-decoration-subtle-line {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.posts-tag-dutch-confidence {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

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

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

.card-dutch-confidence {
  flex: 1 1 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-dutch-confidence:hover {
  border-color: #bfdbfe;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
  transform: translateY(-6px);
}

.card-image-dutch-confidence {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  background: #f1f5f9;
}

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

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

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

.card-meta-item-dutch-confidence {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.card-meta-item-dutch-confidence i {
  color: #3b82f6;
  font-size: 0.875rem;
}

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

.card-link-dutch-confidence:hover {
  color: #2563eb;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .posts-section-dutch-confidence {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

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

  .posts-header-dutch-confidence {
    margin-bottom: 2.5rem;
  }
}

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

.learning-decoration-geometric-accent {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.learning-decoration-soft-glow {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.learning-tag-dutch-confidence {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

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

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

.learning-step-dutch-confidence {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.learning-step-dutch-confidence:hover {
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.12);
  transform: translateX(4px);
}

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

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

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

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

@media (max-width: 768px) {
  .learning-path-section-dutch-confidence {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .learning-step-dutch-confidence {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

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

.insight-section-dutch-confidence {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--color-bg-dark-secondary);
  overflow: hidden;
}

.insight-decoration-primary-glow {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.insight-decoration-secondary-shape {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 40% 60% 50% 50% / 50% 50% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

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

.insight-quote-dutch-confidence {
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-left: 5px solid #60a5fa;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 8px;
}

.insight-quote-text-dutch-confidence {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.375rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.insight-quote-cite-dutch-confidence {
  font-size: 0.9375rem;
  color: #bfdbfe;
  font-style: normal;
  font-weight: 500;
}

.insight-context-dutch-confidence {
  padding-top: 2rem;
  border-top: 1px solid rgba(96, 165, 250, 0.2);
}

.insight-context-text-dutch-confidence {
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .insight-section-dutch-confidence {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .insight-quote-dutch-confidence {
    padding: 1.5rem;
  }
}

.cta-section-dutch-confidence {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
  overflow: hidden;
}

.cta-decoration-dynamic-glow {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-decoration-accent-wave {
  position: absolute;
  bottom: -50px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.cta-box-dutch-confidence {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
}

.cta-title-dutch-confidence {
  font-size: clamp(1.5rem, 3.5vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cta-description-dutch-confidence {
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1.125rem);
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-cta-primary-dutch-confidence {
  background: #3b82f6;
  color: #0c1929;
  font-weight: 700;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-cta-primary-dutch-confidence:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
  .cta-section-dutch-confidence {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  .cta-box-dutch-confidence {
    padding: clamp(1.5rem, 4vw, 2rem);
  }
}

@media (max-width: 480px) {
  .hero-stats-dutch-confidence {
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .learning-step-dutch-confidence {
    padding: 1.25rem;
  }

  .card-dutch-confidence {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
}

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

.main-uitspraak-perfectioneren {
  width: 100%;
}

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

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

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

.breadcrumb-link-uitspraak-perfectioneren {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-uitspraak-perfectioneren:hover {
  color: #93c5fd;
}

.breadcrumb-separator-uitspraak-perfectioneren {
  color: #475569;
}

.breadcrumb-current-uitspraak-perfectioneren {
  color: #cbd5e1;
}

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

.hero-text-block-uitspraak-perfectioneren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-uitspraak-perfectioneren {
  font-size: clamp(2rem, 5vw + 1rem, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-uitspraak-perfectioneren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #bfdbfe;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero-meta-uitspraak-perfectioneren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-uitspraak-perfectioneren {
  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: #60a5fa;
}

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

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

.stat-item-uitspraak-perfectioneren {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.stat-label-uitspraak-perfectioneren {
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-image-block-uitspraak-perfectioneren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-featured-image-uitspraak-perfectioneren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

  .hero-stats-uitspraak-perfectioneren {
    gap: 1rem;
  }

  .stat-number-uitspraak-perfectioneren {
    font-size: 1.5rem;
  }
}

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

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

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

.intro-text-uitspraak-perfectioneren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-heading-uitspraak-perfectioneren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.intro-paragraph-uitspraak-perfectioneren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-uitspraak-perfectioneren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-content-uitspraak-perfectioneren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

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

.content-section-one-uitspraak-perfectioneren {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.content-text-one-uitspraak-perfectioneren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-one-uitspraak-perfectioneren {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.content-paragraph-uitspraak-perfectioneren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-highlight-uitspraak-perfectioneren {
  background: #ffffff;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-left: 4px solid #3b82f6;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.highlight-title-uitspraak-perfectioneren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.highlight-text-uitspraak-perfectioneren {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.content-image-one-uitspraak-perfectioneren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-uitspraak-perfectioneren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-one-uitspraak-perfectioneren {
    flex-direction: column;
  }

  .content-text-one-uitspraak-perfectioneren,
  .content-image-one-uitspraak-perfectioneren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-uitspraak-perfectioneren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.content-image-two-uitspraak-perfectioneren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-two-uitspraak-perfectioneren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.content-text-two-uitspraak-perfectioneren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-two-uitspraak-perfectioneren {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tips-list-uitspraak-perfectioneren {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.tip-item-uitspraak-perfectioneren {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: #f1f5f9;
  border-radius: 8px;
}

.tip-number-uitspraak-perfectioneren {
  font-size: 1.5rem;
  font-weight: 800;
  color: #3b82f6;
  flex-shrink: 0;
  min-width: 40px;
}

.tip-content-uitspraak-perfectioneren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tip-title-uitspraak-perfectioneren {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.tip-text-uitspraak-perfectioneren {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-wrapper-two-uitspraak-perfectioneren {
    flex-direction: column-reverse;
  }

  .content-image-two-uitspraak-perfectioneren,
  .content-text-two-uitspraak-perfectioneren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.learning-process-section-uitspraak-perfectioneren {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.process-header-uitspraak-perfectioneren {
  text-align: center;
  margin-bottom: 3rem;
}

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

.process-subtitle-uitspraak-perfectioneren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-uitspraak-perfectioneren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-uitspraak-perfectioneren {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

.process-step-content-uitspraak-perfectioneren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.process-step-title-uitspraak-perfectioneren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.process-step-text-uitspraak-perfectioneren {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step-uitspraak-perfectioneren {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step-number-uitspraak-perfectioneren {
    min-width: auto;
  }
}

.practice-tools-section-uitspraak-perfectioneren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.tools-title-uitspraak-perfectioneren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 3rem;
}

.tools-grid-uitspraak-perfectioneren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tool-card-uitspraak-perfectioneren {
  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: all 0.3s ease;
}

.tool-card-uitspraak-perfectioneren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #3b82f6;
}

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

.tool-card-title-uitspraak-perfectioneren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.tool-card-text-uitspraak-perfectioneren {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

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

.quote-section-uitspraak-perfectioneren {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.featured-quote-uitspraak-perfectioneren {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 4px;
  margin: 0;
}

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

.quote-author-uitspraak-perfectioneren {
  font-size: 0.9375rem;
  color: #94a3b8;
  font-style: normal;
  display: block;
}

.content-section-three-uitspraak-perfectioneren {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.content-text-three-uitspraak-perfectioneren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-three-uitspraak-perfectioneren {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.mistake-list-uitspraak-perfectioneren {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.mistake-item-uitspraak-perfectioneren {
  padding: 1.25rem;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 4px;
}

.mistake-title-uitspraak-perfectioneren {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.mistake-description-uitspraak-perfectioneren {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.content-image-three-uitspraak-perfectioneren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-three-uitspraak-perfectioneren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-three-uitspraak-perfectioneren {
    flex-direction: column;
  }

  .content-text-three-uitspraak-perfectioneren,
  .content-image-three-uitspraak-perfectioneren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-content-uitspraak-perfectioneren {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-uitspraak-perfectioneren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.conclusion-text-uitspraak-perfectioneren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-action-uitspraak-perfectioneren {
  margin-top: 2rem;
}

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

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

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

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

.related-title-uitspraak-perfectioneren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 0.5rem;
}

.related-subtitle-uitspraak-perfectioneren {
  font-size: 1rem;
  color: #374151;
  text-align: center;
  margin-bottom: 2rem;
}

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

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

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

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

.related-image-uitspraak-perfectioneren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-uitspraak-perfectioneren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0 1.5rem;
  padding-top: 1rem;
}

.related-card-text-uitspraak-perfectioneren {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
  padding: 0 1.5rem;
}

.related-link-uitspraak-perfectioneren {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #3b82f6;
  padding: 0 1.5rem 1.5rem 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-link-uitspraak-perfectioneren:hover {
  color: #2563eb;
}

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

.disclaimer-section-uitspraak-perfectioneren {
  background: #0c1929;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-uitspraak-perfectioneren {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid #3b82f6;
  border-radius: 4px;
}

.disclaimer-title-uitspraak-perfectioneren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-uitspraak-perfectioneren {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .disclaimer-content-uitspraak-perfectioneren {
    padding: 1rem;
  }

  .disclaimer-title-uitspraak-perfectioneren {
    font-size: 1rem;
  }

  .disclaimer-text-uitspraak-perfectioneren {
    font-size: 0.875rem;
  }
}

.main-natuurlijke-gesprekken-voeren {
  width: 100%;
}

.main-natuurlijke-gesprekken-voeren section {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-natuurlijke-gesprekken-voeren {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

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

.hero-text-wrapper-natuurlijke-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-natuurlijke-gesprekken-voeren {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-natuurlijke-gesprekken-voeren {
  color: #60a5fa;
  transition: color 0.2s ease;
}

.breadcrumb-link-natuurlijke-gesprekken-voeren:hover {
  color: #38bdf8;
}

.breadcrumb-separator-natuurlijke-gesprekken-voeren {
  color: #475569;
}

.breadcrumb-current-natuurlijke-gesprekken-voeren {
  color: #cbd5e1;
}

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

.hero-subtitle-natuurlijke-gesprekken-voeren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-meta-natuurlijke-gesprekken-voeren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-natuurlijke-gesprekken-voeren {
  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: #60a5fa;
}

.meta-badge-natuurlijke-gesprekken-voeren i {
  font-size: 1rem;
}

.hero-stats-natuurlijke-gesprekken-voeren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.stat-item-natuurlijke-gesprekken-voeren {
  flex: 1 1 auto;
}

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

.stat-label-natuurlijke-gesprekken-voeren {
  display: block;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-wrapper-natuurlijke-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-natuurlijke-gesprekken-voeren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-natuurlijke-gesprekken-voeren {
    flex-direction: column;
  }

  .hero-text-wrapper-natuurlijke-gesprekken-voeren,
  .hero-image-wrapper-natuurlijke-gesprekken-voeren {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

.introduction-section-natuurlijke-gesprekken-voeren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.intro-text-natuurlijke-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-natuurlijke-gesprekken-voeren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-natuurlijke-gesprekken-voeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.intro-image-wrapper-natuurlijke-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-natuurlijke-gesprekken-voeren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-content-natuurlijke-gesprekken-voeren {
    flex-direction: column;
  }

  .intro-text-natuurlijke-gesprekken-voeren,
  .intro-image-wrapper-natuurlijke-gesprekken-voeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-natuurlijke-gesprekken-voeren {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.process-header-natuurlijke-gesprekken-voeren {
  text-align: center;
  margin-bottom: 3rem;
}

.process-tag-natuurlijke-gesprekken-voeren {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.process-title-natuurlijke-gesprekken-voeren {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.process-subtitle-natuurlijke-gesprekken-voeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-natuurlijke-gesprekken-voeren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-natuurlijke-gesprekken-voeren {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

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

.process-step-content-natuurlijke-gesprekken-voeren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-natuurlijke-gesprekken-voeren {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

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

@media (max-width: 768px) {
  .process-step-natuurlijke-gesprekken-voeren {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step-number-natuurlijke-gesprekken-voeren {
    min-width: auto;
  }
}

.techniques-section-natuurlijke-gesprekken-voeren {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.techniques-text-natuurlijke-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-natuurlijke-gesprekken-voeren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

.techniques-intro-natuurlijke-gesprekken-voeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.techniques-list-natuurlijke-gesprekken-voeren {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.technique-item-natuurlijke-gesprekken-voeren {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.technique-item-natuurlijke-gesprekken-voeren:last-child {
  border-bottom: none;
}

.technique-item-title-natuurlijke-gesprekken-voeren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0c1929;
  margin-bottom: 0.5rem;
}

.technique-item-text-natuurlijke-gesprekken-voeren {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.techniques-image-wrapper-natuurlijke-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-natuurlijke-gesprekken-voeren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .techniques-wrapper-natuurlijke-gesprekken-voeren {
    flex-direction: column;
  }

  .techniques-text-natuurlijke-gesprekken-voeren,
  .techniques-image-wrapper-natuurlijke-gesprekken-voeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practical-section-natuurlijke-gesprekken-voeren {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.practical-header-natuurlijke-gesprekken-voeren {
  text-align: center;
  margin-bottom: 3rem;
}

.practical-tag-natuurlijke-gesprekken-voeren {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.practical-title-natuurlijke-gesprekken-voeren {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.practical-content-natuurlijke-gesprekken-voeren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-text-natuurlijke-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-intro-natuurlijke-gesprekken-voeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.expressions-grid-natuurlijke-gesprekken-voeren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.expression-card-natuurlijke-gesprekken-voeren {
  flex: 1 1 calc(50% - 0.5rem);
  padding: 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.expression-dutch-natuurlijke-gesprekken-voeren {
  font-size: 0.95rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 0.5rem;
}

.expression-context-natuurlijke-gesprekken-voeren {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.practical-image-wrapper-natuurlijke-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-natuurlijke-gesprekken-voeren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .practical-content-natuurlijke-gesprekken-voeren {
    flex-direction: column;
  }

  .practical-text-natuurlijke-gesprekken-voeren,
  .practical-image-wrapper-natuurlijke-gesprekken-voeren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .expression-card-natuurlijke-gesprekken-voeren {
    flex: 1 1 100%;
  }
}

.insight-section-natuurlijke-gesprekken-voeren {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-quote-natuurlijke-gesprekken-voeren {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  margin: 0;
  max-width: 800px;
  width: 100%;
  border-radius: 8px;
}

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

.quote-author-natuurlijke-gesprekken-voeren {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
}

.tips-section-natuurlijke-gesprekken-voeren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.tips-header-natuurlijke-gesprekken-voeren {
  text-align: center;
  margin-bottom: 3rem;
}

.tips-title-natuurlijke-gesprekken-voeren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

.tips-subtitle-natuurlijke-gesprekken-voeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.tips-card-natuurlijke-gesprekken-voeren {
  flex: 1 1 300px;
  max-width: 380px;
  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.2s ease, box-shadow 0.2s ease;
}

.tips-card-natuurlijke-gesprekken-voeren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.tips-card-title-natuurlijke-gesprekken-voeren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0c1929;
}

.tips-card-text-natuurlijke-gesprekken-voeren {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.conclusion-section-natuurlijke-gesprekken-voeren {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-natuurlijke-gesprekken-voeren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.conclusion-text-natuurlijke-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-natuurlijke-gesprekken-voeren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.conclusion-paragraph-natuurlijke-gesprekken-voeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.conclusion-highlight-natuurlijke-gesprekken-voeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #60a5fa;
  margin-bottom: 0;
  line-height: 1.8;
  font-weight: 500;
}

.conclusion-image-wrapper-natuurlijke-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-natuurlijke-gesprekken-voeren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.cta-box-natuurlijke-gesprekken-voeren {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
}

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

.cta-text-natuurlijke-gesprekken-voeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-natuurlijke-gesprekken-voeren {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #ffffff;
  color: #3b82f6;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9375rem;
}

.cta-button-natuurlijke-gesprekken-voeren:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .conclusion-content-natuurlijke-gesprekken-voeren {
    flex-direction: column;
  }

  .conclusion-text-natuurlijke-gesprekken-voeren,
  .conclusion-image-wrapper-natuurlijke-gesprekken-voeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-section-natuurlijke-gesprekken-voeren {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-title-natuurlijke-gesprekken-voeren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-align: center;
}

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

.related-card-natuurlijke-gesprekken-voeren {
  flex: 1 1 300px;
  max-width: 400px;
  background: #162d50;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card-natuurlijke-gesprekken-voeren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.related-card-image-natuurlijke-gesprekken-voeren {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #1e3a5f;
}

.related-card-image-natuurlijke-gesprekken-voeren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-natuurlijke-gesprekken-voeren {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-natuurlijke-gesprekken-voeren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.related-card-text-natuurlijke-gesprekken-voeren {
  font-size: 0.875rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.related-card-link-natuurlijke-gesprekken-voeren {
  font-size: 0.875rem;
  color: #60a5fa;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.related-card-link-natuurlijke-gesprekken-voeren:hover {
  color: #38bdf8;
}

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

.disclaimer-section-natuurlijke-gesprekken-voeren {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.disclaimer-content-natuurlijke-gesprekken-voeren {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #94a3b8;
}

.disclaimer-title-natuurlijke-gesprekken-voeren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0c1929;
  margin-bottom: 0.75rem;
}

.disclaimer-text-natuurlijke-gesprekken-voeren {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .process-section-natuurlijke-gesprekken-voeren {
    padding: 5rem 0;
  }

  .introduction-section-natuurlijke-gesprekken-voeren {
    padding: 5rem 0;
  }

  .techniques-section-natuurlijke-gesprekken-voeren {
    padding: 5rem 0;
  }

  .practical-section-natuurlijke-gesprekken-voeren {
    padding: 5rem 0;
  }

  .tips-section-natuurlijke-gesprekken-voeren {
    padding: 5rem 0;
  }

  .conclusion-section-natuurlijke-gesprekken-voeren {
    padding: 5rem 0;
  }

  .related-section-natuurlijke-gesprekken-voeren {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-natuurlijke-gesprekken-voeren {
    padding: 6rem 0;
  }

  .process-section-natuurlijke-gesprekken-voeren {
    padding: 6rem 0;
  }

  .introduction-section-natuurlijke-gesprekken-voeren {
    padding: 6rem 0;
  }

  .techniques-section-natuurlijke-gesprekken-voeren {
    padding: 6rem 0;
  }

  .practical-section-natuurlijke-gesprekken-voeren {
    padding: 6rem 0;
  }

  .tips-section-natuurlijke-gesprekken-voeren {
    padding: 6rem 0;
  }

  .conclusion-section-natuurlijke-gesprekken-voeren {
    padding: 6rem 0;
  }

  .related-section-natuurlijke-gesprekken-voeren {
    padding: 6rem 0;
  }
}

.main-zelfvertrouwen-opbouwen {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-section-zelfvertrouwen-opbouwen {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

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

.hero-text-block-zelfvertrouwen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-zelfvertrouwen-opbouwen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.article-meta-zelfvertrouwen-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-zelfvertrouwen-opbouwen {
  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: #60a5fa;
}

.meta-badge-zelfvertrouwen-opbouwen i {
  font-size: 0.875rem;
}

.hero-image-block-zelfvertrouwen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-stats-zelfvertrouwen-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-zelfvertrouwen-opbouwen {
  flex: 1 1 auto;
  text-align: center;
}

.stat-number-zelfvertrouwen-opbouwen {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-zelfvertrouwen-opbouwen {
  display: block;
  font-size: 0.875rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

  .hero-stats-zelfvertrouwen-opbouwen {
    justify-content: space-around;
  }
}

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

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

.introduction-text-zelfvertrouwen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.introduction-description-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.featured-quote-zelfvertrouwen-opbouwen {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: 8px;
}

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

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

.introduction-image-zelfvertrouwen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-tag-zelfvertrouwen-opbouwen {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .introduction-wrapper-zelfvertrouwen-opbouwen {
    flex-direction: column;
  }

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

.process-section-zelfvertrouwen-opbouwen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.process-header-zelfvertrouwen-opbouwen {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-zelfvertrouwen-opbouwen {
  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;
}

.process-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.process-subtitle-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-zelfvertrouwen-opbouwen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-zelfvertrouwen-opbouwen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

.process-step-content-zelfvertrouwen-opbouwen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-zelfvertrouwen-opbouwen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0c1929;
}

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

.techniques-section-zelfvertrouwen-opbouwen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.techniques-text-zelfvertrouwen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.techniques-description-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.techniques-list-zelfvertrouwen-opbouwen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-item-zelfvertrouwen-opbouwen {
  padding: 1rem;
  background: #f8fafc;
  border-left: 3px solid #3b82f6;
  border-radius: 4px;
}

.technique-name-zelfvertrouwen-opbouwen {
  font-size: 1rem;
  font-weight: 600;
  color: #0c1929;
  margin-bottom: 0.5rem;
}

.technique-detail-zelfvertrouwen-opbouwen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.techniques-image-zelfvertrouwen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-tag-zelfvertrouwen-opbouwen {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .techniques-wrapper-zelfvertrouwen-opbouwen {
    flex-direction: column;
  }

  .techniques-text-zelfvertrouwen-opbouwen,
  .techniques-image-zelfvertrouwen-opbouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-section-zelfvertrouwen-opbouwen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.challenges-header-zelfvertrouwen-opbouwen {
  text-align: center;
  margin-bottom: 3rem;
}

.challenges-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.challenges-subtitle-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.challenge-card-zelfvertrouwen-opbouwen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.challenge-card-title-zelfvertrouwen-opbouwen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0c1929;
}

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

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

.daily-habits-section-zelfvertrouwen-opbouwen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.daily-habits-wrapper-zelfvertrouwen-opbouwen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.daily-habits-image-zelfvertrouwen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.daily-habits-image-tag-zelfvertrouwen-opbouwen {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.daily-habits-text-zelfvertrouwen-opbouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.daily-habits-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.daily-habits-description-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.habits-list-zelfvertrouwen-opbouwen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.habit-item-zelfvertrouwen-opbouwen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
}

.habit-item-zelfvertrouwen-opbouwen::before {
  content: "";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 800;
  font-size: 1.25rem;
}

.habit-bold-zelfvertrouwen-opbouwen {
  color: #0c1929;
  font-weight: 600;
}

.daily-habits-closing-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .daily-habits-wrapper-zelfvertrouwen-opbouwen {
    flex-direction: column;
  }

  .daily-habits-image-zelfvertrouwen-opbouwen,
  .daily-habits-text-zelfvertrouwen-opbouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-zelfvertrouwen-opbouwen {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-zelfvertrouwen-opbouwen {
  max-width: 800px;
  margin: 0 auto;
}

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

.conclusion-text-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: left;
}

.cta-box-zelfvertrouwen-opbouwen {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
}

.cta-title-zelfvertrouwen-opbouwen {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-zelfvertrouwen-opbouwen {
  font-size: 0.9375rem;
  color: #bfdbfe;
  margin-bottom: 1.5rem;
}

.cta-button-zelfvertrouwen-opbouwen {
  background: #3b82f6;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.related-posts-section-zelfvertrouwen-opbouwen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-posts-header-zelfvertrouwen-opbouwen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-posts-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.related-posts-subtitle-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.related-post-card-zelfvertrouwen-opbouwen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-post-image-zelfvertrouwen-opbouwen {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.related-post-title-zelfvertrouwen-opbouwen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0c1929;
}

.related-post-description-zelfvertrouwen-opbouwen {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  flex-grow: 1;
}

.related-post-link-zelfvertrouwen-opbouwen {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-link-zelfvertrouwen-opbouwen:hover {
  color: #2563eb;
}

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

.disclaimer-section-zelfvertrouwen-opbouwen {
  background: #f1f5f9;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-zelfvertrouwen-opbouwen {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-zelfvertrouwen-opbouwen {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

.disclaimer-text-zelfvertrouwen-opbouwen {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #64748b;
}

@media (max-width: 768px) {
  .process-step-zelfvertrouwen-opbouwen {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-step-number-zelfvertrouwen-opbouwen {
    min-width: auto;
  }
}

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

  .introduction-section-zelfvertrouwen-opbouwen,
  .process-section-zelfvertrouwen-opbouwen,
  .techniques-section-zelfvertrouwen-opbouwen,
  .challenges-section-zelfvertrouwen-opbouwen,
  .daily-habits-section-zelfvertrouwen-opbouwen,
  .related-posts-section-zelfvertrouwen-opbouwen {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .conclusion-section-zelfvertrouwen-opbouwen {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

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

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

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

.breadcrumb-link-zakelijk-nederlands-beheersen {
  color: #60a5fa;
  transition: color 0.2s ease;
}

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

.breadcrumb-separator-zakelijk-nederlands-beheersen {
  color: #475569;
}

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

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

.hero-text-block-zakelijk-nederlands-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-title-zakelijk-nederlands-beheersen {
  color: #ffffff;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-zakelijk-nederlands-beheersen {
  color: #bfdbfe;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-description-zakelijk-nederlands-beheersen {
  color: #94a3b8;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-stats-zakelijk-nederlands-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

.stat-number-zakelijk-nederlands-beheersen {
  color: #3b82f6;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
}

.stat-label-zakelijk-nederlands-beheersen {
  color: #cbd5e1;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-zakelijk-nederlands-beheersen {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

  .hero-text-block-zakelijk-nederlands-beheersen,
  .hero-image-block-zakelijk-nederlands-beheersen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-zakelijk-nederlands-beheersen {
    gap: 1.5rem;
  }
}

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

.introduction-section-zakelijk-nederlands-beheersen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.introduction-text-block-zakelijk-nederlands-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-block-zakelijk-nederlands-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-zakelijk-nederlands-beheersen {
  color: #0c1929;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-zakelijk-nederlands-beheersen {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.introduction-text-zakelijk-nederlands-beheersen {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.7;
}

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

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

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

.process-section-zakelijk-nederlands-beheersen {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-section-zakelijk-nederlands-beheersen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.process-header-zakelijk-nederlands-beheersen {
  text-align: center;
  margin-bottom: 3.5rem;
}

.process-tag-zakelijk-nederlands-beheersen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

.process-subtitle-zakelijk-nederlands-beheersen {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.process-step-zakelijk-nederlands-beheersen:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateX(8px);
}

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

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

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

.process-step-text-zakelijk-nederlands-beheersen {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step-zakelijk-nederlands-beheersen {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-step-number-zakelijk-nederlands-beheersen {
    font-size: 2rem;
  }
}

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

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

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

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

.features-subtitle-zakelijk-nederlands-beheersen {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.features-card-zakelijk-nederlands-beheersen:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

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

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

.features-card-text-zakelijk-nederlands-beheersen {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

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

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

.techniques-section-zakelijk-nederlands-beheersen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.techniques-text-block-zakelijk-nederlands-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-block-zakelijk-nederlands-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-zakelijk-nederlands-beheersen {
  color: #0c1929;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.techniques-description-zakelijk-nederlands-beheersen {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.technique-item-zakelijk-nederlands-beheersen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.technique-item-title-zakelijk-nederlands-beheersen {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.technique-item-text-zakelijk-nederlands-beheersen {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.techniques-image-zakelijk-nederlands-beheersen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .techniques-content-zakelijk-nederlands-beheersen {
    flex-direction: column;
  }

  .techniques-text-block-zakelijk-nederlands-beheersen,
  .techniques-image-block-zakelijk-nederlands-beheersen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-section-zakelijk-nederlands-beheersen {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-section-zakelijk-nederlands-beheersen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.challenges-image-block-zakelijk-nederlands-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-text-block-zakelijk-nederlands-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-zakelijk-nederlands-beheersen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.challenges-title-zakelijk-nederlands-beheersen {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.challenges-description-zakelijk-nederlands-beheersen {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.challenge-item-zakelijk-nederlands-beheersen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.challenge-item-zakelijk-nederlands-beheersen:last-child {
  margin-bottom: 0;
}

.challenge-item-title-zakelijk-nederlands-beheersen {
  color: #bfdbfe;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.challenge-item-text-zakelijk-nederlands-beheersen {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .challenges-content-zakelijk-nederlands-beheersen {
    flex-direction: column-reverse;
  }

  .challenges-image-block-zakelijk-nederlands-beheersen,
  .challenges-text-block-zakelijk-nederlands-beheersen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-zakelijk-nederlands-beheersen {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.featured-quote-zakelijk-nederlands-beheersen {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  border-left: 5px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-zakelijk-nederlands-beheersen {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-zakelijk-nederlands-beheersen {
  color: #60a5fa;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 500;
  display: block;
}

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

.conclusion-section-zakelijk-nederlands-beheersen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.conclusion-title-zakelijk-nederlands-beheersen {
  color: #0c1929;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-description-zakelijk-nederlands-beheersen {
  color: #334155;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-text-zakelijk-nederlands-beheersen {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-zakelijk-nederlands-beheersen {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  border-radius: 12px;
  text-align: center;
}

.cta-title-zakelijk-nederlands-beheersen {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

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

.cta-button-zakelijk-nederlands-beheersen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #3b82f6;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

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

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

.disclaimer-content-zakelijk-nederlands-beheersen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

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

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

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

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

.related-title-zakelijk-nederlands-beheersen {
  color: #0c1929;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: center;
  line-height: 1.2;
}

.related-subtitle-zakelijk-nederlands-beheersen {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

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

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

.related-card-zakelijk-nederlands-beheersen:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

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

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

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

.related-card-link-zakelijk-nederlands-beheersen {
  color: #3b82f6;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.related-card-link-zakelijk-nederlands-beheersen:hover {
  color: #2563eb;
  transform: translateX(4px);
}

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

@media (max-width: 768px) {
  .hero-content-zakelijk-nederlands-beheersen,
  .introduction-content-zakelijk-nederlands-beheersen,
  .techniques-content-zakelijk-nederlands-beheersen,
  .challenges-content-zakelijk-nederlands-beheersen {
    flex-direction: column;
  }

  .hero-text-block-zakelijk-nederlands-beheersen,
  .hero-image-block-zakelijk-nederlands-beheersen,
  .introduction-text-block-zakelijk-nederlands-beheersen,
  .introduction-image-block-zakelijk-nederlands-beheersen,
  .techniques-text-block-zakelijk-nederlands-beheersen,
  .techniques-image-block-zakelijk-nederlands-beheersen,
  .challenges-image-block-zakelijk-nederlands-beheersen,
  .challenges-text-block-zakelijk-nederlands-beheersen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-zakelijk-nederlands-beheersen {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-zakelijk-nederlands-beheersen {
    font-size: 0.75rem;
  }

  .featured-quote-zakelijk-nederlands-beheersen {
    padding: 1.5rem 1.25rem;
  }
}

.main-cultuur-en-taal-integreren {
  width: 100%;
}

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

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

.breadcrumbs-cultuur-en-taal-integreren {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-cultuur-en-taal-integreren {
  color: #bfdbfe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-cultuur-en-taal-integreren:hover {
  color: #60a5fa;
}

.breadcrumb-separator-cultuur-en-taal-integreren {
  color: #60a5fa;
  opacity: 0.6;
}

.breadcrumb-current-cultuur-en-taal-integreren {
  color: #60a5fa;
}

.hero-section-cultuur-en-taal-integreren {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

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

.hero-text-block-cultuur-en-taal-integreren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-cultuur-en-taal-integreren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-cultuur-en-taal-integreren {
  color: #bfdbfe;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-cultuur-en-taal-integreren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-cultuur-en-taal-integreren {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #bfdbfe;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-cultuur-en-taal-integreren i {
  color: #60a5fa;
  font-size: 0.875rem;
}

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

@media (max-width: 768px) {
  .hero-content-cultuur-en-taal-integreren {
    flex-direction: column;
  }

  .hero-text-block-cultuur-en-taal-integreren,
  .hero-image-block-cultuur-en-taal-integreren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-cultuur-en-taal-integreren {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.intro-section-cultuur-en-taal-integreren {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.intro-text-cultuur-en-taal-integreren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-cultuur-en-taal-integreren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.intro-description-cultuur-en-taal-integreren {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.intro-image-tag-cultuur-en-taal-integreren {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-cultuur-en-taal-integreren {
    flex-direction: column;
  }

  .intro-text-cultuur-en-taal-integreren,
  .intro-image-cultuur-en-taal-integreren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.understanding-section-cultuur-en-taal-integreren {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.understanding-wrapper-cultuur-en-taal-integreren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.understanding-text-cultuur-en-taal-integreren {
  flex: 1 1 50%;
  max-width: 50%;
}

.understanding-image-cultuur-en-taal-integreren {
  flex: 1 1 50%;
  max-width: 50%;
}

.understanding-title-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.understanding-description-cultuur-en-taal-integreren {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.highlight-box-cultuur-en-taal-integreren {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #60a5fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-cultuur-en-taal-integreren {
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.understanding-image-tag-cultuur-en-taal-integreren {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .understanding-wrapper-cultuur-en-taal-integreren {
    flex-direction: column;
  }

  .understanding-text-cultuur-en-taal-integreren,
  .understanding-image-cultuur-en-taal-integreren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practical-section-cultuur-en-taal-integreren {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.practical-content-cultuur-en-taal-integreren {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.practical-title-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.steps-wrapper-cultuur-en-taal-integreren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-cultuur-en-taal-integreren {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  align-items: flex-start;
}

.step-number-cultuur-en-taal-integreren {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.step-content-cultuur-en-taal-integreren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.step-title-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
}

.step-text-cultuur-en-taal-integreren {
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .step-item-cultuur-en-taal-integreren {
    flex-direction: row;
    gap: 1rem;
  }

  .step-number-cultuur-en-taal-integreren {
    min-width: 50px;
    font-size: 1.75rem;
  }
}

.connection-section-cultuur-en-taal-integreren {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.connection-wrapper-cultuur-en-taal-integreren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.connection-image-cultuur-en-taal-integreren {
  flex: 1 1 50%;
  max-width: 50%;
}

.connection-text-cultuur-en-taal-integreren {
  flex: 1 1 50%;
  max-width: 50%;
}

.connection-title-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.connection-description-cultuur-en-taal-integreren {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.connection-image-tag-cultuur-en-taal-integreren {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.featured-quote-cultuur-en-taal-integreren {
  border-left: 4px solid #60a5fa;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  margin: 2rem 0;
}

.quote-text-cultuur-en-taal-integreren {
  color: #bfdbfe;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.quote-author-cultuur-en-taal-integreren {
  color: #60a5fa;
  font-size: 0.875rem;
  font-style: normal;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .connection-wrapper-cultuur-en-taal-integreren {
    flex-direction: column;
  }

  .connection-image-cultuur-en-taal-integreren,
  .connection-text-cultuur-en-taal-integreren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.deeper-section-cultuur-en-taal-integreren {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.deeper-title-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.dimensions-grid-cultuur-en-taal-integreren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.dimension-card-cultuur-en-taal-integreren {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dimension-card-cultuur-en-taal-integreren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.dimension-icon-cultuur-en-taal-integreren {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.2);
  border-radius: 12px;
  color: #60a5fa;
  font-size: 1.75rem;
}

.dimension-card-title-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
}

.dimension-card-text-cultuur-en-taal-integreren {
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .dimension-card-cultuur-en-taal-integreren {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-cultuur-en-taal-integreren {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-wrapper-cultuur-en-taal-integreren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.conclusion-text-cultuur-en-taal-integreren {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-cultuur-en-taal-integreren {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.conclusion-description-cultuur-en-taal-integreren {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.conclusion-image-tag-cultuur-en-taal-integreren {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.cta-box-cultuur-en-taal-integreren {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 2rem;
  text-align: center;
}

.cta-title-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-text-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-button-cultuur-en-taal-integreren {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #ffffff;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
}

.cta-button-cultuur-en-taal-integreren:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .conclusion-wrapper-cultuur-en-taal-integreren {
    flex-direction: column;
  }

  .conclusion-text-cultuur-en-taal-integreren,
  .conclusion-image-cultuur-en-taal-integreren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-section-cultuur-en-taal-integreren {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-header-cultuur-en-taal-integreren {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-cultuur-en-taal-integreren {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

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

.related-card-cultuur-en-taal-integreren {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-cultuur-en-taal-integreren:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.related-card-title-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
}

.related-card-text-cultuur-en-taal-integreren {
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-cultuur-en-taal-integreren {
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.related-card-cultuur-en-taal-integreren:hover .related-card-link-cultuur-en-taal-integreren {
  gap: 0.75rem;
}

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

.disclaimer-section-cultuur-en-taal-integreren {
  background: #1e3a5f;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.disclaimer-box-cultuur-en-taal-integreren {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #60a5fa;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.disclaimer-title-cultuur-en-taal-integreren {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-cultuur-en-taal-integreren {
  color: #bfdbfe;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

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

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

  h3 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
  }
}

.dutch-fluency-journey-about {
  font-family: var(--font-primary);
  color: var(--color-text-dark-primary);
}

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

.about-hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
}

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

.about-hero-subtitle {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.about-hero-description {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #60a5fa;
  line-height: 1.7;
  max-width: 700px;
}

.about-hero-visual {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin-top: 1rem;
}

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

.confidence-mission-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.confidence-mission-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mission-header {
  text-align: center;
  margin-bottom: 2rem;
}

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

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

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

.mission-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.mission-block {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.mission-block-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.mission-block-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0c1929;
}

.mission-block-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

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

.fluency-methodology-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.methodology-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.methodology-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.approach-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
}

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

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

.approach-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.approach-step-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bfdbfe;
}

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

.speaking-confidence-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.confidence-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.confidence-intro {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

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

.confidence-feature {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

.confidence-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0c1929;
}

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

.dutch-excellence-quote {
  background: var(--color-bg-dark-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.dutch-excellence-quote .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.featured-quote-about {
  padding: 2.5rem;
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  margin: 0;
  border-radius: 8px;
}

.featured-quote-about p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.featured-quote-about cite {
  font-size: 0.9375rem;
  color: #bfdbfe;
  font-style: normal;
  font-weight: 500;
}

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

.netherlands-promise-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

.promise-header {
  text-align: center;
  margin-bottom: 1rem;
}

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

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

.promise-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.promise-visual {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 1.5rem auto 0;
}

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

.about-commitment-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.commitment-values {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.commitment-value {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.05);
  border-radius: 12px;
  border-left: 3px solid #06b6d4;
}

.commitment-value-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.commitment-value-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bfdbfe;
}

.disclaimer-section-about {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-section-about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.disclaimer-content-about {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-heading-about {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0c1929;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-heading-about i {
  color: #3b82f6;
  font-size: 1.25rem;
}

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

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

  .confidence-mission-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .fluency-methodology-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .speaking-confidence-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .netherlands-promise-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .about-commitment-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .disclaimer-section-about {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .mission-blocks {
    gap: 2rem;
  }

  .confidence-features {
    gap: 2rem;
  }

  .commitment-values {
    gap: 2rem;
  }
}

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

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

  .confidence-feature {
    flex: 1 1 100%;
    max-width: none;
  }

  .mission-block {
    flex: 1 1 100%;
    max-width: none;
  }

  .commitment-value {
    flex: 1 1 100%;
    max-width: none;
  }
}

.legal-hub {
  width: 100%;
  background: var(--color-bg-light-primary);
  font-family: var(--font-primary);
}

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

.legal-hub-hero {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-secondary);
  overflow: hidden;
}

.legal-hub-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.legal-hub-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.legal-hub-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-muted);
}

.legal-hub-content {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-primary);
  overflow: hidden;
}

.legal-hub-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.legal-hub-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-hub-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section h3 {
  font-size: clamp(1.125rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-dark-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.legal-hub-section ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-hub-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-dark-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding-left: 1.5rem;
  position: relative;
}

.legal-hub-section li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-hub-section strong {
  color: var(--color-text-dark-primary);
  font-weight: 600;
}

.legal-hub-contact {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-secondary);
  overflow: hidden;
}

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

.legal-hub-contact h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.legal-hub-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.legal-hub-contact-label {
  font-weight: 600;
  color: var(--color-text-dark-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.legal-hub-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
}

@media (min-width: 768px) {
  .legal-hub-hero {
    padding: 5rem 0;
  }

  .legal-hub-content {
    padding: 5rem 0;
  }

  .legal-hub-contact {
    padding: 5rem 0;
  }

  .legal-hub-section {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-hub-hero {
    padding: 6rem 0;
  }

  .legal-hub-content {
    padding: 6rem 0;
  }

  .legal-hub-contact {
    padding: 6rem 0;
  }

  .legal-hub-section {
    gap: 1.75rem;
  }
}

.thank-page {
  width: 100%;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
}

.thank-icon {
  font-size: clamp(4rem, 12vw, 6rem);
  color: var(--color-success);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: thank-icon-pop 0.6s ease-out;
}

@keyframes thank-icon-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-section h1 {
  color: var(--color-text-light-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-text-light-secondary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-primary);
  line-height: 1.5;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
}

.thank-description {
  color: var(--color-text-light-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin: clamp(2rem, 4vw, 3rem) auto;
  max-width: 600px;
  width: 100%;
}

.thank-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.thank-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.thank-list li {
  color: var(--color-text-light-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-icon-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.5rem, 3vw, 2rem);
  height: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-success);
  flex-shrink: 0;
}

.thank-icon-mini i {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  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(4rem, 10vw, 8rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    padding: clamp(3rem, 5vw, 4rem);
  }

  .thank-next-steps {
    padding: clamp(2rem, 4vw, 2.5rem);
    margin: clamp(2.5rem, 5vw, 3.5rem) auto;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .thank-content {
    padding: clamp(3rem, 6vw, 5rem);
  }

  .thank-list {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    padding: 4rem;
  }
}

.error-page {
  width: 100%;
}

.error-section {
  background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 0;
  overflow: hidden;
  position: relative;
}

.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.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.error-section .container {
  position: relative;
  z-index: 1;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.error-illustration {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  perspective: 1000px;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 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;
  letter-spacing: -2px;
  line-height: 1;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.error-decoration {
  position: absolute;
  bottom: -20px;
  right: -30px;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-secondary);
  opacity: 0.3;
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 var(--space-md);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
  color: var(--color-text-light-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
  font-weight: 600;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.125rem);
  color: var(--color-text-light-muted);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  line-height: 1.7;
}

.error-actions {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.75rem);
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.error-hints {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.hint-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
  transition: all 0.3s ease;
}

.hint-item:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateX(4px);
}

.hint-item i {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--color-secondary);
  flex-shrink: 0;
}

.hint-item span {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-light-secondary);
  text-align: left;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .error-content {
    padding: 0 var(--space-lg);
  }

  .error-hints {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .hint-item {
    flex-direction: column;
    text-align: center;
    border-left: none;
    border-top: 3px solid var(--color-primary);
    padding: var(--space-lg);
  }

  .hint-item:hover {
    transform: translateY(-4px);
  }

  .hint-item span {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-2xl) 0;
  }

  .error-content {
    max-width: 700px;
  }
}

@media (min-width: 1440px) {
  .error-content {
    max-width: 800px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-decoration,
  .hint-item {
    animation: none;
  }

  .btn-primary:hover,
  .hint-item:hover {
    transform: none;
  }
}

@media (prefers-contrast: more) {
  .error-code {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  }

  .error-hints {
    border-top-width: 2px;
  }

  .hint-item {
    border-width: 4px;
  }
}

@media print {
  .error-section {
    min-height: auto;
  }

  .error-decoration {
    display: none;
  }

  .btn-primary {
    display: none;
  }
}

.header-fluency-hub-mobile-toggle[aria-expanded="true"]{
  display: none;
} 