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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-bg-card-hover: rgba(255, 255, 255, 0.08);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  
  
  --color-primary: #f59e0b;
  --color-primary-hover: #d97706;
  --color-primary-light: #fbbf24;
  --color-secondary: #3b82f6;
  --color-secondary-hover: #2563eb;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.2);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--text-5xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: -0.015em;
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
}

p {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-base);
  font-weight: 600;
  font-family: var(--font-primary);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #000;
  box-shadow: var(--shadow-md);
}

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

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

.btn-secondary {
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

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

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

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

.btn-ghost {
  background: transparent;
  color: var(--color-text-primary);
}

.btn-ghost:hover {
  background: var(--color-bg-card);
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-lg) var(--space-xl);
  font-size: var(--text-lg);
}

.card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.card:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-4px);
}

.card-elevated {
  background: var(--color-bg-secondary);
  box-shadow: var(--shadow-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-success);
  border-color: rgba(16, 185, 129, 0.3);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-warning);
  border-color: rgba(245, 158, 11, 0.3);
}

.badge-error {
  background: rgba(239, 68, 68, 0.15);
  color: var(--color-error);
  border-color: rgba(239, 68, 68, 0.3);
}

input,
textarea,
select {
  background: var(--color-bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-bg-secondary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }
.p-2xl { padding: var(--space-2xl); }
.p-3xl { padding: var(--space-3xl); }

.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }

section {
  padding: var(--space-3xl) 0;
}

section.hero {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

section.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.text-primary { color: var(--color-text-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-primary); }

.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }

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

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

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

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

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

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

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

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
  }
}

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

.animate-slideInUp {
  animation: slideInUp var(--transition-slow) ease-out;
}

.animate-slideInDown {
  animation: slideInDown var(--transition-slow) ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft var(--transition-slow) ease-out;
}

.animate-slideInRight {
  animation: slideInRight var(--transition-slow) ease-out;
}

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

.animate-glow {
  animation: glow 3s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
  
  section {
    padding: var(--space-2xl) 0;
  }
  
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl); }
  
  section {
    padding: var(--space-xl) 0;
  }
  
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  
  .flex-responsive {
    flex-direction: column;
  }
  
  .hide-mobile {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  h1 { font-size: var(--text-2xl); }
  h2 { font-size: var(--text-xl); }
  h3 { font-size: var(--text-lg); }
  
  .btn {
    width: 100%;
  }
  
  section {
    padding: var(--space-lg) 0;
  }
  
  .card {
    padding: var(--space-md);
  }
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-full);
}

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

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

::selection {
  background: var(--color-primary);
  color: #000;
}

::-moz-selection {
  background: var(--color-primary);
  color: #000;
}
.header-nederlands-portal {
    background: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-bg-tertiary);
    position: static;
    width: 100%;
    z-index: 100;
  }

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

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

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

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

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

  .header-nederlands-portal-desktop-nav {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex-grow: 1;
    margin: 0 2rem;
  }

  .header-nederlands-portal-nav-link {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
  }

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

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

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

  .header-nederlands-portal-cta-button {
    display: none;
    padding: 0.75rem 1.75rem;
    background: var(--color-primary);
    color: var(--color-bg-primary);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    flex-shrink: 0;
  }

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

  .header-nederlands-portal-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
  }

  .header-nederlands-portal-hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 1px;
    transition: all var(--transition-base);
  }

  .header-nederlands-portal-mobile-toggle[aria-expanded="true"] .header-nederlands-portal-hamburger:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }

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

  .header-nederlands-portal-mobile-toggle[aria-expanded="true"] .header-nederlands-portal-hamburger:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }

  .header-nederlands-portal-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-secondary);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all var(--transition-base);
    z-index: 99;
    display: flex;
    flex-direction: column;
  }

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

  .header-nederlands-portal-mobile-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-bg-tertiary);
  }

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

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

  .header-nederlands-portal-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    flex-grow: 1;
    overflow-y: auto;
  }

  .header-nederlands-portal-mobile-link {
    padding: 1rem 1.5rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 500;
    border-bottom: 1px solid var(--color-bg-tertiary);
    transition: all var(--transition-base);
  }

  .header-nederlands-portal-mobile-link:hover {
    background: var(--color-bg-card-hover);
    color: var(--color-text-primary);
    padding-left: 2rem;
  }

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

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

  @media (min-width: 768px) {
    .header-nederlands-portal-container {
      height: 80px;
    }

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

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

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

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

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

    .header-nederlands-portal-desktop-nav {
      gap: 3rem;
    }
  }

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

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

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-text-block-index {
  flex: 1 1 100%;
  min-width: 280px;
  position: relative;
  z-index: 1;
}

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

.hero-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

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

.hero-buttons-index .btn {
  min-width: 160px;
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.hero-stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #f59e0b;
  font-family: 'Playfair Display', serif;
}

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

.hero-image-block-index {
  flex: 1 1 100%;
  min-height: 300px;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
}

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

@media (min-width: 768px) {
  .hero-text-block-index {
    flex: 1 1 45%;
  }

  .hero-image-block-index {
    flex: 1 1 45%;
    min-height: 350px;
    max-height: 450px;
  }
}

.why-section-index {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.why-header-index {
  text-align: center;
}

.why-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.why-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.why-blocks-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.why-block-index {
  flex: 1 1 250px;
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.why-block-index:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.1);
}

.why-block-icon-index {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #f59e0b;
  display: flex;
  align-items: center;
}

.why-block-title-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.why-block-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.how-section-index {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.how-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.how-header-index {
  text-align: center;
}

.how-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.how-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  line-height: 1.7;
}

.how-steps-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.how-step-index {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.how-step-number-index {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #f59e0b;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.how-step-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.how-step-title-index {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.how-step-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.featured-section-index {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.featured-header-index {
  text-align: center;
}

.featured-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.featured-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.featured-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  line-height: 1.7;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.featured-card-index:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.featured-card-image-index {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111d2f;
}

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

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

.featured-card-title-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.featured-card-desc-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
}

.featured-card-link-index {
  color: #f59e0b;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

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

.featured-cta-index {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.featured-cta-link-index {
  color: #f59e0b;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  transition: all 0.3s ease;
}

.featured-cta-link-index:hover {
  color: #fbbf24;
  transform: translateX(4px);
  display: inline-block;
}

.testimonial-section-index {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.testimonial-header-index {
  text-align: center;
}

.testimonial-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.1);
}

.testimonial-quote-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-name-index {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #94a3b8;
  margin: 0;
}

.faq-section-index {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.faq-header-index {
  text-align: center;
}

.faq-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.faq-column-index {
  flex: 1 1 100%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.faq-item-index {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid #f59e0b;
}

.faq-question-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #ffffff;
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.faq-answer-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .faq-grid-index {
    gap: clamp(2rem, 3vw, 2.5rem);
  }

  .faq-column-index {
    flex: 1 1 calc(50% - 1rem);
  }
}

.cta-final-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-final-content-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.cta-final-box-index {
  flex: 1 1 100%;
  min-width: 280px;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cta-final-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-final-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.cta-final-image-block-index {
  flex: 1 1 100%;
  min-height: 300px;
  max-height: 450px;
  overflow: hidden;
  border-radius: 12px;
}

.cta-final-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .cta-final-box-index {
    flex: 1 1 45%;
  }

  .cta-final-image-block-index {
    flex: 1 1 45%;
  }
}

.resources-section-index {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.resources-header-index {
  text-align: center;
}

.resources-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.resources-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  line-height: 1.7;
}

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

.resources-link-index {
  flex: 1 1 240px;
  max-width: 300px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-align: center;
}

.resources-link-index:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.1);
}

