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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #1e293b;
  --color-bg-quaternary: #f8fafc;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  --color-text-light: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #78828f;
  
  
  --color-primary: #f59e0b;
  --color-primary-hover: #d97706;
  --color-primary-light: #fcd34d;
  --color-secondary: #06b6d4;
  --color-secondary-hover: #0891b2;
  --color-accent-dutch: #ea580c;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Merriweather', serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--color-text-light);
  background: var(--color-bg-secondary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.25rem, 4vw, 1.875rem);
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-semibold);
}

p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.btn-light {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-lg {
  padding: var(--space-md) var(--space-2xl);
  font-size: 1.125rem;
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

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

.section-dark-primary {
  background: var(--color-bg-primary);
  color: var(--color-text-dark);
}

.section-dark-primary h1,
.section-dark-primary h2,
.section-dark-primary h3,
.section-dark-primary h4,
.section-dark-primary h5,
.section-dark-primary h6 {
  color: var(--color-text-dark);
}

.section-dark-primary p {
  color: var(--color-text-dark-secondary);
}

.section-dark-primary a {
  color: var(--color-primary-light);
}

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

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

.section-light-primary h1,
.section-light-primary h2,
.section-light-primary h3,
.section-light-primary h4,
.section-light-primary h5,
.section-light-primary h6 {
  color: var(--color-text-light);
}

.section-light-primary p {
  color: var(--color-text-light-secondary);
}

.section-light-primary a {
  color: var(--color-primary);
}

.section-dark-secondary {
  background: var(--color-bg-tertiary);
  color: var(--color-text-dark);
}

.section-dark-secondary h1,
.section-dark-secondary h2,
.section-dark-secondary h3,
.section-dark-secondary h4,
.section-dark-secondary h5,
.section-dark-secondary h6 {
  color: var(--color-text-dark);
}

.section-dark-secondary p {
  color: var(--color-text-dark-secondary);
}

.section-dark-secondary a {
  color: var(--color-secondary);
}

.section-dark-secondary a:hover {
  color: var(--color-secondary-hover);
}

.section-light-secondary {
  background: var(--color-bg-quaternary);
  color: var(--color-text-light);
}

.section-light-secondary h1,
.section-light-secondary h2,
.section-light-secondary h3,
.section-light-secondary h4,
.section-light-secondary h5,
.section-light-secondary h6 {
  color: var(--color-text-light);
}

.section-light-secondary p {
  color: var(--color-text-light-secondary);
}

.section-light-secondary a {
  color: var(--color-secondary);
}

.card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.card-light {
  background: var(--color-bg-card-light);
  color: var(--color-text-light);
}

.card-light h3,
.card-light h4 {
  color: var(--color-text-light);
}

.card-light p {
  color: var(--color-text-light-secondary);
}

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

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

.card-dark h3,
.card-dark h4 {
  color: var(--color-text-dark);
}

.card-dark p {
  color: var(--color-text-dark-secondary);
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.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(280px, 1fr));
}

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

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

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

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

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

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

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

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

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.5px;
}

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

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

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

.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-dark);
}

.divider {
  height: 1px;
  background: var(--color-text-light-muted);
  margin: var(--space-lg) 0;
  opacity: 0.2;
}

.divider-dark {
  background: var(--color-text-dark-muted);
  opacity: 0.1;
}

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

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

.text-muted {
  color: var(--color-text-light-muted);
}

.text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.7;
}

.font-bold {
  font-weight: var(--font-weight-bold);
}

.font-semibold {
  font-weight: var(--font-weight-semibold);
}

.font-medium {
  font-weight: var(--font-weight-medium);
}

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

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

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

.list-unstyled {
  list-style: none;
}

.list-unstyled li {
  margin-bottom: var(--space-sm);
}

.list-check {
  list-style: none;
}

.list-check li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
}

@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 pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

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

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

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

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

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

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .no-print {
    display: none !important;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background: var(--color-bg-primary);
    color: var(--color-text-dark);
  }
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .section-sm {
    padding: var(--space-lg) 0;
  }
  
  .card {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
.header-spraak-portal {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: static;
  z-index: 100;
  overflow: hidden;
}

.header-spraak-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;
  height: clamp(60px, 12vh, 80px);
  gap: 2rem;
}

.header-spraak-portal-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-spraak-portal-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.header-spraak-portal-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  letter-spacing: -0.5px;
}

.header-spraak-portal-brand:hover .header-spraak-portal-logo-text {
  color: var(--color-primary);
  transition: color var(--transition-base);
}

.header-spraak-portal-desktop-nav {
  display: none;
  flex-direction: row;
  gap: clamp(0.5rem, 2vw, 2.5rem);
  align-items: center;
  flex: 1;
}

.header-spraak-portal-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
}

.header-spraak-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-spraak-portal-nav-link:hover {
  color: var(--color-text-dark);
}

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

.header-spraak-portal-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-accent-dutch);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

.header-spraak-portal-cta-button:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(234, 88, 12, 0.25);
}

.header-spraak-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-dark);
  font-size: 1.5rem;
  transition: color var(--transition-base);
  z-index: 101;
  flex-shrink: 0;
}

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

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

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

.header-spraak-portal-mobile-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.header-spraak-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.header-spraak-portal-mobile-link {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-spraak-portal-mobile-link:hover {
  color: var(--color-primary);
}

.header-spraak-portal-mobile-cta {
  padding: 1rem 1.5rem;
  background: var(--color-accent-dutch);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  margin-top: auto;
  letter-spacing: 0.3px;
}

.header-spraak-portal-mobile-cta:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(234, 88, 12, 0.25);
}

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

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

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

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

@media (max-width: 767px) {
  .header-spraak-portal-container {
    height: clamp(56px, 10vh, 72px);
  }

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

    .fluency-hub {
  width: 100%;
}

.fluency-hub * {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fluency-hub section {
  overflow: hidden;
}

.hero-section-index {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

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

.hero-text-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-index {
  color: #0f172a;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle-index {
  color: #475569;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

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

.hero-image-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

  .hero-image-index {
    flex: 1 1 100%;
  }

  .hero-buttons-index {
    flex-direction: column;
  }

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

.partners-section-index {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.partners-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partners-title-index {
  color: #0f172a;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
}

.partners-text-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.partner-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-icon-index {
  font-size: 2.5rem;
  color: #f59e0b;
}

.card-title-index {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
}

.card-text-index {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

  .partner-card-index {
    flex: 1 1 100%;
  }
}

.testimonials-section-index {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

.testimonials-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonials-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.testimonials-quotes-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);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-text-index {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-name-index {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.author-detail-index {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
}

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

  .testimonial-card-index {
    flex: 1 1 100%;
  }
}

.how-it-works-section-index {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

.how-it-works-title-index {
  color: #0f172a;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.how-it-works-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.how-it-works-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.step-number-index {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #f59e0b;
  flex-shrink: 0;
  min-width: 80px;
}

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

.step-title-index {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.step-text-index {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.how-it-works-image-index {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(1rem, 3vw, 2rem);
}

.how-it-works-img-index {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

  .step-number-index {
    min-width: auto;
  }
}

.statistics-section-index {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

.statistics-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.statistics-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

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

.stat-card-index {
  flex: 1 1 260px;
  max-width: 340px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-number-index {
  color: #fcd34d;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.stat-label-index {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.stat-description-index {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

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

  .stat-card-index {
    flex: 1 1 100%;
  }
}

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

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

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

.faq-title-index {
  color: #0f172a;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

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

.faq-item-index {
  flex: 1 1 350px;
  max-width: 480px;
}

.faq-question-index {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-answer-index {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

  .faq-item-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.featured-title-index {
  color: #0f172a;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-card-img-index {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.featured-card-title-index {
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.featured-card-text-index {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.featured-card-link-index {
  color: #f59e0b;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition-base);
}

.featured-card-link-index:hover {
  color: #d97706;
  text-decoration: underline;
}

.featured-footer-index {
  display: flex;
  justify-content: center;
}

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

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

.cta-section-index {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.cta-box-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.2;
}

.cta-text-index {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.cta-benefits-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-benefits-title-index {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.cta-benefits-list-index {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item-index {
  color: #cbd5e1;
  font-size: 0.95rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.benefit-item-index::before {
  content: '';
  position: absolute;
  left: 0;
  color: #fcd34d;
  font-weight: 700;
  font-size: 1.25rem;
}

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

  .cta-box-index {
    flex: 1 1 100%;
  }

  .cta-benefits-index {
    flex: 1 1 100%;
  }
}

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

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

.cookie-banner-text-index {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

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

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

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

.cookie-btn-decline-index:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cookie-banner-buttons-index {
    flex: 1 1 100%;
    justify-content: center;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 0.75rem;
  }

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

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

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

.footer .container {
  max-width: 1200px;
  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 {
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: -0.5px;
}

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

.footer-navigation {
  display: block;
}

.footer-navigation h3 {
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: -0.5px;
}

.footer-nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.75rem);
}

.footer-contact {
  display: block;
}

.footer-contact h3 {
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: -0.5px;
}

.footer-contact p {
  color: var(--color-text-dark-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 0.5rem;
}

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

.footer-legal {
  display: block;
}

.footer-legal h3 {
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: -0.5px;
}

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

.footer-link {
  color: var(--color-text-dark-muted);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color var(--transition-base), text-decoration var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

  .footer-navigation {
    flex: 0 1 auto;
    min-width: 180px;
  }

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

  .footer-legal {
    flex: 0 1 auto;
    min-width: 200px;
  }

  .footer-copyright {
    flex: 1 1 100%;
    order: 10;
  }

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

@media (min-width: 1024px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(3rem, 6vw, 4rem);
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-about {
    flex: 1 1 auto;
    max-width: 340px;
  }

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

  .footer-contact {
    flex: 1 1 auto;
    max-width: 340px;
  }

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

  .footer-copyright {
    display: none;
  }

  .footer::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-top: clamp(2rem, 4vw, 3rem);
  }
}

@media (max-width: 767px) {
  .footer-nav-links,
  .footer-legal-links {
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1rem);
  }

  .footer-link {
    display: inline-block;
  }
}
    

.category-page-dutch-fluency {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-header-dutch-fluency {
  text-align: center;
}

.hero-title-dutch-fluency {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.5px;
}

.hero-subtitle-dutch-fluency {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.hero-highlight-dutch-fluency {
  display: flex;
  justify-content: center;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.highlight-box-dutch-fluency {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  max-width: 600px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-box-dutch-fluency i {
  color: #f59e0b;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.highlight-text-dutch-fluency {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

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

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

.posts-header-dutch-fluency {
  text-align: center;
}

.posts-title-dutch-fluency {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.posts-subtitle-dutch-fluency {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.card-dutch-fluency:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

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

.card-title-dutch-fluency {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  padding: 0 1.5rem;
  padding-top: 0.5rem;
  line-height: 1.4;
}

.card-description-dutch-fluency {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #475569;
  margin: 0;
  padding: 0 1.5rem;
  line-height: 1.6;
}

.card-meta-dutch-fluency {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0 1.5rem;
  font-size: 0.85rem;
}

.card-reading-dutch-fluency,
.card-level-dutch-fluency,
.card-date-dutch-fluency {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #78828f;
  font-family: 'Poppins', sans-serif;
}

.card-reading-dutch-fluency i,
.card-level-dutch-fluency i,
.card-date-dutch-fluency i {
  color: #f59e0b;
  font-size: 0.9rem;
}

.card-link-dutch-fluency {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f59e0b;
  text-decoration: none;
  padding: 0 1.5rem 1.5rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.card-link-dutch-fluency:hover {
  color: #d97706;
  text-decoration: underline;
}

.insights-section-dutch-fluency {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-dutch-fluency {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.insights-header-dutch-fluency {
  text-align: center;
}

.insights-title-dutch-fluency {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

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

.insight-card-dutch-fluency {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
}

.insight-card-dutch-fluency:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
}

.insight-quote-dutch-fluency {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-quote-dutch-fluency i {
  font-size: 1.5rem;
  color: #f59e0b;
  opacity: 0.6;
}

.insight-text-dutch-fluency {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.insight-author-dutch-fluency {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0;
  font-weight: 600;
}

.tips-section-dutch-fluency {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-dutch-fluency {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.tips-header-dutch-fluency {
  text-align: center;
}

.tips-title-dutch-fluency {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tips-subtitle-dutch-fluency {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.tip-item-dutch-fluency {
  flex: 1 1 250px;
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-item-dutch-fluency:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.tip-number-dutch-fluency {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #f59e0b;
  border-radius: 50%;
  color: #ffffff;
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tip-title-dutch-fluency {
  font-family: 'Merriweather', serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

.tip-description-dutch-fluency {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

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

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

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

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

  .tips-section-dutch-fluency {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

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

  .insight-card-dutch-fluency {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tip-item-dutch-fluency {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .highlight-box-dutch-fluency {
    flex-direction: column;
    text-align: center;
  }

  .highlight-box-dutch-fluency i {
    margin: 0 auto 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title-dutch-fluency {
    font-size: 1.75rem;
  }

  .posts-title-dutch-fluency {
    font-size: 1.5rem;
  }

  .insights-title-dutch-fluency {
    font-size: 1.5rem;
  }

  .tips-title-dutch-fluency {
    font-size: 1.5rem;
  }

  .card-image-dutch-fluency {
    height: 180px;
  }

  .card-meta-dutch-fluency {
    gap: 1rem;
  }

  .tips-grid-dutch-fluency {
    gap: 1rem;
  }

  .posts-grid-dutch-fluency {
    gap: 1rem;
  }

  .insights-grid-dutch-fluency {
    gap: 1rem;
  }
}

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

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.main-juiste-uitspraak-nederlandse-klanken {
  width: 100%;
  position: relative;
}

.hero-section-juiste-uitspraak-nederlandse-klanken {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-juiste-uitspraak-nederlandse-klanken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-juiste-uitspraak-nederlandse-klanken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-juiste-uitspraak-nederlandse-klanken img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.hero-badge-juiste-uitspraak-nederlandse-klanken {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.hero-title-juiste-uitspraak-nederlandse-klanken {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-subtitle-juiste-uitspraak-nederlandse-klanken {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hero-meta-juiste-uitspraak-nederlandse-klanken {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.meta-item-juiste-uitspraak-nederlandse-klanken {
  color: #94a3b8;
}

.meta-divider-juiste-uitspraak-nederlandse-klanken {
  color: #94a3b8;
  opacity: 0.5;
}

.breadcrumbs-juiste-uitspraak-nederlandse-klanken {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.breadcrumbs-juiste-uitspraak-nederlandse-klanken a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 250ms ease-in-out;
}

.breadcrumbs-juiste-uitspraak-nederlandse-klanken a:hover {
  color: #fcd34d;
}

.breadcrumbs-juiste-uitspraak-nederlandse-klanken span {
  color: #94a3b8;
}

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

  .hero-text-juiste-uitspraak-nederlandse-klanken,
  .hero-image-juiste-uitspraak-nederlandse-klanken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-juiste-uitspraak-nederlandse-klanken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-juiste-uitspraak-nederlandse-klanken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-juiste-uitspraak-nederlandse-klanken img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.intro-title-juiste-uitspraak-nederlandse-klanken {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

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

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

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

.content-first-juiste-uitspraak-nederlandse-klanken {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-first-text-juiste-uitspraak-nederlandse-klanken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-first-image-juiste-uitspraak-nederlandse-klanken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-first-image-juiste-uitspraak-nederlandse-klanken img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.content-first-title-juiste-uitspraak-nederlandse-klanken {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.content-first-paragraph-juiste-uitspraak-nederlandse-klanken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-first-list-juiste-uitspraak-nederlandse-klanken {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.list-item-juiste-uitspraak-nederlandse-klanken {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

.list-item-juiste-uitspraak-nederlandse-klanken::before {
  content: '';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 700;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .content-first-wrapper-juiste-uitspraak-nederlandse-klanken {
    flex-direction: column;
  }

  .content-first-text-juiste-uitspraak-nederlandse-klanken,
  .content-first-image-juiste-uitspraak-nederlandse-klanken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-second-juiste-uitspraak-nederlandse-klanken {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-second-text-juiste-uitspraak-nederlandse-klanken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-second-image-juiste-uitspraak-nederlandse-klanken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-second-image-juiste-uitspraak-nederlandse-klanken img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.content-second-title-juiste-uitspraak-nederlandse-klanken {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.content-second-paragraph-juiste-uitspraak-nederlandse-klanken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .content-second-wrapper-juiste-uitspraak-nederlandse-klanken {
    flex-direction: column-reverse;
  }

  .content-second-text-juiste-uitspraak-nederlandse-klanken,
  .content-second-image-juiste-uitspraak-nederlandse-klanken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-third-juiste-uitspraak-nederlandse-klanken {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-third-text-juiste-uitspraak-nederlandse-klanken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-third-image-juiste-uitspraak-nederlandse-klanken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-third-image-juiste-uitspraak-nederlandse-klanken img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.content-third-title-juiste-uitspraak-nederlandse-klanken {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.content-third-paragraph-juiste-uitspraak-nederlandse-klanken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-box-juiste-uitspraak-nederlandse-klanken {
  background: #e0f2fe;
  border-left: 4px solid #06b6d4;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.highlight-text-juiste-uitspraak-nederlandse-klanken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #0369a1;
  line-height: 1.6;
}

.highlight-text-juiste-uitspraak-nederlandse-klanken strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .content-third-wrapper-juiste-uitspraak-nederlandse-klanken {
    flex-direction: column;
  }

  .content-third-text-juiste-uitspraak-nederlandse-klanken,
  .content-third-image-juiste-uitspraak-nederlandse-klanken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-juiste-uitspraak-nederlandse-klanken {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-juiste-uitspraak-nederlandse-klanken {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tips-title-juiste-uitspraak-nederlandse-klanken {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.5px;
}

.tips-intro-juiste-uitspraak-nederlandse-klanken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.tips-cards-juiste-uitspraak-nederlandse-klanken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-juiste-uitspraak-nederlandse-klanken {
  flex: 1 1 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 250ms ease-in-out;
}

.tip-card-juiste-uitspraak-nederlandse-klanken:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.card-icon-juiste-uitspraak-nederlandse-klanken {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #ffffff;
}

.card-title-juiste-uitspraak-nederlandse-klanken {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.card-text-juiste-uitspraak-nederlandse-klanken {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tips-cards-juiste-uitspraak-nederlandse-klanken {
    flex-direction: column;
  }

  .tip-card-juiste-uitspraak-nederlandse-klanken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-juiste-uitspraak-nederlandse-klanken {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-juiste-uitspraak-nederlandse-klanken {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.conclusion-paragraph-juiste-uitspraak-nederlandse-klanken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.featured-quote-juiste-uitspraak-nederlandse-klanken {
  border-left: 4px solid #f59e0b;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 8px;
  margin: 2rem 0;
}

.quote-text-juiste-uitspraak-nederlandse-klanken {
  font-family: 'Merriweather', serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-style: italic;
  color: #0f172a;
  line-height: 1.8;
}

.conclusion-final-juiste-uitspraak-nederlandse-klanken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .conclusion-content-juiste-uitspraak-nederlandse-klanken {
    max-width: 100%;
  }
}

.disclaimer-section-juiste-uitspraak-nederlandse-klanken {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-juiste-uitspraak-nederlandse-klanken {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-juiste-uitspraak-nederlandse-klanken {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.disclaimer-text-juiste-uitspraak-nederlandse-klanken {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

.related-section-juiste-uitspraak-nederlandse-klanken {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-content-juiste-uitspraak-nederlandse-klanken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-juiste-uitspraak-nederlandse-klanken {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.5px;
}

.related-cards-juiste-uitspraak-nederlandse-klanken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-juiste-uitspraak-nederlandse-klanken {
  flex: 1 1 320px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 250ms ease-in-out;
}

.related-card-juiste-uitspraak-nederlandse-klanken:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.related-card-image-juiste-uitspraak-nederlandse-klanken {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #1e293b;
}

.related-card-image-juiste-uitspraak-nederlandse-klanken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-juiste-uitspraak-nederlandse-klanken {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-juiste-uitspraak-nederlandse-klanken {
  font-family: 'Merriweather', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.related-card-description-juiste-uitspraak-nederlandse-klanken {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-juiste-uitspraak-nederlandse-klanken {
  display: inline-flex;
  align-items: center;
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
  transition: color 250ms ease-in-out;
  font-size: 0.95rem;
}

.related-card-link-juiste-uitspraak-nederlandse-klanken:hover {
  color: #fcd34d;
}

@media (max-width: 768px) {
  .related-cards-juiste-uitspraak-nederlandse-klanken {
    flex-direction: column;
  }

  .related-card-juiste-uitspraak-nederlandse-klanken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

@media (max-width: 480px) {
  h1 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

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

.main-dagelijkse-conversatie-praktische-zinnen {
  width: 100%;
  overflow: hidden;
}

.hero-section-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--color-text-dark);
  overflow: hidden;
}

.hero-section-dagelijkse-conversatie-praktische-zinnen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.breadcrumbs-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-muted);
}

.breadcrumbs-dagelijkse-conversatie-praktische-zinnen a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-dagelijkse-conversatie-praktische-zinnen a:hover {
  color: var(--color-primary);
}

.breadcrumbs-dagelijkse-conversatie-praktische-zinnen span {
  color: var(--color-text-dark-muted);
}

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

.hero-text-dagelijkse-conversatie-praktische-zinnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.7;
  color: var(--color-text-dark-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-dagelijkse-conversatie-praktische-zinnen {
  display: inline-block;
}

.meta-divider-dagelijkse-conversatie-praktische-zinnen {
  color: var(--color-text-dark-muted);
}

.hero-image-dagelijkse-conversatie-praktische-zinnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-dagelijkse-conversatie-praktische-zinnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-xl);
}

@media (max-width: 1024px) {
  .hero-content-dagelijkse-conversatie-praktische-zinnen {
    flex-direction: column;
  }

  .hero-text-dagelijkse-conversatie-praktische-zinnen,
  .hero-image-dagelijkse-conversatie-praktische-zinnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--color-text-light);
  overflow: hidden;
}

.intro-section-dagelijkse-conversatie-praktische-zinnen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.intro-wrapper-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-dagelijkse-conversatie-praktische-zinnen {
  flex: 1 1 60%;
  max-width: 60%;
}

.intro-title-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-light-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlight-dagelijkse-conversatie-praktische-zinnen {
  flex: 1 1 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.highlight-box-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-quaternary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.highlight-number-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight-label-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
}

@media (max-width: 1024px) {
  .intro-wrapper-dagelijkse-conversatie-praktische-zinnen {
    flex-direction: column;
  }

  .intro-text-dagelijkse-conversatie-praktische-zinnen,
  .intro-highlight-dagelijkse-conversatie-praktische-zinnen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-highlight-dagelijkse-conversatie-praktische-zinnen {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .highlight-box-dagelijkse-conversatie-praktische-zinnen {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 150px;
  }
}

.content-section-one-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-quaternary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--color-text-light);
  overflow: hidden;
}

.content-section-one-dagelijkse-conversatie-praktische-zinnen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.content-wrapper-one-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-one-dagelijkse-conversatie-praktische-zinnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-one-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-light-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.content-list-one-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.list-item-one-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.list-label-one-dagelijkse-conversatie-praktische-zinnen {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.list-text-one-dagelijkse-conversatie-praktische-zinnen {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-style: italic;
}

.content-image-one-dagelijkse-conversatie-praktische-zinnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-dagelijkse-conversatie-praktische-zinnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
  .content-wrapper-one-dagelijkse-conversatie-praktische-zinnen {
    flex-direction: column;
  }

  .content-text-one-dagelijkse-conversatie-praktische-zinnen,
  .content-image-one-dagelijkse-conversatie-praktische-zinnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--color-text-light);
  overflow: hidden;
}

.content-section-two-dagelijkse-conversatie-praktische-zinnen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.content-wrapper-two-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-two-dagelijkse-conversatie-praktische-zinnen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-img-two-dagelijkse-conversatie-praktische-zinnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.content-text-two-dagelijkse-conversatie-praktische-zinnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-two-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-light-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.content-list-two-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.list-item-two-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-quaternary);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-md);
}

.list-label-two-dagelijkse-conversatie-praktische-zinnen {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.list-text-two-dagelijkse-conversatie-praktische-zinnen {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-style: italic;
}

@media (max-width: 1024px) {
  .content-wrapper-two-dagelijkse-conversatie-praktische-zinnen {
    flex-direction: column;
  }

  .content-image-two-dagelijkse-conversatie-praktische-zinnen,
  .content-text-two-dagelijkse-conversatie-praktische-zinnen {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.content-section-three-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-quaternary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--color-text-light);
  overflow: hidden;
}

.content-section-three-dagelijkse-conversatie-praktische-zinnen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.content-wrapper-three-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-three-dagelijkse-conversatie-praktische-zinnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-three-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-light-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.phrases-grid-three-dagelijkse-conversatie-praktische-zinnen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.phrase-card-three-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-secondary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
}

.phrase-title-three-dagelijkse-conversatie-praktische-zinnen {
  font-size: 0.95rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.phrase-text-three-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  font-style: italic;
}

.content-image-three-dagelijkse-conversatie-praktische-zinnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-three-dagelijkse-conversatie-praktische-zinnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
  .content-wrapper-three-dagelijkse-conversatie-praktische-zinnen {
    flex-direction: column;
  }

  .content-text-three-dagelijkse-conversatie-praktische-zinnen,
  .content-image-three-dagelijkse-conversatie-praktische-zinnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-four-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--color-text-light);
  overflow: hidden;
}

.content-section-four-dagelijkse-conversatie-praktische-zinnen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.content-wrapper-four-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-four-dagelijkse-conversatie-praktische-zinnen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-img-four-dagelijkse-conversatie-praktische-zinnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.content-text-four-dagelijkse-conversatie-praktische-zinnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-four-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-light-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.work-phrases-four-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.work-item-four-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-quaternary);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-md);
}

.work-label-four-dagelijkse-conversatie-praktische-zinnen {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.work-text-four-dagelijkse-conversatie-praktische-zinnen {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-style: italic;
}

@media (max-width: 1024px) {
  .content-wrapper-four-dagelijkse-conversatie-praktische-zinnen {
    flex-direction: column;
  }

  .content-image-four-dagelijkse-conversatie-praktische-zinnen,
  .content-text-four-dagelijkse-conversatie-praktische-zinnen {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.quote-section-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--color-text-dark);
  overflow: hidden;
}

.quote-section-dagelijkse-conversatie-praktische-zinnen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.featured-quote-dagelijkse-conversatie-praktische-zinnen {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid var(--color-primary);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  line-height: 1.8;
  font-style: italic;
  color: var(--color-text-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-author-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  font-style: normal;
}

.tips-section-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-quaternary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--color-text-light);
  overflow: hidden;
}

.tips-section-dagelijkse-conversatie-praktische-zinnen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.tips-header-dagelijkse-conversatie-praktische-zinnen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.tips-title-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-subtitle-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
}

.tips-grid-dagelijkse-conversatie-praktische-zinnen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tip-card-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-card-dagelijkse-conversatie-praktische-zinnen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tip-number-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
}

.tip-card-title-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
}

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

.conclusion-section-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--color-text-light);
  overflow: hidden;
}

.conclusion-section-dagelijkse-conversatie-praktische-zinnen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.conclusion-content-dagelijkse-conversatie-praktische-zinnen {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.9;
  color: var(--color-text-light-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-cta-dagelijkse-conversatie-praktische-zinnen {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-button-dagelijkse-conversatie-praktische-zinnen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  font-weight: var(--font-weight-semibold);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.cta-button-dagelijkse-conversatie-praktische-zinnen:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.related-section-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-quaternary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--color-text-light);
  overflow: hidden;
}

.related-section-dagelijkse-conversatie-praktische-zinnen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.related-header-dagelijkse-conversatie-praktische-zinnen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
}

.related-cards-dagelijkse-conversatie-praktische-zinnen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-dagelijkse-conversatie-praktische-zinnen {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.related-card-dagelijkse-conversatie-praktische-zinnen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-dagelijkse-conversatie-praktische-zinnen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-dagelijkse-conversatie-praktische-zinnen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-dagelijkse-conversatie-praktische-zinnen:hover .related-img-dagelijkse-conversatie-praktische-zinnen {
  transform: scale(1.05);
}

.related-card-content-dagelijkse-conversatie-praktische-zinnen {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: var(--color-text-light-secondary);
}

.disclaimer-section-dagelijkse-conversatie-praktische-zinnen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  color: var(--color-text-light);
  overflow: hidden;
}

.disclaimer-section-dagelijkse-conversatie-praktische-zinnen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

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

.disclaimer-title-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-dagelijkse-conversatie-praktische-zinnen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
  color: var(--color-text-light-secondary);
}

@media (max-width: 768px) {
  .hero-section-dagelijkse-conversatie-praktische-zinnen {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .breadcrumbs-dagelijkse-conversatie-praktische-zinnen {
    flex-direction: column;
    gap: 0.25rem;
  }

  .breadcrumbs-dagelijkse-conversatie-praktische-zinnen span {
    display: none;
  }

  .intro-highlight-dagelijkse-conversatie-praktische-zinnen {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .highlight-box-dagelijkse-conversatie-praktische-zinnen {
    flex: 1 1 calc(33.333% - 0.75rem);
    min-width: 120px;
  }

  .tips-grid-dagelijkse-conversatie-praktische-zinnen {
    grid-template-columns: 1fr;
  }

  .related-cards-dagelijkse-conversatie-praktische-zinnen {
    grid-template-columns: 1fr;
  }

  .phrase-card-three-dagelijkse-conversatie-praktische-zinnen {
    padding: 1rem;
  }

  .tip-card-dagelijkse-conversatie-praktische-zinnen {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section-dagelijkse-conversatie-praktische-zinnen {
    padding: 2rem 0;
  }

  .hero-title-dagelijkse-conversatie-praktische-zinnen {
    font-size: 1.5rem;
  }

  .content-title-one-dagelijkse-conversatie-praktische-zinnen,
  .content-title-two-dagelijkse-conversatie-praktische-zinnen,
  .content-title-three-dagelijkse-conversatie-praktische-zinnen,
  .content-title-four-dagelijkse-conversatie-praktische-zinnen,
  .conclusion-title-dagelijkse-conversatie-praktische-zinnen,
  .tips-title-dagelijkse-conversatie-praktische-zinnen,
  .related-title-dagelijkse-conversatie-praktische-zinnen {
    font-size: 1.25rem;
  }

  .cta-button-dagelijkse-conversatie-praktische-zinnen {
    width: 100%;
  }

  .highlight-box-dagelijkse-conversatie-praktische-zinnen {
    flex: 1 1 100%;
  }
}

.main-luisteren-nederlands-begrijpen {
font-family: var(--font-primary);
color: var(--color-text-light);
background: var(--color-bg-secondary);
overflow-x: hidden;
}

.hero-section-luisteren-nederlands-begrijpen {
background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
color: var(--color-text-dark);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.breadcrumbs-luisteren-nederlands-begrijpen {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.breadcrumbs-luisteren-nederlands-begrijpen a {
color: var(--color-primary-light);
text-decoration: none;
transition: color var(--transition-base);
}

.breadcrumbs-luisteren-nederlands-begrijpen a:hover {
color: var(--color-primary);
text-decoration: underline;
}

.breadcrumbs-luisteren-nederlands-begrijpen span {
color: var(--color-text-dark-muted);
}

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

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

.hero-title-luisteren-nederlands-begrijpen {
color: var(--color-text-dark);
font-size: clamp(2rem, 6vw, 3.5rem);
margin-bottom: var(--space-md);
line-height: 1.1;
letter-spacing: -0.5px;
}

.hero-subtitle-luisteren-nederlands-begrijpen {
color: var(--color-text-dark-secondary);
font-size: clamp(1rem, 2vw, 1.25rem);
margin-bottom: var(--space-lg);
line-height: 1.7;
}

.hero-meta-luisteren-nederlands-begrijpen {
display: flex;
align-items: center;
gap: 0.75rem;
font-size: 0.9rem;
color: var(--color-text-dark-muted);
flex-wrap: wrap;
}

.meta-item-luisteren-nederlands-begrijpen {
font-weight: 500;
}

.meta-divider-luisteren-nederlands-begrijpen {
color: var(--color-text-dark-muted);
opacity: 0.5;
}

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

.hero-img-luisteren-nederlands-begrijpen {
width: 100%;
height: auto;
max-height: 450px;
object-fit: cover;
border-radius: var(--radius-xl);
box-shadow: var(--shadow-dark);
display: block;
}

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

.hero-text-luisteren-nederlands-begrijpen,
.hero-image-luisteren-nederlands-begrijpen {
flex: 1 1 100%;
}

.hero-title-luisteren-nederlands-begrijpen {
font-size: 1.75rem;
}

.hero-subtitle-luisteren-nederlands-begrijpen {
font-size: 1rem;
}
}

.intro-section-luisteren-nederlands-begrijpen {
background: var(--color-bg-secondary);
color: var(--color-text-light);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.intro-text-luisteren-nederlands-begrijpen {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: clamp(1.75rem, 5vw, 2.5rem);
margin-bottom: var(--space-lg);
line-height: 1.2;
}

.intro-paragraph-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: clamp(0.95rem, 1vw, 1.1rem);
margin-bottom: var(--space-md);
line-height: 1.8;
}

.intro-image-luisteren-nederlands-begrijpen {
flex: 1 1 50%;
max-width: 50%;
}

.intro-image-luisteren-nederlands-begrijpen img {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: var(--radius-xl);
box-shadow: var(--shadow-lg);
display: block;
}

@media (max-width: 768px) {
.intro-content-luisteren-nederlands-begrijpen {
flex-direction: column;
}

.intro-text-luisteren-nederlands-begrijpen,
.intro-image-luisteren-nederlands-begrijpen {
flex: 1 1 100%;
max-width: 100%;
}
}

.listening-methods-section-luisteren-nederlands-begrijpen {
background: var(--color-bg-quaternary);
color: var(--color-text-light);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.listening-methods-content-luisteren-nederlands-begrijpen {
display: flex;
flex-direction: row;
gap: clamp(2rem, 5vw, 4rem);
align-items: flex-start;
}

.listening-methods-text-luisteren-nederlands-begrijpen {
flex: 1 1 50%;
max-width: 50%;
}

.listening-methods-title-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: clamp(1.75rem, 5vw, 2.5rem);
margin-bottom: var(--space-lg);
line-height: 1.2;
}

.listening-methods-paragraph-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: clamp(0.95rem, 1vw, 1.1rem);
margin-bottom: var(--space-lg);
line-height: 1.8;
}

.methods-list-luisteren-nederlands-begrijpen {
display: flex;
flex-direction: column;
gap: var(--space-lg);
}

.method-item-luisteren-nederlands-begrijpen {
background: var(--color-bg-secondary);
padding: var(--space-lg);
border-radius: var(--radius-lg);
border-left: 4px solid var(--color-primary);
box-shadow: var(--shadow-md);
transition: all var(--transition-base);
}

.method-item-luisteren-nederlands-begrijpen:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}

.method-name-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: 1.1rem;
font-weight: var(--font-weight-semibold);
margin-bottom: var(--space-sm);
}

.method-text-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
}

.listening-methods-image-luisteren-nederlands-begrijpen {
flex: 1 1 50%;
max-width: 50%;
}

.listening-methods-image-luisteren-nederlands-begrijpen img {
width: 100%;
height: auto;
max-height: 450px;
object-fit: cover;
border-radius: var(--radius-xl);
box-shadow: var(--shadow-lg);
display: block;
}

@media (max-width: 768px) {
.listening-methods-content-luisteren-nederlands-begrijpen {
flex-direction: column;
}

.listening-methods-text-luisteren-nederlands-begrijpen,
.listening-methods-image-luisteren-nederlands-begrijpen {
flex: 1 1 100%;
max-width: 100%;
}
}

.active-listening-section-luisteren-nederlands-begrijpen {
background: var(--color-bg-secondary);
color: var(--color-text-light);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.active-listening-image-luisteren-nederlands-begrijpen {
flex: 1 1 50%;
max-width: 50%;
}

.active-listening-image-luisteren-nederlands-begrijpen img {
width: 100%;
height: auto;
max-height: 450px;
object-fit: cover;
border-radius: var(--radius-xl);
box-shadow: var(--shadow-lg);
display: block;
}

.active-listening-text-luisteren-nederlands-begrijpen {
flex: 1 1 50%;
max-width: 50%;
}

.active-listening-title-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: clamp(1.75rem, 5vw, 2.5rem);
margin-bottom: var(--space-lg);
line-height: 1.2;
}

.active-listening-paragraph-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: clamp(0.95rem, 1vw, 1.1rem);
margin-bottom: var(--space-md);
line-height: 1.8;
}

.active-listening-tips-luisteren-nederlands-begrijpen {
list-style: none;
margin-top: var(--space-lg);
}

.tip-item-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
padding-left: var(--space-lg);
margin-bottom: var(--space-md);
position: relative;
font-size: 0.95rem;
line-height: 1.7;
}

.tip-item-luisteren-nederlands-begrijpen::before {
content: '';
position: absolute;
left: 0;
color: var(--color-primary);
font-weight: bold;
font-size: 1.25rem;
}

@media (max-width: 768px) {
.active-listening-content-luisteren-nederlands-begrijpen {
flex-direction: column;
}

.active-listening-image-luisteren-nederlands-begrijpen,
.active-listening-text-luisteren-nederlands-begrijpen {
flex: 1 1 100%;
max-width: 100%;
}
}

.resources-section-luisteren-nederlands-begrijpen {
background: var(--color-bg-quaternary);
color: var(--color-text-light);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.resources-title-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: clamp(1.75rem, 5vw, 2.5rem);
text-align: center;
margin-bottom: var(--space-md);
line-height: 1.2;
}

.resources-intro-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: clamp(0.95rem, 1vw, 1.1rem);
text-align: center;
margin-bottom: var(--space-lg);
line-height: 1.8;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.resources-cards-luisteren-nederlands-begrijpen {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2.5rem);
justify-content: center;
}

.resource-card-luisteren-nederlands-begrijpen {
flex: 1 1 calc(50% - var(--space-md));
min-width: 280px;
max-width: 380px;
background: var(--color-bg-secondary);
padding: var(--space-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
transition: all var(--transition-base);
border-top: 4px solid var(--color-secondary);
}

.resource-card-luisteren-nederlands-begrijpen:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lg);
}

.resource-card-title-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: 1.1rem;
margin-bottom: var(--space-sm);
font-weight: var(--font-weight-semibold);
}

.resource-card-text-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
}

@media (max-width: 768px) {
.resource-card-luisteren-nederlands-begrijpen {
flex: 1 1 100%;
max-width: 100%;
}
}

.progress-section-luisteren-nederlands-begrijpen {
background: var(--color-bg-secondary);
color: var(--color-text-light);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.progress-text-luisteren-nederlands-begrijpen {
flex: 1 1 50%;
max-width: 50%;
}

.progress-title-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: clamp(1.75rem, 5vw, 2.5rem);
margin-bottom: var(--space-lg);
line-height: 1.2;
}

.progress-intro-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: clamp(0.95rem, 1vw, 1.1rem);
margin-bottom: var(--space-lg);
line-height: 1.8;
}

.timeline-luisteren-nederlands-begrijpen {
display: flex;
flex-direction: column;
gap: var(--space-lg);
}

.timeline-item-luisteren-nederlands-begrijpen {
background: var(--color-bg-quaternary);
padding: var(--space-lg);
border-radius: var(--radius-lg);
border-left: 4px solid var(--color-primary);
}

.timeline-period-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: 1rem;
font-weight: var(--font-weight-semibold);
margin-bottom: var(--space-sm);
}

.timeline-description-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
}

.progress-image-luisteren-nederlands-begrijpen {
flex: 1 1 50%;
max-width: 50%;
}

.progress-image-luisteren-nederlands-begrijpen img {
width: 100%;
height: auto;
max-height: 450px;
object-fit: cover;
border-radius: var(--radius-xl);
box-shadow: var(--shadow-lg);
display: block;
}

@media (max-width: 768px) {
.progress-content-luisteren-nederlands-begrijpen {
flex-direction: column;
}

.progress-text-luisteren-nederlands-begrijpen,
.progress-image-luisteren-nederlands-begrijpen {
flex: 1 1 100%;
max-width: 100%;
}
}

.key-takeaways-section-luisteren-nederlands-begrijpen {
background: var(--color-bg-quaternary);
color: var(--color-text-light);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.key-takeaways-content-luisteren-nederlands-begrijpen {
display: flex;
flex-direction: column;
gap: clamp(2rem, 4vw, 3rem);
}

.key-takeaways-title-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: clamp(1.75rem, 5vw, 2.5rem);
text-align: center;
margin-bottom: var(--space-md);
line-height: 1.2;
}

.key-takeaways-intro-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: clamp(0.95rem, 1vw, 1.1rem);
text-align: center;
margin-bottom: var(--space-lg);
line-height: 1.8;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.takeaways-grid-luisteren-nederlands-begrijpen {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2rem);
justify-content: center;
}

.takeaway-card-luisteren-nederlands-begrijpen {
flex: 1 1 calc(50% - var(--space-md));
min-width: 250px;
max-width: 320px;
background: var(--color-bg-secondary);
padding: var(--space-lg);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-md);
transition: all var(--transition-base);
text-align: center;
border-top: 4px solid var(--color-secondary);
}

.takeaway-card-luisteren-nederlands-begrijpen:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lg);
}

.takeaway-number-luisteren-nederlands-begrijpen {
color: var(--color-primary);
font-size: clamp(2rem, 4vw, 2.5rem);
font-weight: 800;
margin-bottom: var(--space-sm);
line-height: 1;
}

.takeaway-title-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: 1.1rem;
margin-bottom: var(--space-sm);
font-weight: var(--font-weight-semibold);
}

.takeaway-text-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
}

@media (max-width: 768px) {
.takeaway-card-luisteren-nederlands-begrijpen {
flex: 1 1 100%;
max-width: 100%;
}

.takeaways-grid-luisteren-nederlands-begrijpen {
gap: var(--space-lg);
}
}

.final-tips-section-luisteren-nederlands-begrijpen {
background: var(--color-bg-secondary);
color: var(--color-text-light);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

.final-tips-text-luisteren-nederlands-begrijpen {
flex: 1 1 50%;
max-width: 50%;
}

.final-tips-title-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: clamp(1.75rem, 5vw, 2.5rem);
margin-bottom: var(--space-lg);
line-height: 1.2;
}

.final-tips-intro-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: clamp(0.95rem, 1vw, 1.1rem);
margin-bottom: var(--space-lg);
line-height: 1.8;
}

.final-tips-list-luisteren-nederlands-begrijpen {
list-style: decimal;
padding-left: var(--space-xl);
margin-bottom: var(--space-lg);
}

.final-tips-item-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
margin-bottom: var(--space-md);
font-size: 0.95rem;
line-height: 1.8;
}

.final-tips-closing-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: clamp(0.95rem, 1vw, 1.1rem);
line-height: 1.8;
font-style: italic;
}

.final-tips-image-luisteren-nederlands-begrijpen {
flex: 1 1 50%;
max-width: 50%;
}

.final-tips-image-luisteren-nederlands-begrijpen img {
width: 100%;
height: auto;
max-height: 450px;
object-fit: cover;
border-radius: var(--radius-xl);
box-shadow: var(--shadow-lg);
display: block;
}

@media (max-width: 768px) {
.final-tips-content-luisteren-nederlands-begrijpen {
flex-direction: column;
}

.final-tips-text-luisteren-nederlands-begrijpen,
.final-tips-image-luisteren-nederlands-begrijpen {
flex: 1 1 100%;
max-width: 100%;
}

.final-tips-list-luisteren-nederlands-begrijpen {
padding-left: var(--space-lg);
}
}

.disclaimer-section-luisteren-nederlands-begrijpen {
background: var(--color-bg-quaternary);
color: var(--color-text-light);
padding: clamp(2rem, 6vw, 4rem) 0;
overflow: hidden;
}

.disclaimer-content-luisteren-nederlands-begrijpen {
background: var(--color-bg-secondary);
padding: var(--space-lg);
border-radius: var(--radius-lg);
border-left: 4px solid var(--color-secondary);
max-width: 800px;
margin: 0 auto;
box-shadow: var(--shadow-md);
}

.disclaimer-title-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: 1.25rem;
font-weight: var(--font-weight-semibold);
margin-bottom: var(--space-md);
}

.disclaimer-text-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: 0.95rem;
line-height: 1.8;
margin: 0;
}

.related-section-luisteren-nederlands-begrijpen {
background: var(--color-bg-secondary);
color: var(--color-text-light);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.related-content-luisteren-nederlands-begrijpen {
display: flex;
flex-direction: column;
gap: clamp(2rem, 4vw, 3rem);
}

.related-title-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: clamp(1.75rem, 5vw, 2.5rem);
text-align: center;
margin-bottom: var(--space-lg);
line-height: 1.2;
}

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

.related-card-luisteren-nederlands-begrijpen {
flex: 1 1 calc(33.333% - var(--space-lg));
min-width: 280px;
max-width: 380px;
background: var(--color-bg-quaternary);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-md);
transition: all var(--transition-base);
text-decoration: none;
color: inherit;
display: flex;
flex-direction: column;
}

.related-card-luisteren-nederlands-begrijpen:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}

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

.related-card-title-luisteren-nederlands-begrijpen {
color: var(--color-text-light);
font-size: 1.1rem;
padding: var(--space-md) var(--space-md) var(--space-sm) var(--space-md);
margin: 0;
font-weight: var(--font-weight-semibold);
line-height: 1.3;
}

.related-card-text-luisteren-nederlands-begrijpen {
color: var(--color-text-light-secondary);
font-size: 0.9rem;
padding: 0 var(--space-md) var(--space-md) var(--space-md);
margin: 0;
line-height: 1.6;
flex-grow: 1;
}

@media (max-width: 1024px) {
.related-card-luisteren-nederlands-begrijpen {
flex: 1 1 calc(50% - var(--space-md));
}
}

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

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

h1, h2, h3, h4, h5, h6 {
word-wrap: break-word;
overflow-wrap: break-word;
}

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

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

a {
transition: color var(--transition-base);
}

a:hover {
text-decoration: underline;
}

.main-werkwoorden-conjugatie-nederlands {
  width: 100%;
  background: var(--color-bg-secondary);
  color: var(--color-text-light);
}

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

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

.breadcrumbs-werkwoorden-conjugatie-nederlands {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-werkwoorden-conjugatie-nederlands a {
  color: var(--color-primary-light);
  transition: color var(--transition-base);
}

.breadcrumbs-werkwoorden-conjugatie-nederlands a:hover {
  color: var(--color-primary);
}

.breadcrumbs-werkwoorden-conjugatie-nederlands span {
  color: var(--color-text-dark-muted);
}

.breadcrumbs-werkwoorden-conjugatie-nederlands > span:last-child {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-semibold);
}

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

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

.hero-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-dark);
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  font-weight: var(--font-weight-bold);
}

.hero-subtitle-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero-meta-werkwoorden-conjugatie-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  color: var(--color-text-dark-muted);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
}

.meta-item-werkwoorden-conjugatie-nederlands {
  display: inline-block;
}

.meta-separator-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-dark-muted);
}

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

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

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

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

  .hero-title-werkwoorden-conjugatie-nederlands {
    font-size: 1.75rem;
  }

  .hero-subtitle-werkwoorden-conjugatie-nederlands {
    font-size: 1rem;
  }

  .hero-image-werkwoorden-conjugatie-nederlands {
    max-height: 300px;
  }
}

.intro-section-werkwoorden-conjugatie-nederlands {
  background: var(--color-bg-secondary);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.intro-text-wrapper-werkwoorden-conjugatie-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  font-weight: var(--font-weight-bold);
}

.intro-text-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.intro-image-wrapper-werkwoorden-conjugatie-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-werkwoorden-conjugatie-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .intro-content-werkwoorden-conjugatie-nederlands {
    flex-direction: column;
  }

  .intro-text-wrapper-werkwoorden-conjugatie-nederlands,
  .intro-image-wrapper-werkwoorden-conjugatie-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-werkwoorden-conjugatie-nederlands {
    max-height: 300px;
  }
}

.patterns-section-werkwoorden-conjugatie-nederlands {
  background: var(--color-bg-quaternary);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.patterns-content-werkwoorden-conjugatie-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.section-header-werkwoorden-conjugatie-nederlands {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-tag-werkwoorden-conjugatie-nederlands {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-primary-hover);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.patterns-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  text-align: center;
  font-weight: var(--font-weight-bold);
}

.patterns-subtitle-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.patterns-grid-werkwoorden-conjugatie-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.pattern-card-werkwoorden-conjugatie-nederlands {
  flex: 1 1 280px;
  max-width: 340px;
  background: var(--color-bg-secondary);
  color: var(--color-text-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.pattern-number-werkwoorden-conjugatie-nederlands {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-primary);
  line-height: 1;
}

.pattern-card-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light);
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
}

.pattern-card-text-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .pattern-card-werkwoorden-conjugatie-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.regular-verbs-werkwoorden-conjugatie-nederlands {
  background: var(--color-bg-secondary);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.regular-verbs-wrapper-werkwoorden-conjugatie-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.regular-verbs-text-werkwoorden-conjugatie-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.regular-verbs-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.regular-verbs-text-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.highlight-box-werkwoorden-conjugatie-nederlands {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.highlight-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light);
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
}

.highlight-text-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.regular-verbs-image-werkwoorden-conjugatie-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.regular-verbs-img-werkwoorden-conjugatie-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .regular-verbs-wrapper-werkwoorden-conjugatie-nederlands {
    flex-direction: column;
  }

  .regular-verbs-text-werkwoorden-conjugatie-nederlands,
  .regular-verbs-image-werkwoorden-conjugatie-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .regular-verbs-img-werkwoorden-conjugatie-nederlands {
    max-height: 300px;
  }
}

.irregular-verbs-werkwoorden-conjugatie-nederlands {
  background: var(--color-bg-tertiary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.irregular-verbs-content-werkwoorden-conjugatie-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.irregular-verbs-text-werkwoorden-conjugatie-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.irregular-verbs-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-dark);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.irregular-verbs-werkwoorden-conjugatie-nederlands > p {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.irregular-list-werkwoorden-conjugatie-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.irregular-item-werkwoorden-conjugatie-nederlands {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.irregular-verb-werkwoorden-conjugatie-nederlands {
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  font-size: 1.125rem;
}

.irregular-desc-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.irregular-note-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
}

.irregular-image-werkwoorden-conjugatie-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.irregular-img-werkwoorden-conjugatie-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .irregular-verbs-content-werkwoorden-conjugatie-nederlands {
    flex-direction: column;
  }

  .irregular-verbs-text-werkwoorden-conjugatie-nederlands,
  .irregular-image-werkwoorden-conjugatie-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .irregular-img-werkwoorden-conjugatie-nederlands {
    max-height: 300px;
  }
}

.practice-section-werkwoorden-conjugatie-nederlands {
  background: var(--color-bg-secondary);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practice-content-werkwoorden-conjugatie-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.practice-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.practice-steps-werkwoorden-conjugatie-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-werkwoorden-conjugatie-nederlands {
  flex: 1 1 280px;
  max-width: 340px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  color: var(--color-text-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.2);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.step-card-werkwoorden-conjugatie-nederlands:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.step-number-werkwoorden-conjugatie-nederlands {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.step-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
}

.step-text-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .step-card-werkwoorden-conjugatie-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-mistakes-werkwoorden-conjugatie-nederlands {
  background: var(--color-bg-quaternary);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.common-mistakes-wrapper-werkwoorden-conjugatie-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.common-mistakes-text-werkwoorden-conjugatie-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.common-mistakes-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.common-mistakes-intro-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.mistake-item-werkwoorden-conjugatie-nederlands {
  background: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.mistake-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light);
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
}

.mistake-text-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.common-mistakes-image-werkwoorden-conjugatie-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.common-mistakes-img-werkwoorden-conjugatie-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .common-mistakes-wrapper-werkwoorden-conjugatie-nederlands {
    flex-direction: column;
  }

  .common-mistakes-text-werkwoorden-conjugatie-nederlands,
  .common-mistakes-image-werkwoorden-conjugatie-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .common-mistakes-img-werkwoorden-conjugatie-nederlands {
    max-height: 300px;
  }
}

.resources-section-werkwoorden-conjugatie-nederlands {
  background: var(--color-bg-primary);
  color: var(--color-text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.resources-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-dark);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.resources-intro-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.resources-grid-werkwoorden-conjugatie-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.resource-item-werkwoorden-conjugatie-nederlands {
  flex: 1 1 280px;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-dark);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.resource-item-werkwoorden-conjugatie-nederlands:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.resource-item-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
}

.resource-item-text-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .resource-item-werkwoorden-conjugatie-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-werkwoorden-conjugatie-nederlands {
  background: var(--color-bg-secondary);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.conclusion-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.2;
}

.conclusion-text-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.cta-box-werkwoorden-conjugatie-nederlands {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.cta-title-werkwoorden-conjugatie-nederlands {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-bold);
}

.cta-text-werkwoorden-conjugatie-nederlands {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.cta-button-werkwoorden-conjugatie-nederlands {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transition: all var(--transition-base);
}

.cta-button-werkwoorden-conjugatie-nederlands:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .cta-button-werkwoorden-conjugatie-nederlands {
    width: 100%;
  }
}

.disclaimer-section-werkwoorden-conjugatie-nederlands {
  background: var(--color-bg-quaternary);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-werkwoorden-conjugatie-nederlands {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-md);
}

.disclaimer-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-bold);
}

.disclaimer-text-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.related-posts-section-werkwoorden-conjugatie-nederlands {
  background: var(--color-bg-secondary);
  color: var(--color-text-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-posts-section-werkwoorden-conjugatie-nederlands .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.related-posts-content-werkwoorden-conjugatie-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-posts-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.related-posts-subtitle-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.related-posts-grid-werkwoorden-conjugatie-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-post-card-werkwoorden-conjugatie-nederlands {
  flex: 1 1 320px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  color: var(--color-text-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.related-post-card-werkwoorden-conjugatie-nederlands:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-post-image-werkwoorden-conjugatie-nederlands {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-quaternary);
}

.related-post-img-werkwoorden-conjugatie-nederlands {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.related-post-card-werkwoorden-conjugatie-nederlands:hover .related-post-img-werkwoorden-conjugatie-nederlands {
  transform: scale(1.05);
}

.related-post-body-werkwoorden-conjugatie-nederlands {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-grow: 1;
}

.related-post-title-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light);
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
}

.related-post-desc-werkwoorden-conjugatie-nederlands {
  color: var(--color-text-light-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-post-link-werkwoorden-conjugatie-nederlands {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  font-size: 0.95rem;
  transition: color var(--transition-base);
  display: inline-block;
}

.related-post-link-werkwoorden-conjugatie-nederlands:hover {
  color: var(--color-primary-hover);
}

@media (max-width: 768px) {
  .related-post-card-werkwoorden-conjugatie-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-post-image-werkwoorden-conjugatie-nederlands {
    height: 180px;
  }
}

.fluency-journey-about {
  font-family: var(--font-primary);
  color: var(--color-text-light);
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.fluency-journey-about h1,
.fluency-journey-about h2,
.fluency-journey-about h3,
.fluency-journey-about h4 {
  font-family: var(--font-heading);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fluency-journey-about p,
.fluency-journey-about span,
.fluency-journey-about li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-text-block-about {
  text-align: center;
  max-width: 800px;
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  width: 100%;
  margin-top: clamp(1.5rem, 3vw, 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: var(--font-weight-bold);
  color: var(--color-secondary);
  display: block;
}

.stat-label-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-muted);
  display: block;
}

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

.foundation-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.section-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.section-tag-about {
  display: inline-block;
  padding: clamp(0.25rem, 0.5vw, 0.375rem) clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: var(--font-weight-semibold);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.foundation-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-light);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.foundation-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.foundation-description-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.foundation-text-block-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.methodology-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.methodology-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.methodology-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.process-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: clamp(2.5rem, 5vw, 4rem);
}

.step-content-about {
  flex: 1;
}

.step-title-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-dark);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

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

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

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.approach-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.approach-title-about {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-light);
  font-weight: var(--font-weight-bold);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.approach-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

.card-icon-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-primary);
  display: block;
  height: clamp(2rem, 3vw, 2.5rem);
}

.card-title-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-light);
  font-weight: var(--font-weight-bold);
}

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

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

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

.featured-quote-about {
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid var(--color-secondary);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  max-width: 700px;
  text-align: center;
}

.quote-text-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  display: block;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  display: block;
  font-style: normal;
  font-weight: var(--font-weight-semibold);
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-heading-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-light);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.25rem;
}

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

.story-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

.methodology-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .process-step-about {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-number-about {
    font-size: clamp(1.5rem, 3vw, 2rem);
    min-width: auto;
  }

  .feature-card-about {
    flex: 1 1 100%;
  }
}

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

  .foundation-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .methodology-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .approach-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .insight-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .foundation-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .methodology-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .approach-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .insight-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

.faq-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-item {
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid rgba(248, 250, 252, 0.08);
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(248, 250, 252, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: var(--space-md);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question-text {
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-left: var(--space-sm);
  color: var(--color-primary);
  transition: transform var(--transition-fast);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  background-color: rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
}

.faq-item.active .faq-answer p {
  padding: var(--space-md);
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .faq-question {
    padding: var(--space-lg);
  }

  .faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }

  .faq-item.active .faq-answer p {
    padding: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.faq-cta {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-dark-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.faq-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

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

.faq-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.services-page {
  width: 100%;
  overflow: hidden;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.2;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: 1.4;
  font-weight: var(--font-weight-regular);
}

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

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-2xl) var(--space-lg);
  }

  .services-hero-container {
    flex-direction: row;
    align-items: center;
    gap: var(--space-2xl);
  }

  .services-hero-content {
    flex: 1;
  }

  .services-hero-image {
    flex: 1;
    max-height: 400px;
  }
}

.services-cards-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-xl) var(--space-md);
  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-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.services-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-dutch));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-text-dark);
  stroke-width: 2.5;
}

.services-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.3;
}

.services-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-secondary);
  margin: 0;
  line-height: 1.6;
  font-weight: var(--font-weight-regular);
}

.services-card-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.services-card-detail-item {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.services-card-detail-item::before {
  content: "";
  font-weight: var(--font-weight-bold);
}

@media (min-width: 768px) {
  .services-cards-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

.services-approach {
  background-color: var(--color-bg-quaternary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.services-approach-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.services-approach-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin: 0;
  text-align: center;
  line-height: 1.2;
}

.services-approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.services-approach-item {
  background-color: var(--color-bg-card-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-approach-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

.services-approach-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.3;
}

.services-approach-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-secondary);
  margin: 0;
  line-height: 1.6;
  font-weight: var(--font-weight-regular);
}

.services-approach-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (min-width: 768px) {
  .services-approach {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-approach-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .services-approach-image {
    max-height: 400px;
  }
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.services-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.services-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.2;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: 1.6;
  font-weight: var(--font-weight-regular);
  max-width: 600px;
}

.services-cta-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: var(--font-weight-semibold);
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  max-width: fit-content;
  margin: 0 auto;
}

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

.services-cta-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-cta-container {
    flex-direction: row;
    gap: var(--space-2xl);
    text-align: left;
  }

  .services-cta-content {
    flex: 1;
    text-align: left;
  }

  .services-cta-button {
    margin: 0;
  }

  .services-cta-image {
    flex: 1;
    max-height: 400px;
  }
}

@media (min-width: 1024px) {
  .services-cta-container {
    gap: var(--space-3xl);
  }
}

.docs-center {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-light);
  font-family: var(--font-primary);
}

.docs-center .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.docs-center .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.docs-center h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.docs-center .updated-date {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-xl);
  font-weight: var(--font-weight-medium);
}

.docs-center h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.docs-center p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.docs-center ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-md);
}

.docs-center li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.docs-center li:before {
  content: "";
  position: absolute;
  left: var(--space-md);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

.docs-center .section {
  margin-bottom: var(--space-2xl);
}

.docs-center .contact-section {
  background-color: var(--color-bg-quaternary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

.docs-center .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-light);
}

.docs-center .contact-section p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-light-secondary);
}

.docs-center .contact-section strong {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-light);
}

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

  .docs-center .content {
    padding: var(--space-3xl) 0;
  }

  .docs-center h1 {
    margin-bottom: var(--space-lg);
  }

  .docs-center .contact-section {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .docs-center .container {
    padding: 0 var(--space-lg);
  }

  .docs-center .content {
    padding: var(--space-3xl) 0;
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #1e293b;
  --color-bg-quaternary: #f8fafc;
  --color-text-dark: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-light: #0f172a;
  --color-primary: #f59e0b;
  --color-primary-hover: #d97706;
  --color-secondary: #06b6d4;
  --color-accent-dutch: #ea580c;
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --radius-lg: 12px;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --transition-base: 250ms ease-in-out;
}

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

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark);
}

.thank-you-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-md) var(--space-sm);
}

.thank-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  display: flex;
  justify-content: center;
}

.content {
  width: 100%;
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  animation: fadeInUp 0.6s ease-out;
}

.thank-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  animation: scaleIn 0.5s ease-out 0.2s both;
}