.resources-link-icon-index {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resources-link-text-index {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #0d1526;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  backdrop-filter: blur(10px);
}

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

.cookie-banner-text-index {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
  flex: 1 1 auto;
  min-width: 200px;
  text-align: center;
}

.cookie-banner-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  align-items: center;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.25rem);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  border: none;
  white-space: nowrap;
}

.cookie-btn-accept-index {
  background: #f59e0b;
  color: #000000;
}

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

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

.cookie-btn-decline-index:hover {
  border-color: #f59e0b;
  color: #f59e0b;
}

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

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

  .hero-buttons-index .btn {
    width: 100%;
  }

  .resources-links-index {
    flex-direction: column;
  }

  .resources-link-index {
    width: 100%;
  }

  .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 auto;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .hero-title-index {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .featured-cards-index {
    flex-direction: column;
  }

  .featured-card-index {
    max-width: 100%;
  }

  .testimonial-cards-index {
    flex-direction: column;
  }

  .testimonial-card-index {
    max-width: 100%;
  }

  .faq-column-index {
    flex: 1 1 100%;
  }

  .cookie-banner-text-index {
    font-size: 0.75rem;
  }
}

    .footer {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  color: var(--color-text-secondary);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  overflow: hidden;
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-about {
  display: block;
}

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

.footer-about p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--leading-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 500px;
}

.footer-nav {
  display: block;
}

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

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-links a {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-contact {
  display: block;
}

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

.footer-contact p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--leading-relaxed);
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-legal {
  display: block;
}

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

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-links a {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--color-primary);
}