.thank-icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  stroke-width: 1.5;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  line-height: 1.2;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  line-height: 1.6;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.message {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn-return {
  display: inline-block;
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all var(--transition-base);
  animation: fadeInUp 0.6s ease-out 0.4s both;
  box-shadow: var(--shadow-lg);
}

.btn-return:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 20px rgba(245, 158, 11, 0.2);
}

.btn-return:active {
  transform: translateY(0);
  box-shadow: var(--shadow-lg);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-2xl) 0;
  }

  .container {
    padding: 0 var(--space-lg);
  }

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

  .thank-icon {
    width: 100px;
    height: 100px;
  }

  .thank-icon svg {
    width: 56px;
    height: 56px;
  }
}

@media (min-width: 768px) {
  .thank-you-page {
    padding: var(--space-xl) var(--space-md);
  }

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

  .message {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }

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

  .thank-icon {
    width: 120px;
    height: 120px;
  }

  .thank-icon svg {
    width: 64px;
    height: 64px;
  }
}

@media (min-width: 1440px) {
  .thank-you-page {
    padding: var(--space-3xl) var(--space-xl);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark);
  overflow-x: hidden;
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

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

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

.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  position: relative;
  z-index: 2;
  letter-spacing: -0.05em;
  animation: float 3s ease-in-out infinite;
}

.error-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--color-accent-dutch) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

.error-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: 0 var(--space-md);
}

.error-text h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  line-height: 1.2;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  font-weight: var(--font-weight-medium);
  margin: 0;
}

.error-message {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.8;
  margin: 0;
}

.error-suggestions {
  background-color: var(--color-bg-card-dark);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-align: left;
}

.suggestions-label {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark);
  font-weight: var(--font-weight-semibold);
  margin: 0 0 var(--space-sm) 0;
}

.suggestions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestions-list li {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  padding-left: var(--space-md);
  position: relative;
}

.suggestions-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  font-family: var(--font-primary);
  text-align: center;
}

.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 float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.1;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

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

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

  .error-decoration {
    width: 300px;
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
    min-height: 100vh;
  }

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

  .error-decoration {
    width: 400px;
    height: 400px;
  }

  .suggestions-list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .suggestions-list li {
    flex: 0 1 auto;
  }
}

.contact-write-to-us {
  width: 100%;
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
}

.contact-write-to-us-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-write-to-us-hero-content {
  padding: 0 var(--space-sm);
}

.contact-write-to-us-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.contact-write-to-us-hero-subtitle {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: 1.7;
  max-width: 600px;
}

.contact-write-to-us-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-write-to-us-main-content {
  padding: 0 var(--space-sm);
}