.footer-copyright {
  display: block;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  text-align: center;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

  .footer-nav {
    flex: 1 1 200px;
  }

  .footer-contact {
    flex: 1 1 250px;
  }

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

  .footer-copyright {
    flex: 1 1 100%;
    padding-top: 1.5rem;
  }

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

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

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

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

  .footer-nav {
    flex: 1 1 180px;
  }

  .footer-contact {
    flex: 1 1 280px;
  }

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

.category-page-dutch-language-success {
  background: #ffffff;
  color: #1e293b;
}

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

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

.hero-text-dutch-language-success {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-dutch-language-success {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-dutch-language-success {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #2563eb;
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-dutch-language-success {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-visual-dutch-language-success {
  flex: 1 1 45%;
  min-width: 300px;
  max-height: 500px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image-dutch-language-success {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.posts-content-dutch-language-success {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.posts-header-dutch-language-success {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.posts-title-dutch-language-success {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-dutch-language-success {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.card-dutch-language-success {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-dutch-language-success:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.card-image-dutch-language-success {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.card-title-dutch-language-success {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
  color: #0f172a;
  font-weight: 700;
  padding: 0 1.25rem;
  padding-top: 0.5rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-dutch-language-success {
  font-size: clamp(0.8rem, 1.5vw + 0.4rem, 1rem);
  color: #64748b;
  padding: 0 1.25rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-dutch-language-success {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 0 1.25rem;
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  flex-wrap: wrap;
}

.card-time-dutch-language-success,
.card-level-dutch-language-success,
.card-date-dutch-language-success {
  color: #94a3b8;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.card-time-dutch-language-success i,
.card-level-dutch-language-success i,
.card-date-dutch-language-success i {
  color: #2563eb;
  font-size: 0.9em;
}

.card-link-dutch-language-success {
  padding: 0 1.25rem 1.25rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw + 0.4rem, 1rem);
  text-decoration: none;
  transition: color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-link-dutch-language-success:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.insights-section-dutch-language-success {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-dutch-language-success {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.insights-quote-dutch-language-success {
  flex: 1 1 45%;
  min-width: 300px;
}

.insights-blockquote-dutch-language-success {
  background: #ffffff;
  border-left: 4px solid #2563eb;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.insights-quote-text-dutch-language-success {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #1e293b;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-attribution-dutch-language-success {
  margin: 0;
  padding: 0;
}

.insights-author-dutch-language-success {
  font-size: clamp(0.85rem, 1.5vw + 0.4rem, 1rem);
  color: #64748b;
  font-weight: 600;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-context-dutch-language-success {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insights-heading-dutch-language-success {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-text-dutch-language-success,
.insights-text-secondary-dutch-language-success {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-text-secondary-dutch-language-success {
  color: #475569;
}

.strategies-section-dutch-language-success {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-content-dutch-language-success {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.strategies-header-dutch-language-success {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.strategies-title-dutch-language-success {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategies-subtitle-dutch-language-success {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategies-list-dutch-language-success {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.strategy-item-dutch-language-success {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.strategy-number-dutch-language-success {
  flex-shrink: 0;
  width: clamp(3rem, 8vw, 4rem);
  height: clamp(3rem, 8vw, 4rem);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.strategy-details-dutch-language-success {
  flex: 1;
  padding-top: clamp(0.25rem, 1vw, 0.5rem);
}

.strategy-name-dutch-language-success {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.35rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-description-dutch-language-success {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

@media (max-width: 1024px) {
  .hero-content-dutch-language-success {
    flex-direction: column;
  }

  .hero-text-dutch-language-success {
    flex: 1 1 100%;
  }

  .hero-visual-dutch-language-success {
    flex: 1 1 100%;
  }

  .insights-content-dutch-language-success {
    flex-direction: column;
  }

  .insights-quote-dutch-language-success {
    flex: 1 1 100%;
  }

  .insights-context-dutch-language-success {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .hero-section-dutch-language-success {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .posts-section-dutch-language-success {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .insights-section-dutch-language-success {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .strategies-section-dutch-language-success {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .card-dutch-language-success {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .strategy-item-dutch-language-success {
    flex-direction: column;
    align-items: flex-start;
  }

  .strategy-number-dutch-language-success {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }

  .hero-title-dutch-language-success {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }

  .posts-title-dutch-language-success,
  .strategies-title-dutch-language-success {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }

  .card-meta-dutch-language-success {
    flex-direction: column;
    gap: 0.5rem;
  }

  .posts-grid-dutch-language-success {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

.main-natuurlijk-spreken-zonder-stress {
  background: #ffffff;
  width: 100%;
}

.hero-section-natuurlijk-spreken-zonder-stress {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-natuurlijk-spreken-zonder-stress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
}

.breadcrumbs-natuurlijk-spreken-zonder-stress a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumbs-natuurlijk-spreken-zonder-stress a:hover {
  color: #fbbf24;
}

.breadcrumbs-natuurlijk-spreken-zonder-stress span {
  color: #64748b;
}

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

.hero-text-natuurlijk-spreken-zonder-stress {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-meta-natuurlijk-spreken-zonder-stress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  font-weight: 500;
}

.meta-item-natuurlijk-spreken-zonder-stress {
  display: inline-block;
}

.meta-divider-natuurlijk-spreken-zonder-stress {
  display: inline-block;
  color: #64748b;
}

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

.hero-subtitle-natuurlijk-spreken-zonder-stress {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  font-weight: 400;
}

.hero-image-natuurlijk-spreken-zonder-stress {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-natuurlijk-spreken-zonder-stress {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

.intro-content-natuurlijk-spreken-zonder-stress {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.intro-text-natuurlijk-spreken-zonder-stress {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #374151;
  line-height: 1.8;
}

.intro-highlight-natuurlijk-spreken-zonder-stress {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.highlight-box-natuurlijk-spreken-zonder-stress {
  background: #f3f4f6;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
}

.highlight-title-natuurlijk-spreken-zonder-stress {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.highlight-text-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

.content-one-section-natuurlijk-spreken-zonder-stress {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-one-text-natuurlijk-spreken-zonder-stress {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-one-title-natuurlijk-spreken-zonder-stress {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-one-paragraph-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.content-one-list-natuurlijk-spreken-zonder-stress {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-item-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #374151;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-natuurlijk-spreken-zonder-stress::before {
  content: "";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 700;
  font-size: 1.1em;
}

.content-one-image-natuurlijk-spreken-zonder-stress {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-natuurlijk-spreken-zonder-stress {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.content-two-section-natuurlijk-spreken-zonder-stress {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-two-image-natuurlijk-spreken-zonder-stress {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-text-natuurlijk-spreken-zonder-stress {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-two-title-natuurlijk-spreken-zonder-stress {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-two-paragraph-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.content-three-section-natuurlijk-spreken-zonder-stress {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-three-text-natuurlijk-spreken-zonder-stress {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-three-title-natuurlijk-spreken-zonder-stress {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-three-paragraph-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.quote-box-natuurlijk-spreken-zonder-stress {
  background: #f0f9ff;
  border-left: 4px solid #3b82f6;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin: 0.5rem 0;
}

.quote-content-natuurlijk-spreken-zonder-stress {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  border: none;
}

.quote-text-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #1e293b;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.quote-author-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.content-three-image-natuurlijk-spreken-zonder-stress {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-section-natuurlijk-spreken-zonder-stress {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-natuurlijk-spreken-zonder-stress {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.practical-title-natuurlijk-spreken-zonder-stress {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-steps-natuurlijk-spreken-zonder-stress {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-natuurlijk-spreken-zonder-stress {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 250ms ease;
}

.step-card-natuurlijk-spreken-zonder-stress:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #f59e0b;
}

.step-number-natuurlijk-spreken-zonder-stress {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #f59e0b;
  flex-shrink: 0;
  line-height: 1;
  min-width: 60px;
}

.step-content-natuurlijk-spreken-zonder-stress {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.step-title-natuurlijk-spreken-zonder-stress {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1e293b;
  font-weight: 600;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.conclusion-content-natuurlijk-spreken-zonder-stress {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-title-natuurlijk-spreken-zonder-stress {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

.cta-box-natuurlijk-spreken-zonder-stress {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 2rem);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}

.cta-title-natuurlijk-spreken-zonder-stress {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #000000;
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.cta-text-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

.cta-btn-natuurlijk-spreken-zonder-stress {
  background: #000000;
  color: #f59e0b;
  border: 2px solid #000000;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  font-weight: 600;
  border-radius: 8px;
  transition: all 250ms ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 0.5rem;
}

.cta-btn-natuurlijk-spreken-zonder-stress:hover {
  background: #1e293b;
  color: #fbbf24;
}

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

.related-content-natuurlijk-spreken-zonder-stress {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.related-title-natuurlijk-spreken-zonder-stress {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-natuurlijk-spreken-zonder-stress {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-natuurlijk-spreken-zonder-stress {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 250ms ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.related-card-natuurlijk-spreken-zonder-stress:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-image-natuurlijk-spreken-zonder-stress {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e5e7eb;
}

.related-img-natuurlijk-spreken-zonder-stress {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.related-card-natuurlijk-spreken-zonder-stress:hover .related-img-natuurlijk-spreken-zonder-stress {
  transform: scale(1.05);
}

.related-text-natuurlijk-spreken-zonder-stress {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-natuurlijk-spreken-zonder-stress {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1e293b;
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.related-card-description-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #f59e0b;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
  transition: color 150ms ease;
}

.related-link-natuurlijk-spreken-zonder-stress:hover {
  color: #d97706;
  text-decoration: underline;
}

.disclaimer-section-natuurlijk-spreken-zonder-stress {
  background: #f0f9ff;
  border-top: 1px solid #e0f2fe;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-natuurlijk-spreken-zonder-stress {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-natuurlijk-spreken-zonder-stress {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #0c4a6e;
  font-weight: 600;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-natuurlijk-spreken-zonder-stress {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #0f766e;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .hero-content-natuurlijk-spreken-zonder-stress,
  .content-one-wrapper-natuurlijk-spreken-zonder-stress,
  .content-two-wrapper-natuurlijk-spreken-zonder-stress,
  .content-three-wrapper-natuurlijk-spreken-zonder-stress {
    flex-direction: column;
  }

  .hero-text-natuurlijk-spreken-zonder-stress,
  .hero-image-natuurlijk-spreken-zonder-stress,
  .content-one-text-natuurlijk-spreken-zonder-stress,
  .content-one-image-natuurlijk-spreken-zonder-stress,
  .content-two-text-natuurlijk-spreken-zonder-stress,
  .content-two-image-natuurlijk-spreken-zonder-stress,
  .content-three-text-natuurlijk-spreken-zonder-stress,
  .content-three-image-natuurlijk-spreken-zonder-stress {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-card-natuurlijk-spreken-zonder-stress {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .related-card-natuurlijk-spreken-zonder-stress {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .hero-content-natuurlijk-spreken-zonder-stress,
  .content-one-wrapper-natuurlijk-spreken-zonder-stress,
  .content-two-wrapper-natuurlijk-spreken-zonder-stress,
  .content-three-wrapper-natuurlijk-spreken-zonder-stress {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .breadcrumbs-natuurlijk-spreken-zonder-stress {
    font-size: 0.75rem;
    gap: 0.35rem;
  }

  .step-card-natuurlijk-spreken-zonder-stress {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-natuurlijk-spreken-zonder-stress {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-image-natuurlijk-spreken-zonder-stress {
    height: 180px;
  }

  .practical-steps-natuurlijk-spreken-zonder-stress {
    flex-direction: column;
  }

  .cta-box-natuurlijk-spreken-zonder-stress {
    padding: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 480px) {
  .hero-section-natuurlijk-spreken-zonder-stress,
  .intro-section-natuurlijk-spreken-zonder-stress,
  .content-one-section-natuurlijk-spreken-zonder-stress,
  .content-two-section-natuurlijk-spreken-zonder-stress,
  .content-three-section-natuurlijk-spreken-zonder-stress,
  .practical-section-natuurlijk-spreken-zonder-stress,
  .conclusion-section-natuurlijk-spreken-zonder-stress,
  .related-section-natuurlijk-spreken-zonder-stress {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .breadcrumbs-natuurlijk-spreken-zonder-stress {
    font-size: 0.7rem;
  }

  .step-number-natuurlijk-spreken-zonder-stress {
    min-width: 50px;
  }

  .related-image-natuurlijk-spreken-zonder-stress {
    height: 150px;
  }

  .related-text-natuurlijk-spreken-zonder-stress {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
}

.main-luisteren-verbeteren-vier-weken {
  width: 100%;
  overflow: hidden;
}

.hero-section-luisteren-verbeteren-vier-weken {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-wrapper-luisteren-verbeteren-vier-weken {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-luisteren-verbeteren-vier-weken a {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.breadcrumbs-luisteren-verbeteren-vier-weken a:hover {
  color: #f59e0b;
}

.breadcrumbs-luisteren-verbeteren-vier-weken span {
  color: #64748b;
}

.hero-meta-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.meta-item-luisteren-verbeteren-vier-weken {
  color: #94a3b8;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  font-weight: 500;
}

.meta-divider-luisteren-verbeteren-vier-weken {
  color: #64748b;
}

.hero-title-luisteren-verbeteren-vier-weken {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-lead-luisteren-verbeteren-vier-weken {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-highlights-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.highlight-item-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlight-number-luisteren-verbeteren-vier-weken {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #f59e0b;
  font-weight: 700;
}

.highlight-label-luisteren-verbeteren-vier-weken {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: #94a3b8;
}

.hero-image-wrapper-luisteren-verbeteren-vier-weken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-luisteren-verbeteren-vier-weken {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

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

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

.intro-text-luisteren-verbeteren-vier-weken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-luisteren-verbeteren-vier-weken {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-luisteren-verbeteren-vier-weken {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.intro-image-luisteren-verbeteren-vier-weken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-luisteren-verbeteren-vier-weken {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.technique-section-luisteren-verbeteren-vier-weken {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.technique-content-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.technique-text-luisteren-verbeteren-vier-weken {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-title-luisteren-verbeteren-vier-weken {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.technique-intro-luisteren-verbeteren-vier-weken {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.technique-cards-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-card-luisteren-verbeteren-vier-weken {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.technique-card-luisteren-verbeteren-vier-weken:hover {
  border-color: #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
  transform: translateY(-2px);
}

.card-number-luisteren-verbeteren-vier-weken {
  font-size: 2rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.card-title-luisteren-verbeteren-vier-weken {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.375rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.card-text-luisteren-verbeteren-vier-weken {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.025rem);
  line-height: 1.6;
}

.technique-image-luisteren-verbeteren-vier-weken {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-img-luisteren-verbeteren-vier-weken {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

.schedule-section-luisteren-verbeteren-vier-weken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.schedule-content-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.schedule-image-luisteren-verbeteren-vier-weken {
  flex: 1 1 50%;
  max-width: 50%;
}

.schedule-img-luisteren-verbeteren-vier-weken {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.schedule-text-luisteren-verbeteren-vier-weken {
  flex: 1 1 50%;
  max-width: 50%;
}

.schedule-title-luisteren-verbeteren-vier-weken {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.schedule-intro-luisteren-verbeteren-vier-weken {
  color: #475569;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.schedule-list-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.schedule-item-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #f9fafb;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.item-label-luisteren-verbeteren-vier-weken {
  font-weight: 600;
  color: #1e293b;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
}

.item-text-luisteren-verbeteren-vier-weken {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.025rem);
  line-height: 1.6;
}

.schedule-note-luisteren-verbeteren-vier-weken {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.975rem);
  font-style: italic;
  margin-top: 1.5rem;
}

.practical-section-luisteren-verbeteren-vier-weken {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-text-luisteren-verbeteren-vier-weken {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-luisteren-verbeteren-vier-weken {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-tips-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.tip-block-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-heading-luisteren-verbeteren-vier-weken {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.375rem);
  color: #1e293b;
  font-weight: 600;
}

.tip-text-luisteren-verbeteren-vier-weken {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.025rem);
  line-height: 1.7;
}

.practical-image-luisteren-verbeteren-vier-weken {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-img-luisteren-verbeteren-vier-weken {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 450px;
  object-fit: cover;
}

.quote-section-luisteren-verbeteren-vier-weken {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-luisteren-verbeteren-vier-weken {
  border-left: 4px solid #f59e0b;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.quote-text-luisteren-verbeteren-vier-weken {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.375rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.quote-author-luisteren-verbeteren-vier-weken {
  color: #94a3b8;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-style: normal;
}

.progress-section-luisteren-verbeteren-vier-weken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.progress-content-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.progress-image-luisteren-verbeteren-vier-weken {
  flex: 1 1 50%;
  max-width: 50%;
}

.progress-img-luisteren-verbeteren-vier-weken {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.progress-text-luisteren-verbeteren-vier-weken {
  flex: 1 1 50%;
  max-width: 50%;
}

.progress-title-luisteren-verbeteren-vier-weken {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.progress-timeline-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.timeline-week-luisteren-verbeteren-vier-weken {
  font-weight: 700;
  color: #1e293b;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
}

.timeline-text-luisteren-verbeteren-vier-weken {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.025rem);
  line-height: 1.6;
}

.cta-section-luisteren-verbeteren-vier-weken {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-luisteren-verbeteren-vier-weken {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-luisteren-verbeteren-vier-weken {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #000;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-luisteren-verbeteren-vier-weken {
  color: #1a1a1a;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.disclaimer-section-luisteren-verbeteren-vier-weken {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-luisteren-verbeteren-vier-weken {
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-title-luisteren-verbeteren-vier-weken {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: #1e293b;
  margin-bottom: 1.25rem;
}

.disclaimer-text-luisteren-verbeteren-vier-weken {
  color: #475569;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.025rem);
  line-height: 1.7;
}

.related-section-luisteren-verbeteren-vier-weken {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-luisteren-verbeteren-vier-weken {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-luisteren-verbeteren-vier-weken {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-luisteren-verbeteren-vier-weken {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
}

.related-cards-luisteren-verbeteren-vier-weken {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}

.related-card-luisteren-verbeteren-vier-weken {
  flex: 1 1 300px;
  max-width: 350px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-luisteren-verbeteren-vier-weken:hover {
  border-color: #f59e0b;
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.15);
  transform: translateY(-4px);
}

.related-image-luisteren-verbeteren-vier-weken {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-img-luisteren-verbeteren-vier-weken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-luisteren-verbeteren-vier-weken:hover .card-img-luisteren-verbeteren-vier-weken {
  transform: scale(1.05);
}

.related-body-luisteren-verbeteren-vier-weken {
  padding: 1.5rem;
}

.related-card-title-luisteren-verbeteren-vier-weken {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.3rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-text-luisteren-verbeteren-vier-weken {
  color: #475569;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.975rem);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-link-luisteren-verbeteren-vier-weken {
  color: #f59e0b;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.975rem);
  transition: color 0.3s ease;
}

.related-link-luisteren-verbeteren-vier-weken:hover {
  color: #d97706;
}

@media (max-width: 1024px) {
  .hero-content-luisteren-verbeteren-vier-weken,
  .intro-content-luisteren-verbeteren-vier-weken,
  .technique-content-luisteren-verbeteren-vier-weken,
  .schedule-content-luisteren-verbeteren-vier-weken,
  .practical-content-luisteren-verbeteren-vier-weken,
  .progress-content-luisteren-verbeteren-vier-weken {
    flex-direction: column;
  }

  .hero-text-wrapper-luisteren-verbeteren-vier-weken,
  .hero-image-wrapper-luisteren-verbeteren-vier-weken,
  .intro-text-luisteren-verbeteren-vier-weken,
  .intro-image-luisteren-verbeteren-vier-weken,
  .technique-text-luisteren-verbeteren-vier-weken,
  .technique-image-luisteren-verbeteren-vier-weken,
  .schedule-image-luisteren-verbeteren-vier-weken,
  .schedule-text-luisteren-verbeteren-vier-weken,
  .practical-text-luisteren-verbeteren-vier-weken,
  .practical-image-luisteren-verbeteren-vier-weken,
  .progress-image-luisteren-verbeteren-vier-weken,
  .progress-text-luisteren-verbeteren-vier-weken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-luisteren-verbeteren-vier-weken {
    flex: 1 1 calc(50% - 1rem);
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero-highlights-luisteren-verbeteren-vier-weken {
    gap: 1rem;
  }

  .related-card-luisteren-verbeteren-vier-weken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-luisteren-verbeteren-vier-weken {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-luisteren-verbeteren-vier-weken {
    font-size: 0.75rem;
  }

  .hero-meta-luisteren-verbeteren-vier-weken {
    gap: 0.5rem;
  }

  .hero-highlights-luisteren-verbeteren-vier-weken {
    flex-direction: column;
    gap: 1rem;
  }

  .technique-cards-luisteren-verbeteren-vier-weken {
    gap: 1rem;
  }

  .schedule-list-luisteren-verbeteren-vier-weken {
    gap: 1rem;
  }

  .practical-tips-luisteren-verbeteren-vier-weken {
    gap: 1.25rem;
  }

  .progress-timeline-luisteren-verbeteren-vier-weken {
    gap: 1rem;
  }

  .related-cards-luisteren-verbeteren-vier-weken {
    gap: 1rem;
  }
}

.main-nederlands-op-het-werk {
  width: 100%;
  background: #ffffff;
}

.hero-section-nederlands-op-het-werk {
  background: linear-gradient(135deg, #0a0f1e 0%, #111d2f 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-nederlands-op-het-werk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
}

.breadcrumbs-nederlands-op-het-werk a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-nederlands-op-het-werk a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.breadcrumbs-nederlands-op-het-werk span {
  color: #64748b;
}

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

.hero-text-wrapper-nederlands-op-het-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-container-nederlands-op-het-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-tag-nederlands-op-het-werk {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero-title-nederlands-op-het-werk {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.02em;
}

.hero-subtitle-nederlands-op-het-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 0;
}

.hero-image-nederlands-op-het-werk {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.intro-section-nederlands-op-het-werk {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.intro-text-block-nederlands-op-het-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-nederlands-op-het-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlands-op-het-werk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.015em;
}

.intro-paragraph-nederlands-op-het-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.intro-image-nederlands-op-het-werk {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.expressions-section-nederlands-op-het-werk {
  background: #f9fafb;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.expressions-content-nederlands-op-het-werk {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.expressions-text-block-nederlands-op-het-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.expressions-image-block-nederlands-op-het-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.expressions-title-nederlands-op-het-werk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.expressions-intro-nederlands-op-het-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.expression-list-nederlands-op-het-werk {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.expression-item-nederlands-op-het-werk {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.expression-dutch-nederlands-op-het-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.expression-meaning-nederlands-op-het-werk {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.expressions-image-nederlands-op-het-werk {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.phrases-section-nederlands-op-het-werk {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.phrases-content-nederlands-op-het-werk {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.phrases-image-block-nederlands-op-het-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.phrases-text-block-nederlands-op-het-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.phrases-title-nederlands-op-het-werk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.phrases-intro-nederlands-op-het-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.phrases-grid-nederlands-op-het-werk {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.phrase-card-nederlands-op-het-werk {
  padding: 1.5rem;
  background: #f3f4f6;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.phrase-dutch-nederlands-op-het-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.phrase-explanation-nederlands-op-het-werk {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.phrases-image-nederlands-op-het-werk {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.conversation-section-nederlands-op-het-werk {
  background: #f9fafb;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.conversation-content-nederlands-op-het-werk {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conversation-title-nederlands-op-het-werk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.conversation-intro-nederlands-op-het-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 1.5rem;
}

.conversation-example-nederlands-op-het-werk {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
}

.conversation-left-nederlands-op-het-werk {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.speaker-label-nederlands-op-het-werk {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 1rem);
  color: #1e293b;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.speaker-label-nederlands-op-het-werk:first-of-type {
  margin-top: 0;
}

.conversation-line-nederlands-op-het-werk {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.conversation-breakdown-nederlands-op-het-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakdown-point-nederlands-op-het-werk {
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.breakdown-label-nederlands-op-het-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1rem;
}

.breakdown-list-nederlands-op-het-werk {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breakdown-list-nederlands-op-het-werk li {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.breakdown-list-nederlands-op-het-werk li:before {
  content: "";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: bold;
}

.conversation-image-container-nederlands-op-het-werk {
  margin-top: 2rem;
}

.conversation-image-nederlands-op-het-werk {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.tips-section-nederlands-op-het-werk {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.tips-content-nederlands-op-het-werk {
  display: flex;
  flex-direction: column;
}

.tips-title-nederlands-op-het-werk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.tips-grid-nederlands-op-het-werk {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.tip-card-nederlands-op-het-werk {
  flex: 1 1 calc(50% - 1rem);
  max-width: 350px;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card-nederlands-op-het-werk:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.tip-number-nederlands-op-het-werk {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.tip-heading-nederlands-op-het-werk {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.tip-text-nederlands-op-het-werk {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.summary-section-nederlands-op-het-werk {
  background: #f9fafb;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.summary-content-nederlands-op-het-werk {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.summary-text-wrapper-nederlands-op-het-werk {
  flex: 1 1 55%;
  max-width: 55%;
}

.summary-quote-wrapper-nederlands-op-het-werk {
  flex: 1 1 45%;
  max-width: 45%;
}

.summary-title-nederlands-op-het-werk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.summary-paragraph-nederlands-op-het-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.summary-emphasis-nederlands-op-het-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #1e293b;
  line-height: 1.75;
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 0;
}

.summary-quote-nederlands-op-het-werk {
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-text-nederlands-op-het-werk {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1rem;
}

.quote-author-nederlands-op-het-werk {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #64748b;
  font-weight: 600;
}

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

.disclaimer-content-nederlands-op-het-werk {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background: #f3f4f6;
  border-radius: 12px;
}

.disclaimer-title-nederlands-op-het-werk {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.disclaimer-text-nederlands-op-het-werk {
  font-size: clamp(0.8rem, 0.9vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

.related-section-nederlands-op-het-werk {
  background: #f9fafb;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.related-content-nederlands-op-het-werk {
  display: flex;
  flex-direction: column;
}

.related-title-nederlands-op-het-werk {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.related-cards-grid-nederlands-op-het-werk {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-nederlands-op-het-werk {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-nederlands-op-het-werk:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.related-image-container-nederlands-op-het-werk {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e5e7eb;
}

.related-card-image-nederlands-op-het-werk {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-nederlands-op-het-werk {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-card-title-nederlands-op-het-werk {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.related-card-description-nederlands-op-het-werk {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .hero-content-nederlands-op-het-werk,
  .intro-content-nederlands-op-het-werk,
  .expressions-content-nederlands-op-het-werk,
  .phrases-content-nederlands-op-het-werk,
  .conversation-example-nederlands-op-het-werk,
  .summary-content-nederlands-op-het-werk {
    flex-direction: column;
  }

  .hero-text-wrapper-nederlands-op-het-werk,
  .hero-image-container-nederlands-op-het-werk,
  .intro-text-block-nederlands-op-het-werk,
  .intro-image-block-nederlands-op-het-werk,
  .expressions-text-block-nederlands-op-het-werk,
  .expressions-image-block-nederlands-op-het-werk,
  .phrases-image-block-nederlands-op-het-werk,
  .phrases-text-block-nederlands-op-het-werk,
  .conversation-left-nederlands-op-het-werk,
  .conversation-breakdown-nederlands-op-het-werk,
  .summary-text-wrapper-nederlands-op-het-werk,
  .summary-quote-wrapper-nederlands-op-het-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tip-card-nederlands-op-het-werk {
    flex: 1 1 calc(50% - 1rem);
  }

  .related-card-nederlands-op-het-werk {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .hero-content-nederlands-op-het-werk,
  .intro-content-nederlands-op-het-werk,
  .expressions-content-nederlands-op-het-werk,
  .phrases-content-nederlands-op-het-werk,
  .conversation-example-nederlands-op-het-werk,
  .summary-content-nederlands-op-het-werk {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .hero-text-wrapper-nederlands-op-het-werk,
  .hero-image-container-nederlands-op-het-werk,
  .intro-text-block-nederlands-op-het-werk,
  .intro-image-block-nederlands-op-het-werk,
  .expressions-text-block-nederlands-op-het-werk,
  .expressions-image-block-nederlands-op-het-werk,
  .phrases-image-block-nederlands-op-het-werk,
  .phrases-text-block-nederlands-op-het-werk,
  .conversation-left-nederlands-op-het-werk,
  .conversation-breakdown-nederlands-op-het-werk,
  .summary-text-wrapper-nederlands-op-het-werk,
  .summary-quote-wrapper-nederlands-op-het-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tip-card-nederlands-op-het-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-nederlands-op-het-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-grid-nederlands-op-het-werk {
    flex-direction: column;
    align-items: center;
  }

  .conversation-image-container-nederlands-op-het-werk {
    margin-top: 1.5rem;
  }

  .hero-section-nederlands-op-het-werk,
  .intro-section-nederlands-op-het-werk,
  .expressions-section-nederlands-op-het-werk,
  .phrases-section-nederlands-op-het-werk,
  .conversation-section-nederlands-op-het-werk,
  .tips-section-nederlands-op-het-werk,
  .summary-section-nederlands-op-het-werk,
  .disclaimer-section-nederlands-op-het-werk,
  .related-section-nederlands-op-het-werk {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-nederlands-op-het-werk {
    font-size: 0.7rem;
    margin-bottom: 1rem;
  }

  .hero-title-nederlands-op-het-werk {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }

  .intro-title-nederlands-op-het-werk,
  .expressions-title-nederlands-op-het-werk,
  .phrases-title-nederlands-op-het-werk,
  .conversation-title-nederlands-op-het-werk,
  .tips-title-nederlands-op-het-werk,
  .summary-title-nederlands-op-het-werk,
  .related-title-nederlands-op-het-werk {
    font-size: clamp(1.125rem, 3vw, 1.875rem);
  }

  .expression-list-nederlands-op-het-werk,
  .phrases-grid-nederlands-op-het-werk {
    gap: 1rem;
  }

  .expression-item-nederlands-op-het-werk,
  .phrase-card-nederlands-op-het-werk {
    padding: 1rem;
  }

  .conversation-left-nederlands-op-het-werk,
  .breakdown-point-nederlands-op-het-werk {
    padding: 1.25rem;
  }

  .disclaimer-content-nederlands-op-het-werk {
    padding: 1.5rem;
  }

  .related-image-container-nederlands-op-het-werk {
    height: 150px;
  }

  .related-card-content-nederlands-op-het-werk {
    padding: 1rem;
  }
}

.main-essentiële-nederlandse-woorden {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

.hero-section-essentiële-nederlandse-woorden {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.breadcrumbs-essentiële-nederlandse-woorden {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-essentiële-nederlandse-woorden a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.breadcrumbs-essentiële-nederlandse-woorden a:hover {
  color: var(--color-primary-light);
}

.breadcrumbs-essentiële-nederlandse-woorden span {
  color: var(--color-text-muted);
}

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

.hero-text-essentiële-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-essentiële-nederlandse-woorden {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.hero-subtitle-essentiële-nederlandse-woorden {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-essentiële-nederlandse-woorden {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-muted);
}

.meta-item-essentiële-nederlandse-woorden {
  display: inline-block;
}

.meta-divider-essentiële-nederlandse-woorden {
  color: var(--color-primary);
}

.hero-image-essentiële-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-essentiële-nederlandse-woorden {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.intro-section-essentiële-nederlandse-woorden {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-essentiële-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-essentiële-nederlandse-woorden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-paragraph-essentiële-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-image-essentiële-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-essentiële-nederlandse-woorden {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.categories-section-essentiële-nederlandse-woorden {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.categories-content-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.categories-title-essentiële-nederlandse-woorden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  font-weight: 700;
}

.categories-intro-essentiële-nederlandse-woorden {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.categories-grid-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.category-card-essentiële-nederlandse-woorden {
  flex: 1 1 calc(50% - 1rem);
  max-width: 400px;
  background: var(--color-bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.category-card-essentiële-nederlandse-woorden:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.category-number-essentiële-nederlandse-woorden {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.category-card-title-essentiële-nederlandse-woorden {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.category-card-text-essentiële-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.category-examples-essentiële-nederlandse-woorden {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-examples-essentiële-nederlandse-woorden li {
  color: var(--color-text-muted);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  padding-left: 1.25rem;
  position: relative;
}

.category-examples-essentiële-nederlandse-woorden li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.practical-section-essentiële-nederlandse-woorden {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-wrapper-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practical-text-essentiële-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-essentiële-nederlandse-woorden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.practical-paragraph-essentiële-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.steps-container-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(245, 158, 11, 0.05);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.step-number-essentiële-nederlandse-woorden {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-title-essentiële-nederlandse-woorden {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.step-text-essentiële-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 0.95vw, 1rem);
  line-height: 1.6;
}

.practical-image-essentiële-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-img-essentiële-nederlandse-woorden {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.frequency-section-essentiële-nederlandse-woorden {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.frequency-wrapper-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.frequency-image-essentiële-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.frequency-img-essentiële-nederlandse-woorden {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.frequency-text-essentiële-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.frequency-title-essentiële-nederlandse-woorden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.frequency-paragraph-essentiële-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.frequency-list-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.freq-item-essentiële-nederlandse-woorden {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(245, 158, 11, 0.05);
  border-radius: var(--radius-md);
  border-left: 2px solid var(--color-primary);
}

.freq-rank-essentiële-nederlandse-woorden {
  font-weight: 700;
  color: var(--color-primary);
  min-width: 2rem;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
}

.freq-word-essentiële-nederlandse-woorden {
  font-weight: 600;
  color: var(--color-text-primary);
  min-width: 80px;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-family: 'Courier New', monospace;
}

.freq-meaning-essentiële-nederlandse-woorden {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  flex: 1;
}

.conversation-section-essentiële-nederlandse-woorden {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conversation-content-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.conversation-title-essentiële-nederlandse-woorden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  font-weight: 700;
}

.conversation-intro-essentiële-nederlandse-woorden {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.dialogue-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-primary);
}

.dialogue-exchange-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dialogue-speaker-essentiële-nederlandse-woorden {
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.6;
  margin: 0;
}

.dialogue-speaker-essentiële-nederlandse-woorden strong {
  color: var(--color-primary);
}

.dialogue-line-essentiële-nederlandse-woorden {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  font-style: italic;
  margin: 0;
  padding-left: 1rem;
}

.conversation-note-essentiële-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  text-align: center;
  background: rgba(245, 158, 11, 0.05);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
}

.tips-section-essentiële-nederlandse-woorden {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-wrapper-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.tips-text-essentiële-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-title-essentiële-nederlandse-woorden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.tips-intro-essentiële-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tips-list-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-item-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(245, 158, 11, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.tip-number-essentiële-nederlandse-woorden {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 700;
  color: var(--color-primary);
}

.tip-text-essentiële-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 0.95vw, 1rem);
  line-height: 1.6;
}

.tips-image-essentiële-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-img-essentiële-nederlandse-woorden {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.conclusion-section-essentiële-nederlandse-woorden {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-essentiële-nederlandse-woorden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  font-weight: 700;
}

.conclusion-text-essentiële-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  text-align: center;
}

.conclusion-highlight-essentiële-nederlandse-woorden {
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
}

.highlight-text-essentiële-nederlandse-woorden {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.7;
}

.conclusion-final-essentiële-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  text-align: center;
}

.disclaimer-section-essentiële-nederlandse-woorden {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-essentiële-nederlandse-woorden {
  background: var(--color-bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-essentiële-nederlandse-woorden {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-essentiële-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 0.95vw, 1rem);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.disclaimer-text-essentiële-nederlandse-woorden:last-child {
  margin-bottom: 0;
}

.related-section-essentiële-nederlandse-woorden {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.related-title-essentiële-nederlandse-woorden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  font-weight: 700;
}

.related-grid-essentiële-nederlandse-woorden {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-essentiële-nederlandse-woorden {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: var(--color-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  text-decoration: none;
}

.related-card-essentiële-nederlandse-woorden:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.related-image-essentiële-nederlandse-woorden {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.related-img-essentiële-nederlandse-woorden {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-body-essentiële-nederlandse-woorden {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-essentiële-nederlandse-woorden {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.4;
}

.related-card-text-essentiële-nederlandse-woorden {
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .hero-content-essentiële-nederlandse-woorden,
  .intro-content-essentiële-nederlandse-woorden,
  .practical-wrapper-essentiële-nederlandse-woorden,
  .frequency-wrapper-essentiële-nederlandse-woorden,
  .tips-wrapper-essentiële-nederlandse-woorden {
    flex-direction: column;
  }

  .hero-text-essentiële-nederlandse-woorden,
  .hero-image-essentiële-nederlandse-woorden,
  .intro-text-essentiële-nederlandse-woorden,
  .intro-image-essentiële-nederlandse-woorden,
  .practical-text-essentiële-nederlandse-woorden,
  .practical-image-essentiële-nederlandse-woorden,
  .frequency-image-essentiële-nederlandse-woorden,
  .frequency-text-essentiële-nederlandse-woorden,
  .tips-text-essentiële-nederlandse-woorden,
  .tips-image-essentiële-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .category-card-essentiële-nederlandse-woorden {
    flex: 1 1 calc(50% - 1rem);
  }

  .related-card-essentiële-nederlandse-woorden {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

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

  .breadcrumbs-essentiële-nederlandse-woorden {
    font-size: 0.75rem;
  }

  .categories-grid-essentiële-nederlandse-woorden {
    flex-direction: column;
  }

  .category-card-essentiële-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-grid-essentiële-nederlandse-woorden {
    flex-direction: column;
  }

  .related-card-essentiële-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .steps-container-essentiële-nederlandse-woorden {
    gap: 1rem;
  }

  .step-essentiële-nederlandse-woorden {
    padding: 0.75rem;
  }

  .freq-item-essentiële-nederlandse-woorden {
    flex-direction: column;
    align-items: flex-start;
  }

  .tips-list-essentiële-nederlandse-woorden {
    gap: 0.75rem;
  }

  .tip-item-essentiële-nederlandse-woorden {
    padding: 0.75rem;
  }
}

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

  .hero-section-essentiële-nederlandse-woorden,
  .intro-section-essentiële-nederlandse-woorden,
  .categories-section-essentiële-nederlandse-woorden,
  .practical-section-essentiële-nederlandse-woorden,
  .frequency-section-essentiële-nederlandse-woorden,
  .conversation-section-essentiële-nederlandse-woorden,
  .tips-section-essentiële-nederlandse-woorden,
  .conclusion-section-essentiële-nederlandse-woorden,
  .disclaimer-section-essentiële-nederlandse-woorden,
  .related-section-essentiële-nederlandse-woorden {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }

  .hero-title-essentiële-nederlandse-woorden {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }

  .breadcrumbs-essentiële-nederlandse-woorden {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .breadcrumbs-essentiële-nederlandse-woorden span {
    display: none;
  }
}

* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.dutch-language-academy-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

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

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  text-align: center;
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: var(--leading-tight);
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  line-height: var(--leading-relaxed);
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

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

.stat-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
}

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

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  margin-top: clamp(1rem, 2vw, 2rem);
  box-shadow: var(--shadow-lg);
}

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

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

.section-header-about {
  text-align: center;
}

.section-tag-about {
  display: inline-block;
  padding: 0.4rem clamp(0.8rem, 2vw, 1.2rem);
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.origin-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #1e293b;
  line-height: var(--leading-tight);
}

.origin-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: var(--leading-relaxed);
  max-width: 800px;
  margin: 1.5rem auto 0;
}

.origin-grid-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.origin-block-about {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.origin-block-title-about {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.origin-block-text-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: var(--leading-relaxed);
}

.approach-section-about {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.approach-header-about {
  text-align: center;
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: var(--leading-tight);
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  line-height: var(--leading-relaxed);
  max-width: 750px;
  margin: 0 auto;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 3vw, 3rem);
}

.process-step-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border-top: 2px solid var(--color-primary);
  transition: all var(--transition-base);
}

.process-step-about:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.step-title-about {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.5rem);
  font-weight: 700;
  color: #ffffff;
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #cbd5e1;
  line-height: var(--leading-relaxed);
}

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

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

.expertise-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.expertise-tag-about {
  display: inline-block;
  padding: 0.4rem clamp(0.8rem, 2vw, 1.2rem);
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.expertise-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #1e293b;
  line-height: var(--leading-tight);
  margin-bottom: 1rem;
}

.expertise-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: var(--leading-relaxed);
  max-width: 800px;
  margin: 0 auto;
}

.expertise-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
}

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

.card-icon-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.card-title-about {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.3rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: var(--leading-relaxed);
}

.values-section-about {
  background: #1a202c;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.values-header-about {
  text-align: center;
}

.values-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: var(--leading-tight);
  margin-bottom: 1rem;
}

.values-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: var(--leading-relaxed);
  max-width: 750px;
  margin: 0 auto;
}

.featured-quote-about {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: var(--radius-lg);
  margin: clamp(2rem, 3vw, 3rem) auto;
  max-width: 850px;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.3rem);
  color: #ffffff;
  font-style: italic;
  line-height: var(--leading-relaxed);
  margin-bottom: 1.5rem;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-primary);
  font-style: normal;
  font-weight: 600;
}

.disclaimer-section-about {
  background: #0d1526;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.4rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.disclaimer-text-about {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: #94a3b8;
  line-height: var(--leading-relaxed);
  margin: 0;
}

.story-visual-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  box-shadow: var(--shadow-md);
}

.methodology-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .hero-stats-about {
    gap: clamp(2rem, 4vw, 4rem);
  }

  .expertise-cards-about {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .process-step-about {
    padding: clamp(2rem, 2.5vw, 2.5rem);
  }

  .featured-quote-about {
    padding: clamp(2.5rem, 3vw, 3.5rem);
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .origin-section-about {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .approach-section-about {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .expertise-section-about {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .values-section-about {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .process-steps-about {
    gap: clamp(2rem, 3vw, 3rem);
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.services-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

.services-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin: 0;
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--leading-normal);
  max-width: 500px;
}

.services-hero__image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-2xl) var(--space-lg);
  }

  .services-hero__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .services-hero__image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .services-hero__image {
    height: 400px;
  }
}

.services-cards-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-sm);
  overflow: hidden;
}

.services-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.services-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.services-card:hover {
  background-color: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.services-card__icon {
  width: 48px;
  height: 48px;
  background-color: rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.services-card__icon svg {
  width: 24px;
  height: 24px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 700;
  line-height: var(--leading-tight);
}

.services-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--leading-relaxed);
  flex-grow: 1;
}

.services-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.services-card__detail-item {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--color-primary-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

@media (min-width: 768px) {
  .services-cards-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .services-cards-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .services-card {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-cards-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-cards-container {
    grid-template-columns: 1fr 1fr;
  }

  .services-card {
    padding: var(--space-xl);
  }
}

.services-cta-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-xl) var(--space-sm);
  overflow: hidden;
}

.services-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.services-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 700;
  line-height: var(--leading-tight);
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--leading-relaxed);
}

.services-cta__button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  line-height: var(--leading-tight);
}

.services-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.services-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-cta-section {
    padding: var(--space-2xl) var(--space-lg);
  }

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

@media (min-width: 1024px) {
  .services-cta-section {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .services-card__details {
    gap: var(--space-xs);
  }

  .services-card__detail-item {
    font-size: var(--text-xs);
    padding: 4px 8px;
  }
}

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  padding: var(--space-lg) var(--space-md);
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs .content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--leading-tight);
}

.legal-docs .last-updated {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--leading-tight);
}

.legal-docs p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.legal-docs ul {
  list-style-position: inside;
  margin-bottom: var(--space-md);
  margin-left: var(--space-md);
}

.legal-docs li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-sm);
}

.legal-docs strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
  border-radius: var(--radius-md);
}

.legal-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-primary);
}

.legal-docs .contact-section p {
  margin-bottom: var(--space-md);
}

.legal-docs .contact-section p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .legal-docs {
    padding: var(--space-xl) var(--space-lg);
  }

  .legal-docs .container {
    padding: 0 var(--space-lg);
  }

  .legal-docs h2 {
    margin-top: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.thank-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.thank-icon {
  width: clamp(60px, 15vw, 120px);
  height: clamp(60px, 15vw, 120px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: var(--leading-tight);
  animation: slideDown 0.6s ease-out 0.1s both;
}

.thank-content .lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
  animation: slideDown 0.6s ease-out 0.2s both;
}

.thank-content .description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
  max-width: 600px;
  animation: slideDown 0.6s ease-out 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  animation: slideDown 0.6s ease-out 0.4s both;
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-xl);
  }

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

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-2xl);
    min-height: 100vh;
  }

  .container {
    padding: 0 var(--space-xl);
  }

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

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl);
  }

  .container {
    padding: 0 var(--space-2xl);
  }

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

  .btn:hover {
    box-shadow: var(--shadow-xl);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: drift 20s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.error-code-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.error-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(40px);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.2); opacity: 0.15; }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-sm);
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-primary);
  font-weight: 600;
  line-height: var(--leading-normal);
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-sm);
}

.error-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  padding: var(--space-lg);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(10px);
}

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

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.feature-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-primary);
  font-weight: 500;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
  border: 2px solid var(--color-primary);
  margin-top: var(--space-md);
  cursor: pointer;
  text-align: center;
}

.btn-home:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

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

.error-footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.footer-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl);
  }

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

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

  .error-code {
    animation: float 5s ease-in-out infinite;
  }

  .error-features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding: var(--space-xl);
  }

  .feature-item {
    flex: 0 1 calc(50% - var(--space-sm));
  }

  .error-decoration {
    width: 300px;
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

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

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

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

  .feature-item {
    flex: 0 1 calc(33.333% - var(--space-lg));
  }

  .error-code {
    animation: float 6s ease-in-out infinite;
  }

  .btn-home {
    padding: var(--space-lg) var(--space-2xl);
  }

  .error-decoration {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .error-section {
    min-height: auto;
    padding: var(--space-lg) var(--space-md);
  }

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

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

  .feature-item {
    flex: 1 1 100%;
  }

  .btn-home {
    width: 100%;
  }
}

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

html {
  scroll-behavior: smooth;
}

.contact-page-talktous {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

.contact-talk-to-us-hero {
  background: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  position: relative;
}

.contact-talk-to-us-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact-talk-to-us-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-lg) 0;
}

.contact-talk-to-us-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.contact-talk-to-us-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-talk-to-us-main {
  background: var(--color-bg-secondary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-talk-to-us-content {
  width: 100%;
}

.contact-talk-to-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (max-width: 1024px) {
  .contact-talk-to-us-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .contact-talk-to-us-main {
    padding: var(--space-2xl) 0;
  }

  .contact-talk-to-us-grid {
    gap: var(--space-xl);
  }
}

.contact-talk-to-us-form-wrapper {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.contact-talk-to-us-form-wrapper:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
  .contact-talk-to-us-form-wrapper {
    padding: var(--space-lg);
  }
}

.contact-talk-to-us-form-header {
  margin-bottom: var(--space-xl);
}

.contact-talk-to-us-form-title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-talk-to-us-form-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.contact-talk-to-us-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-talk-to-us-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-talk-to-us-input,
.contact-talk-to-us-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
}

.contact-talk-to-us-input::placeholder,
.contact-talk-to-us-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-talk-to-us-input:focus,
.contact-talk-to-us-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.contact-talk-to-us-textarea {
  min-height: 140px;
  resize: vertical;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.contact-talk-to-us-form-consent {
  padding: var(--space-md);
  background: rgba(245, 158, 11, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.contact-talk-to-us-consent-text {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-talk-to-us-consent-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-talk-to-us-consent-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-talk-to-us-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-talk-to-us-submit:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

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

.contact-talk-to-us-submit:disabled {
  background: var(--color-text-muted);
  cursor: not-allowed;
  transform: none;
}

.contact-talk-to-us-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contact-talk-to-us-info-header {
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-talk-to-us-info-title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-talk-to-us-info-description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-talk-to-us-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-talk-to-us-info-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-talk-to-us-info-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.contact-talk-to-us-info-item:hover .contact-talk-to-us-info-icon {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.contact-talk-to-us-info-content {
  flex: 1;
}

.contact-talk-to-us-info-item-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.contact-talk-to-us-info-item-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.contact-talk-to-us-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-talk-to-us-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-talk-to-us-info-item-meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-style: italic;
}

.contact-talk-to-us-info-highlight {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.contact-talk-to-us-info-highlight-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.contact-talk-to-us-info-highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-talk-to-us-info-highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-talk-to-us-highlight-check {
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}

.contact-talk-to-us-cta {
  background: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-talk-to-us-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-talk-to-us-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-talk-to-us-cta-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.contact-talk-to-us-cta-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-talk-to-us-hero {
    padding: var(--space-xl) 0;
  }

  .contact-talk-to-us-cta {
    padding: var(--space-2xl) 0;
  }

  .contact-talk-to-us-info-item {
    gap: var(--space-md);
  }

  .contact-talk-to-us-info-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

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

  .contact-talk-to-us-form-wrapper {
    padding: var(--space-md);
  }

  .contact-talk-to-us-form {
    gap: var(--space-md);
  }

  .contact-talk-to-us-input,
  .contact-talk-to-us-textarea {
    font-size: 16px;
  }

  .contact-talk-to-us-submit {
    padding: 0.875rem 1.5rem;
    font-size: var(--text-xs);
  }
}

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

@media (prefers-color-scheme: light) {
  .contact-page-talktous {
    background: #f9fafb;
    color: #1f2937;
  }

  .contact-talk-to-us-hero {
    background: #ffffff;
  }

  .contact-talk-to-us-main {
    background: #f3f4f6;
  }

  .contact-talk-to-us-form-wrapper {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
  }

  .contact-talk-to-us-input,
  .contact-talk-to-us-textarea {
    background: rgba(0, 0, 0, 0.03);
    color: #1f2937;
    border-color: rgba(0, 0, 0, 0.1);
  }

  .contact-talk-to-us-input::placeholder,
  .contact-talk-to-us-textarea::placeholder {
    color: #9ca3af;
  }

  .contact-talk-to-us-label,
  .contact-talk-to-us-form-title,
  .contact-talk-to-us-info-title,
  .contact-talk-to-us-info-item-title,
  .contact-talk-to-us-cta-title {
    color: #1f2937;
  }

  .contact-talk-to-us-form-description,
  .contact-talk-to-us-info-description,
  .contact-talk-to-us-info-item-text,
  .contact-talk-to-us-cta-text {
    color: #6b7280;
  }

  .contact-talk-to-us-info-icon {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
  }

  .contact-talk-to-us-form-consent {
    background: rgba(245, 158, 11, 0.08);
  }
}
.faq-page {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  min-height: 100vh;
}

.faq-hero {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.faq-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.faq-hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  text-align: center;
  position: relative;
  z-index: 1;
}

.faq-hero-title {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: var(--leading-tight);
}

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

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

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

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: clamp(1.25rem, 2vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question-text {
  font-size: clamp(1rem, 2vw + 0.3rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  font-family: var(--font-primary);
  line-height: var(--leading-normal);
  flex: 1;
}

.faq-icon {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-primary);
  font-weight: 300;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 clamp(1.25rem, 2vw, 1.5rem) clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.faq-cta {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  text-align: center;
}

.faq-cta-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.015em;
  line-height: var(--leading-tight);
}

.faq-cta-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--leading-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1rem) clamp(2rem, 4vw, 2.5rem);
  background: var(--color-primary);
  color: #000000;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  font-family: var(--font-primary);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.faq-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.faq-cta-button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .faq-hero {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .faq-content {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .faq-cta {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .faq-question {
    padding: clamp(1rem, 2vw, 1.25rem);
  }

  .faq-answer p {
    padding: 0 clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2vw, 1.25rem);
  }

  .faq-item.active .faq-answer {
    max-height: 600px;
  }
}

@media (max-width: 480px) {
  .faq-grid {
    gap: var(--space-md);
  }

  .faq-cta-button {
    width: 100%;
  }

  .faq-item.active .faq-answer {
    max-height: 800px;
  }
}