.contact-write-to-us-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

.contact-write-to-us-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-write-to-us-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-write-to-us-form-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.3;
}

.contact-write-to-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-write-to-us-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-write-to-us-label {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-dark-secondary);
  display: block;
}

.contact-write-to-us-input,
.contact-write-to-us-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
  transition: border-color var(--transition-base), background-color var(--transition-base);
}

.contact-write-to-us-input::placeholder,
.contact-write-to-us-textarea::placeholder {
  color: var(--color-text-dark-muted);
}

.contact-write-to-us-input:focus,
.contact-write-to-us-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: rgba(245, 158, 11, 0.05);
}

.contact-write-to-us-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-write-to-us-form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
}

.contact-write-to-us-form-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-write-to-us-consent-label {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  cursor: pointer;
}

.contact-write-to-us-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  font-weight: var(--font-weight-medium);
}

.contact-write-to-us-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-write-to-us-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base);
  margin-top: var(--space-sm);
}

.contact-write-to-us-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

.contact-write-to-us-info-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.3;
}

.contact-write-to-us-info-block {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding var(--transition-base);
}

.contact-write-to-us-info-block:last-of-type {
  border-bottom: none;
}

.contact-write-to-us-info-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-write-to-us-info-content {
  flex: 1;
}

.contact-write-to-us-info-heading {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
  margin: 0 0 var(--space-xs) 0;
}

.contact-write-to-us-info-text {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-write-to-us-info-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  font-weight: var(--font-weight-medium);
}

.contact-write-to-us-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-write-to-us-info-cta {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background-color: var(--color-bg-card-dark);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.contact-write-to-us-info-cta-text {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .contact-write-to-us-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-write-to-us-main {
    padding: var(--space-3xl) 0;
  }

  .contact-write-to-us-grid {
    gap: var(--space-3xl);
  }

  .contact-write-to-us-form-wrapper {
    flex: 1 1 calc(50% - var(--space-lg));
  }

  .contact-write-to-us-info-wrapper {
    flex: 1 1 calc(50% - var(--space-lg));
  }

  .contact-write-to-us-submit {
    width: auto;
    padding: 1rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-hero {
    padding: 4rem 0;
  }

  .contact-write-to-us-main {
    padding: 4rem 0;
  }

  .contact-write-to-us-form-wrapper {
    flex: 0 1 500px;
  }

  .contact-write-to-us-info-wrapper {
    flex: 0 1 400px;
  }

  .contact-write-to-us-info-block {
    padding: var(--space-lg) 0;
  }
}

@media (min-width: 1440px) {
  .contact-write-to-us-hero {
    padding: 5rem 0;
  }

  .contact-write-to-us-main {
    padding: 5rem 0;
  }
}

.header-spraak-portal-mobile-toggle[aria-expanded="true"]{
  display: none;
}  