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

:root {
  
  
  
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccfbf1;
  --color-secondary: #ea580c;
  --color-secondary-light: #fed7aa;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.1);
  --shadow-lg: 0 10px 15px rgba(28, 25, 23, 0.15);
  --shadow-xl: 0 20px 25px rgba(28, 25, 23, 0.2);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-lg);
}

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

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-md);
}

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

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

h6 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

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

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

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

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

.btn-secondary {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}

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

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(13, 148, 136, 0.1);
}

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

.card-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  display: block;
  object-fit: cover;
}

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

label {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
  font-size: 0.95rem;
}

input,
textarea,
select {
  padding: var(--space-sm);
  border: 2px solid #e7e5e4;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  transition: border-color var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.px-sm {
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

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

.px-lg {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.py-sm {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

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

.py-lg {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.py-xl {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.py-2xl {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.py-3xl {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

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

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

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

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

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

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

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

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

.text-bold {
  font-weight: 700;
}

.text-semibold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

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

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

.text-xlarge {
  font-size: 1.25rem;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

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

.bg-secondary {
  background: var(--color-bg-secondary);
}

.bg-tertiary {
  background: var(--color-bg-tertiary);
}

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

.bg-accent-light {
  background: var(--color-primary-light);
}

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

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

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

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

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

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

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

ul,
ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-relaxed);
}

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

.highlight {
  background: var(--color-primary-light);
  padding: 0 var(--space-xs);
  border-radius: var(--radius-sm);
}

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

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

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

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

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

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

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

.animate-slide-down {
  animation: slideDown var(--transition-base) ease-in-out;
}

.animate-slide-left {
  animation: slideLeft var(--transition-base) ease-in-out;
}

.animate-slide-right {
  animation: slideRight var(--transition-base) ease-in-out;
}

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

.hide-mobile {
  display: none;
}

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

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

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

button:focus-visible {
  outline-offset: -2px;
}

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

@media (prefers-color-scheme: light) {
  body {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
  }
}
.header-taal-portal {
  background: var(--color-bg-tertiary);
  box-shadow: var(--shadow-sm);
  position: static;
  width: 100%;
  z-index: 100;
}

.header-taal-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, 10vh, 80px);
}

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

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

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

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

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

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

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

.header-taal-portal-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-taal-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  flex-shrink: 0;
}

.header-taal-portal-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header-taal-portal-mobile-toggle.active .header-taal-portal-toggle-line:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

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

.header-taal-portal-mobile-toggle.active .header-taal-portal-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

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

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

.header-taal-portal-mobile-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: clamp(60px, 10vh, 80px);
  background: var(--color-bg-tertiary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(28, 25, 23, 0.1);
  z-index: 100;
}

.header-taal-portal-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  transition: color var(--transition-fast);
}

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

.header-taal-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 4vw, 2rem);
}

.header-taal-portal-mobile-link {
  padding: 1rem 0;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 25, 23, 0.1);
  transition: color var(--transition-fast);
  display: block;
}

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

.header-taal-portal-mobile-cta {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  display: block;
}

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

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

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

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

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

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

    .dutch-language-hub {
  width: 100%;
  overflow: hidden;
}

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

.dutch-language-hub p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.hero-text-block-index {
  flex: 1 1 45%;
  min-width: 250px;
}

.hero-image-block-index {
  flex: 1 1 45%;
  min-width: 250px;
}

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-title-index {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero-subtitle-index {
  color: #57534e;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

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

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.stat-number-index {
  color: #0d9488;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

.stat-label-index {
  color: #57534e;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

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

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

  .btn {
    width: 100%;
  }
}

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

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

.section-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.section-tag-index {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.section-title-index {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
}

.section-subtitle-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  line-height: 1.75;
}

.steps-container-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-index {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  align-items: flex-start;
}

.step-number-index {
  color: #0d9488;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.step-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-title-index {
  color: #0a0f1e;
  font-size: 1.125rem;
  font-weight: 600;
}

.step-text-index {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.75;
}

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

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

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

.feature-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(13, 148, 136, 0.1);
}

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

.feature-icon-index {
  color: #0d9488;
  font-size: 2rem;
  height: 50px;
  display: flex;
  align-items: center;
}

.feature-title-index {
  color: #0a0f1e;
  font-size: 1.125rem;
  font-weight: 600;
}

.feature-text-index {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.75;
}

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

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

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

.testimonial-card-index {
  flex: 1 1 320px;
  max-width: 400px;
  background: #fffbeb;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border-left: 4px solid #0d9488;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-quote-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-text-index {
  color: #1c1917;
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

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

.author-location-index {
  color: #a8a29e;
  font-size: 0.875rem;
}

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

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

.stats-text-block-index {
  flex: 1 1 45%;
  min-width: 250px;
}

.stats-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-md);
}

.stats-description-index {
  color: #e2e8f0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.stats-numbers-block-index {
  flex: 1 1 45%;
  min-width: 250px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.stat-box-index {
  flex: 1 1 200px;
  max-width: 250px;
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.stat-big-number-index {
  color: #0d9488;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  font-family: var(--font-heading);
}

.stat-box-label-index {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
}

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

  .stats-text-block-index,
  .stats-numbers-block-index {
    flex: 1 1 100%;
  }
}

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

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

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

.featured-card-index {
  flex: 1 1 320px;
  max-width: 400px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  border: 1px solid rgba(13, 148, 136, 0.1);
}

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

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

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

.card-title-index {
  color: #0a0f1e;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.card-description-index {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.75;
  flex-grow: 1;
}

.card-link-index {
  color: #0d9488;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

.card-link-index:hover {
  color: #0f766e;
  text-decoration: underline;
}

.blog-cta-index {
  text-align: center;
  margin-top: var(--space-lg);
}

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

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

.about-text-block-index {
  flex: 1 1 45%;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-image-block-index {
  flex: 1 1 45%;
  min-width: 250px;
}

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-title-index {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
}

.about-description-index {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
}

.about-text-index {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-benefits-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.benefit-item-index {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.benefit-icon-index {
  color: #0d9488;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-text-index {
  color: #1c1917;
  font-size: 0.95rem;
}

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

  .about-text-block-index,
  .about-image-block-index {
    flex: 1 1 100%;
  }
}

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

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

.cta-box-index {
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.2;
}

.cta-description-index {
  color: #e2e8f0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.75;
}

.cta-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

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

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

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

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

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

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

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

.cookie-banner-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
}

.cookie-btn-accept {
  background: #0d9488;
  color: #ffffff;
}

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

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

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

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: var(--space-md);
    padding: 1rem;
  }

  .cookie-banner-text {
    text-align: center;
    width: 100%;
  }

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

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

@media (max-width: 768px) {
  .hero-buttons-index,
  .cta-buttons-index {
    width: 100%;
  }

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

    .footer {
  background: var(--color-bg-primary);
  border-top: 2px solid var(--color-primary-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.footer-content {
  display: block;
}

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

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

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

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

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.footer-link {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-decoration: none;
  transition: color var(--transition-base), text-decoration var(--transition-base);
  display: inline-block;
}

.footer-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-copyright {
  border-top: 1px solid var(--color-secondary-light);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: clamp(0.8125rem, 1.25vw, 0.9375rem);
  margin: 0;
}

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

  .footer-about {
    flex: 1 1 250px;
    margin-bottom: 0;
  }

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

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

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

  .footer-copyright {
    flex: 1 1 100%;
    margin-top: clamp(1rem, 2vw, 2rem);
  }
}

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

  .footer-about {
    flex: 1.2 1 280px;
  }

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

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

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

.category-page-intensieve-nederlands-taalcursus {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.hero-section-intensieve-nederlands-taalcursus {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.hero-content-intensieve-nederlands-taalcursus {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.hero-header-intensieve-nederlands-taalcursus {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-intensieve-nederlands-taalcursus {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle-intensieve-nederlands-taalcursus {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-weight: 500;
}

.hero-text-intensieve-nederlands-taalcursus {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-text-intensieve-nederlands-taalcursus p {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.posts-section-intensieve-nederlands-taalcursus {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.posts-header-intensieve-nederlands-taalcursus {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.posts-title-intensieve-nederlands-taalcursus {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.posts-subtitle-intensieve-nederlands-taalcursus {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.posts-grid-intensieve-nederlands-taalcursus {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  width: 100%;
}

.card-intensieve-nederlands-taalcursus {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 148, 136, 0.08);
  transition: all var(--transition-base);
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}

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

.card-image-intensieve-nederlands-taalcursus {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.card-title-intensieve-nederlands-taalcursus {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.card-description-intensieve-nederlands-taalcursus {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.card-meta-intensieve-nederlands-taalcursus {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: 1rem 0;
  border-top: 1px solid rgba(13, 148, 136, 0.1);
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

.card-meta-item-intensieve-nederlands-taalcursus {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.card-meta-item-intensieve-nederlands-taalcursus i {
  color: var(--color-primary);
  width: 16px;
}

.card-link-intensieve-nederlands-taalcursus {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
  width: fit-content;
}

.card-link-intensieve-nederlands-taalcursus:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.insight-section-intensieve-nederlands-taalcursus {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.insight-quote-intensieve-nederlands-taalcursus {
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}

.insight-blockquote-intensieve-nederlands-taalcursus {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
}

.insight-text-intensieve-nederlands-taalcursus {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  font-weight: 500;
}

.insight-footer-intensieve-nederlands-taalcursus {
  display: block;
}

.insight-author-intensieve-nederlands-taalcursus {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 600;
}

.insight-context-intensieve-nederlands-taalcursus {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insight-heading-intensieve-nederlands-taalcursus {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.insight-para-intensieve-nederlands-taalcursus {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin: 0;
}

.progress-section-intensieve-nederlands-taalcursus {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.progress-header-intensieve-nederlands-taalcursus {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.progress-title-intensieve-nederlands-taalcursus {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.progress-subtitle-intensieve-nederlands-taalcursus {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.progress-steps-intensieve-nederlands-taalcursus {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.progress-step-intensieve-nederlands-taalcursus {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.1);
  transition: all var(--transition-base);
}

.progress-step-intensieve-nederlands-taalcursus:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.progress-step-number-intensieve-nederlands-taalcursus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
}

.progress-step-title-intensieve-nederlands-taalcursus {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
}

.progress-step-text-intensieve-nederlands-taalcursus {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-section-intensieve-nederlands-taalcursus {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .posts-section-intensieve-nederlands-taalcursus {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .insight-section-intensieve-nederlands-taalcursus {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .progress-section-intensieve-nederlands-taalcursus {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .progress-steps-intensieve-nederlands-taalcursus {
    gap: clamp(2rem, 4vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .posts-grid-intensieve-nederlands-taalcursus {
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }

  .card-intensieve-nederlands-taalcursus {
    max-width: 850px;
  }
}

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

  .insight-quote-intensieve-nederlands-taalcursus {
    border-left-width: 3px;
    padding: clamp(1.5rem, 3vw, 2rem);
  }

  .progress-step-intensieve-nederlands-taalcursus {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-eerste-week-nederlands-leren {
  width: 100%;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.hero-section-eerste-week-nederlands-leren {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-eerste-week-nederlands-leren {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-eerste-week-nederlands-leren a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}

.breadcrumbs-eerste-week-nederlands-leren a:hover {
  color: #0d9488;
  text-decoration: underline;
}

.breadcrumbs-eerste-week-nederlands-leren span {
  color: #64748b;
}

.breadcrumbs-eerste-week-nederlands-leren span:last-child {
  color: #cbd5e1;
  font-weight: 600;
}

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

.hero-text-eerste-week-nederlands-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-eerste-week-nederlands-leren {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-eerste-week-nederlands-leren {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-eerste-week-nederlands-leren {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.meta-item-eerste-week-nederlands-leren {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.meta-item-eerste-week-nederlands-leren i {
  color: #0d9488;
  font-size: 1rem;
}

.hero-image-eerste-week-nederlands-leren {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-img-eerste-week-nederlands-leren {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

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

  .hero-text-eerste-week-nederlands-leren,
  .hero-image-eerste-week-nederlands-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-eerste-week-nederlands-leren {
    gap: 1rem;
  }
}

.intro-section-eerste-week-nederlands-leren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-section-eerste-week-nederlands-leren .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.intro-text-eerste-week-nederlands-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-eerste-week-nederlands-leren {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-eerste-week-nederlands-leren {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-image-eerste-week-nederlands-leren {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

.intro-image-eerste-week-nederlands-leren img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

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

  .intro-text-eerste-week-nederlands-leren,
  .intro-image-eerste-week-nederlands-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.foundation-section-eerste-week-nederlands-leren {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.foundation-section-eerste-week-nederlands-leren .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.foundation-content-eerste-week-nederlands-leren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.foundation-image-eerste-week-nederlands-leren {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

.foundation-image-eerste-week-nederlands-leren img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.foundation-text-eerste-week-nederlands-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-title-eerste-week-nederlands-leren {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.foundation-paragraph-eerste-week-nederlands-leren {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.foundation-list-eerste-week-nederlands-leren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-item-eerste-week-nederlands-leren {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.list-item-title-eerste-week-nederlands-leren {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.75rem;
}

.list-item-text-eerste-week-nederlands-leren {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .foundation-content-eerste-week-nederlands-leren {
    flex-direction: column;
  }

  .foundation-image-eerste-week-nederlands-leren,
  .foundation-text-eerste-week-nederlands-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.daily-routine-section-eerste-week-nederlands-leren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.daily-routine-section-eerste-week-nederlands-leren .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.daily-routine-content-eerste-week-nederlands-leren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.daily-routine-text-eerste-week-nederlands-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.daily-routine-title-eerste-week-nederlands-leren {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.daily-routine-paragraph-eerste-week-nederlands-leren {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.routine-breakdown-eerste-week-nederlands-leren {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.routine-item-eerste-week-nederlands-leren {
  background: #f1f5f9;
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 3px solid #0d9488;
}

.routine-time-eerste-week-nederlands-leren {
  display: block;
  font-weight: 700;
  color: #0d9488;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.routine-description-eerste-week-nederlands-leren {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.daily-routine-image-eerste-week-nederlands-leren {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

.daily-routine-image-eerste-week-nederlands-leren img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .daily-routine-content-eerste-week-nederlands-leren {
    flex-direction: column;
  }

  .daily-routine-text-eerste-week-nederlands-leren,
  .daily-routine-image-eerste-week-nederlands-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.expectations-section-eerste-week-nederlands-leren {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.expectations-section-eerste-week-nederlands-leren .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.expectations-content-eerste-week-nederlands-leren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.expectations-image-eerste-week-nederlands-leren {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

.expectations-image-eerste-week-nederlands-leren img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.expectations-text-eerste-week-nederlands-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.expectations-title-eerste-week-nederlands-leren {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.expectations-paragraph-eerste-week-nederlands-leren {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.expectations-highlight-eerste-week-nederlands-leren {
  background: #fed7aa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #ea580c;
  margin: 2rem 0;
}

.highlight-text-eerste-week-nederlands-leren {
  font-size: 0.95rem;
  color: #7c2d12;
  line-height: 1.75;
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .expectations-content-eerste-week-nederlands-leren {
    flex-direction: column;
  }

  .expectations-image-eerste-week-nederlands-leren,
  .expectations-text-eerste-week-nederlands-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-eerste-week-nederlands-leren {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-section-eerste-week-nederlands-leren .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.conclusion-content-eerste-week-nederlands-leren {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-eerste-week-nederlands-leren {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-eerste-week-nederlands-leren {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-eerste-week-nederlands-leren {
  margin-top: 2.5rem;
}

.cta-button-eerste-week-nederlands-leren {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #0d9488;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 250ms ease-in-out;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.cta-button-eerste-week-nederlands-leren:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

@media (max-width: 768px) {
  .conclusion-content-eerste-week-nederlands-leren {
    padding: 0 1rem;
  }
}

.disclaimer-section-eerste-week-nederlands-leren {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-section-eerste-week-nederlands-leren .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-content-eerste-week-nederlands-leren {
  max-width: 800px;
  margin: 0 auto;
  background: #f1f5f9;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #0d9488;
}

.disclaimer-title-eerste-week-nederlands-leren {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-eerste-week-nederlands-leren {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.related-section-eerste-week-nederlands-leren {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-section-eerste-week-nederlands-leren .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-content-eerste-week-nederlands-leren {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.related-title-eerste-week-nederlands-leren {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  text-align: center;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-grid-eerste-week-nederlands-leren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-eerste-week-nederlands-leren {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(28, 25, 23, 0.1);
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
}

.related-card-eerste-week-nederlands-leren:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.15);
}

.related-image-eerste-week-nederlands-leren {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-img-eerste-week-nederlands-leren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-eerste-week-nederlands-leren {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-eerste-week-nederlands-leren {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.related-card-description-eerste-week-nederlands-leren {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-eerste-week-nederlands-leren {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 150ms ease-in-out;
  width: fit-content;
}

.related-link-eerste-week-nederlands-leren:hover {
  color: #0f766e;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-eerste-week-nederlands-leren {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

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

  .related-grid-eerste-week-nederlands-leren {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section-eerste-week-nederlands-leren {
    padding: 1.5rem 0;
  }

  .hero-meta-eerste-week-nederlands-leren {
    flex-direction: column;
    gap: 0.75rem;
  }

  .breadcrumbs-eerste-week-nederlands-leren {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .routine-breakdown-eerste-week-nederlands-leren {
    gap: 1rem;
  }

  .routine-item-eerste-week-nederlands-leren {
    padding: 1rem;
  }
}

.main-nederlands-luisteren-podcasts {
  width: 100%;
  overflow: hidden;
}

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

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

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

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

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

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

.hero-meta-nederlands-luisteren-podcasts {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.meta-item-nederlands-luisteren-podcasts {
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 500;
}

.meta-divider-nederlands-luisteren-podcasts {
  color: #64748b;
}

.hero-image-nederlands-luisteren-podcasts {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

  .hero-section-nederlands-luisteren-podcasts {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

.breadcrumbs-nederlands-luisteren-podcasts {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.breadcrumbs-nederlands-luisteren-podcasts a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-nederlands-luisteren-podcasts a:hover {
  color: #cbd5e1;
  text-decoration: underline;
}

.breadcrumbs-nederlands-luisteren-podcasts span {
  color: #64748b;
}

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

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

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

.intro-image-Nederlands-luisteren-podcasts {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlands-luisteren-podcasts {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-paragraph-nederlands-luisteren-podcasts {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.75;
}

.intro-image-Nederlands-luisteren-podcasts img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

  .intro-section-nederlands-luisteren-podcasts {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

.content-one-text-nederlands-luisteren-podcasts {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-nederlands-luisteren-podcasts {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-nederlands-luisteren-podcasts {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-one-paragraph-nederlands-luisteren-podcasts {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.75;
}

.content-one-highlight-nederlands-luisteren-podcasts {
  background: #e0f2fe;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid #0369a1;
}

.highlight-title-nederlands-luisteren-podcasts {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.highlight-list-nederlands-luisteren-podcasts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-item-nederlands-luisteren-podcasts {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.list-item-nederlands-luisteren-podcasts:before {
  content: "";
  position: absolute;
  left: 0;
  color: #0369a1;
  font-weight: 600;
}

.content-one-image-nederlands-luisteren-podcasts img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .content-one-text-nederlands-luisteren-podcasts,
  .content-one-image-nederlands-luisteren-podcasts {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-one-nederlands-luisteren-podcasts {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

.content-two-image-nederlands-luisteren-podcasts {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-two-text-nederlands-luisteren-podcasts {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-nederlands-luisteren-podcasts {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-two-paragraph-nederlands-luisteren-podcasts {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.75;
}

.content-two-highlight-nederlands-luisteren-podcasts {
  background: #fef3c7;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid #d97706;
}

.content-two-image-nederlands-luisteren-podcasts img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .content-two-image-nederlands-luisteren-podcasts,
  .content-two-text-nederlands-luisteren-podcasts {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }

  .content-two-nederlands-luisteren-podcasts {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

.content-three-nederlands-luisteren-podcasts {
  background: #f0f9ff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-three-text-nederlands-luisteren-podcasts {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-image-nederlands-luisteren-podcasts {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-nederlands-luisteren-podcasts {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-three-paragraph-nederlands-luisteren-podcasts {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.75;
}

.steps-container-nederlands-luisteren-podcasts {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

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

.step-number-nederlands-luisteren-podcasts {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #0369a1;
  min-width: 3rem;
  text-align: center;
  line-height: 1;
}

.step-content-nederlands-luisteren-podcasts {
  flex: 1;
}

.step-title-nederlands-luisteren-podcasts {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.step-text-nederlands-luisteren-podcasts {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.content-three-image-nederlands-luisteren-podcasts img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .content-three-text-nederlands-luisteren-podcasts,
  .content-three-image-nederlands-luisteren-podcasts {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-three-nederlands-luisteren-podcasts {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .step-item-nederlands-luisteren-podcasts {
    gap: 1rem;
  }
}

.conclusion-section-nederlands-luisteren-podcasts {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-nederlands-luisteren-podcasts {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-nederlands-luisteren-podcasts {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.conclusion-paragraph-nederlands-luisteren-podcasts {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.75;
}

.conclusion-highlight-box-nederlands-luisteren-podcasts {
  background: rgba(13, 148, 136, 0.15);
  border: 2px solid #14b8a6;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 12px;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.box-title-nederlands-luisteren-podcasts {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.box-list-nederlands-luisteren-podcasts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.box-item-nederlands-luisteren-podcasts,
.box-item-nederlands-luisteren-podcasts {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
  text-align: left;
}

.box-item-nederlands-luisteren-podcasts:before {
  content: "";
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: 700;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .conclusion-section-nederlands-luisteren-podcasts {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .conclusion-content-nederlands-luisteren-podcasts {
    text-align: center;
  }
}

.disclaimer-section-nederlands-luisteren-podcasts {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-nederlands-luisteren-podcasts {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-nederlands-luisteren-podcasts {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-luisteren-podcasts {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

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

.related-content-nederlands-luisteren-podcasts {
  width: 100%;
}

.related-title-nederlands-luisteren-podcasts {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
}

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

.related-card-nederlands-luisteren-podcasts {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.related-card-nederlands-luisteren-podcasts:hover {
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.15);
  transform: translateY(-4px);
}

.related-card-image-nederlands-luisteren-podcasts {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-img-element-nederlands-luisteren-podcasts {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-nederlands-luisteren-podcasts {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-card-title-nederlands-luisteren-podcasts {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-text-nederlands-luisteren-podcasts {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-nederlands-luisteren-podcasts {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0369a1;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-card-link-nederlands-luisteren-podcasts:hover {
  color: #0f766e;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-nederlands-luisteren-podcasts {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

  .related-section-nederlands-luisteren-podcasts {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

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

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

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

html, body {
  width: 100%;
}

main {
  width: 100%;
  overflow-x: hidden;
}

.dutch-immersion-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: var(--line-height-normal);
}

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

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

p, span, a {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.hero-text-about {
  text-align: center;
  max-width: 900px;
}

.hero-title-about {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.hero-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--line-height-relaxed);
}

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

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

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

.stat-label-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
}

.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(2rem, 4vw, 3rem);
}

.foundation-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  background: rgba(13, 148, 136, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.foundation-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.foundation-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.foundation-blocks-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.foundation-block-about {
  background: var(--color-bg-tertiary);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

.foundation-block-about:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.foundation-block-title-about {
  font-size: clamp(1.125rem, 2vw + 0.3rem, 1.375rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 600;
}

.foundation-block-text-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.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(2rem, 4vw, 3rem);
}

.methodology-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.methodology-intro-about {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

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

.step-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  min-width: clamp(3rem, 5vw, 4rem);
}

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

.step-title-about {
  font-size: clamp(1.125rem, 2vw + 0.3rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.approach-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: clamp(2rem, 3vw, 2.5rem) auto 0;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

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

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

.strengths-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.strengths-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.strengths-intro-about {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.feature-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.feature-card-about:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-icon-about {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--color-primary);
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.card-title-about {
  font-size: clamp(1rem, 1.8vw + 0.2rem, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  font-weight: 600;
}

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

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

.testimonial-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

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

.testimonial-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.featured-quote-about {
  padding: clamp(2rem, 3vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
}

.quote-text-about {
  font-size: clamp(1.05rem, 1.8vw + 0.3rem, 1.375rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: var(--line-height-relaxed);
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-primary);
  font-weight: 600;
  display: block;
}

.disclaimer-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-primary-light);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  align-items: flex-start;
}

.disclaimer-icon-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw + 0.3rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

  .process-step-about {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

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

  .features-cards-about {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-card-about {
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-cards-about {
    gap: clamp(1.5rem, 2.5vw, 2rem);
  }

  .feature-card-about {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1025px) {
  .features-cards-about {
    gap: clamp(1.5rem, 2vw, 2rem);
  }

  .feature-card-about {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border-bottom: 2px solid var(--color-primary);
}

.portfolio-hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.portfolio-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-2xl) var(--space-lg);
  }
}

.portfolio-cards {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-cards__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .portfolio-cards {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-cards__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-cards__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.portfolio-card__image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.portfolio-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.portfolio-card:hover .portfolio-card__image {
  transform: scale(1.05);
}

.portfolio-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-card__tag {
  display: inline-block;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  width: fit-content;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.portfolio-card__description {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-relaxed);
  flex: 1;
}

.portfolio-card__detail {
  font-size: clamp(0.8rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  margin: 0;
  line-height: var(--line-height-normal);
  font-weight: 500;
}

@media (min-width: 768px) {
  .portfolio-card__image-wrapper {
    height: 280px;
  }

  .portfolio-card__content {
    padding: var(--space-lg);
  }
}

.portfolio-cta {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  overflow: hidden;
}

.portfolio-cta__container {
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-bg-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.portfolio-cta__text {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-normal);
}

.portfolio-cta__button {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-bg-tertiary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  border: 2px solid var(--color-secondary);
  cursor: pointer;
}

.portfolio-cta__button:hover {
  background-color: var(--color-secondary-light);
  color: var(--color-text-primary);
  transform: scale(1.05);
}

.portfolio-cta__button:active {
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  text-align: center;
}

.services-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary-light);
  margin: 0;
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: 0;
}

@media (min-width: 768px) {
  .services-content {
    padding: var(--space-3xl) 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--color-primary);
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  flex-shrink: 0;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

.service-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: auto;
  padding-top: var(--space-md);
}

.highlight {
  display: inline-block;
  background-color: var(--color-secondary-light);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.services-info {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.info-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-2xl) 0;
  text-align: center;
  line-height: var(--line-height-tight);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .services-info {
    padding: var(--space-3xl) 0;
  }

  .info-title {
    margin-bottom: var(--space-3xl);
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

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

.info-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

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

.services-cta {
  background-color: var(--color-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-relaxed);
}

.cta-button {
  display: inline-block;
  background-color: var(--color-bg-tertiary);
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

:root {
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccfbf1;
  --color-secondary: #ea580c;
  --color-secondary-light: #fed7aa;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.1);
  --shadow-lg: 0 10px 15px rgba(28, 25, 23, 0.15);
  --shadow-xl: 0 20px 25px rgba(28, 25, 23, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

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

.legal-docs {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  padding: var(--space-lg) 0;
}

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

.legal-docs .legal-docs-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.legal-docs .last-updated {
  color: var(--color-text-muted);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  margin-bottom: var(--space-2xl);
  font-family: var(--font-primary);
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.legal-docs p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-docs ul,
.legal-docs ol {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-docs li {
  margin-bottom: var(--space-sm);
}

.legal-docs strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.contact-section {
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-3xl);
}

.contact-section h2 {
  margin-top: 0;
}

.contact-section p {
  margin-bottom: var(--space-sm);
}

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

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

  .legal-docs .container {
    padding: 0 var(--space-md);
  }

  .contact-section {
    padding: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .legal-docs {
    padding: var(--space-xl) 0;
  }
}

.thank-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  padding: var(--space-md);
}

.thank-section {
  width: 100%;
  overflow: hidden;
}

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

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

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xl);
  animation: scaleIn 0.6s ease-out;
}

.thank-icon svg {
  width: clamp(3rem, 12vw, 5rem);
  height: clamp(3rem, 12vw, 5rem);
  color: var(--color-primary);
  stroke-width: 1.5;
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  font-weight: 700;
  animation: slideUp 0.6s ease-out 0.1s both;
}

.thank-content .lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-relaxed);
  font-weight: 600;
  animation: slideUp 0.6s ease-out 0.2s both;
}

.thank-content .description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-relaxed);
  animation: slideUp 0.6s ease-out 0.3s both;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  margin-top: var(--space-xl);
  animation: slideUp 0.6s ease-out 0.4s both;
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (min-width: 768px) {
  .thank-page {
    padding: var(--space-lg);
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .thank-content {
    padding: var(--space-2xl);
  }

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

  .thank-content h1 {
    margin-bottom: var(--space-lg);
  }

  .thank-content .lead {
    margin-bottom: var(--space-xl);
  }

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

@media (min-width: 1024px) {
  .thank-page {
    padding: var(--space-xl);
  }

  .container {
    padding: 0 var(--space-xl);
  }

  .thank-content {
    padding: var(--space-3xl);
  }

  .thank-icon {
    margin-bottom: var(--space-3xl);
  }

  .thank-content h1 {
    margin-bottom: var(--space-xl);
  }

  .thank-content .lead {
    margin-bottom: var(--space-2xl);
  }

  .btn {
    padding: var(--space-md) var(--space-2xl);
  }
}

* {
  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-primary);
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: var(--space-lg);
}

.error-code-container {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  width: 150%;
  height: 150%;
  border: 3px solid var(--color-primary-light);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-sm);
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.error-description {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin: var(--space-md) 0;
}

.error-description p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.error-description strong {
  color: var(--color-primary);
  font-weight: 600;
}

.error-suggestions {
  text-align: left;
  background-color: var(--color-bg-secondary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  margin: var(--space-md) 0;
}

.suggestions-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.suggestions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestions-list li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  padding-left: var(--space-md);
  position: relative;
  line-height: var(--line-height-normal);
}

.suggestions-list li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.suggestion-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.suggestion-link:hover,
.suggestion-link:focus {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary);
  outline: none;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  text-align: center;
  margin-top: var(--space-md);
}

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

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

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

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl);
  }

  .container {
    padding: 0 var(--space-md);
  }

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

  .error-code-container {
    max-width: 320px;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl);
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .error-wrapper {
    gap: var(--space-3xl);
    padding: var(--space-xl);
  }

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

  .error-code-container {
    max-width: 360px;
  }

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

  .error-suggestions {
    padding: var(--space-lg);
  }

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

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .error-code-container {
    max-width: 400px;
  }

  .btn {
    padding: calc(var(--space-md) + 4px) calc(var(--space-lg) + 8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn-primary:hover,
  .btn-primary:focus {
    transform: none;
  }

  .btn-primary:active {
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  .error-page {
    background-color: var(--color-bg-primary);
  }

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

  .error-description {
    background-color: var(--color-bg-secondary);
  }

  .error-code {
    -webkit-text-fill-color: transparent;
  }
}

.contact-page-contact {
  width: 100%;
  background-color: var(--color-bg-primary);
}

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

.contact-page-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-page-hero-content {
  text-align: center;
  padding: var(--space-lg) 0;
}

.contact-page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.contact-page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

.contact-page-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-page-main-content {
  width: 100%;
}

.contact-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  align-items: flex-start;
}

.contact-page-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-page-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-page-form-header {
  margin-bottom: var(--space-lg);
}

.contact-page-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.contact-page-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.contact-page-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-page-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.contact-page-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.contact-page-input,
.contact-page-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary);
  background-color: var(--color-bg-card);
  border: 2px solid var(--color-primary-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  width: 100%;
  transition: all var(--transition-base);
}

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

.contact-page-input:focus,
.contact-page-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  background-color: var(--color-bg-tertiary);
}

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

.contact-page-form-privacy {
  margin: var(--space-sm) 0;
}

.contact-page-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.contact-page-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

.contact-page-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-bg-tertiary);
  background-color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  width: 100%;
  box-shadow: var(--shadow-md);
}

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

.contact-page-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.contact-page-info-header {
  margin-bottom: var(--space-lg);
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.contact-page-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.contact-page-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-page-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-page-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-page-info-content {
  flex: 1;
  min-width: 0;
}

.contact-page-info-item-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.contact-page-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-xs);
}

.contact-page-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

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

.contact-page-info-item-meta {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.contact-page-info-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.contact-page-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-page-feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
}

.contact-page-feature-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary);
  font-weight: 500;
}

.contact-page-faq {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-page-faq-content {
  width: 100%;
}

.contact-page-faq-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-2xl);
  line-height: var(--line-height-tight);
}

.contact-page-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.contact-page-faq-item {
  padding: var(--space-lg);
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-primary-light);
  transition: all var(--transition-base);
}

.contact-page-faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.contact-page-faq-question {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.contact-page-faq-answer {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .contact-page-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-page-main {
    padding: var(--space-3xl) 0;
  }

  .contact-page-grid {
    gap: var(--space-3xl);
  }

  .contact-page-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-page-info-wrapper {
    flex: 1 1 45%;
  }

  .contact-page-faq {
    padding: var(--space-3xl) 0;
  }

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

@media (min-width: 1024px) {
  .contact-page-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-page-hero-content {
    padding: var(--space-2xl) 0;
  }

  .contact-page-main {
    padding: var(--space-3xl) 0;
  }

  .contact-page-form-wrapper {
    flex: 1 1 48%;
  }

  .contact-page-info-wrapper {
    flex: 1 1 48%;
  }

  .contact-page-faq {
    padding: var(--space-3xl) 0;
  }

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

.main-nederlandse-woordenschat-efficiënt {
  width: 100%;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.hero-section-nederlandse-woordenschat-efficiënt {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-nederlandse-woordenschat-efficiënt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-nederlandse-woordenschat-efficiënt a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}

.breadcrumbs-nederlandse-woordenschat-efficiënt a:hover {
  color: #0d9488;
  text-decoration: underline;
}

.breadcrumbs-nederlandse-woordenschat-efficiënt span {
  color: #64748b;
}

.breadcrumbs-nederlandse-woordenschat-efficiënt span:last-child {
  color: #cbd5e1;
  font-weight: 600;
}

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

.hero-text-wrapper-nederlandse-woordenschat-efficiënt {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-nederlandse-woordenschat-efficiënt {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlandse-woordenschat-efficiënt {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-nederlandse-woordenschat-efficiënt {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.meta-item-nederlandse-woordenschat-efficiënt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.meta-item-nederlandse-woordenschat-efficiënt i {
  color: #0d9488;
  font-size: 1rem;
}

.hero-image-wrapper-nederlandse-woordenschat-efficiënt {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-nederlandse-woordenschat-efficiënt {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

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

  .hero-text-wrapper-nederlandse-woordenschat-efficiënt,
  .hero-image-wrapper-nederlandse-woordenschat-efficiënt {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-nederlandse-woordenschat-efficiënt {
    gap: 1rem;
  }
}

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

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

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

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

.intro-title-nederlandse-woordenschat-efficiënt {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-nederlandse-woordenschat-efficiënt {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-image-block-nederlandse-woordenschat-efficiënt {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

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

@media (max-width: 768px) {
  .intro-content-nederlandse-woordenschat-efficiënt {
    flex-direction: column;
  }

  .intro-text-block-nederlandse-woordenschat-efficiënt,
  .intro-image-block-nederlandse-woordenschat-efficiënt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.structure-section-nederlandse-woordenschat-efficiënt {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.structure-content-nederlandse-woordenschat-efficiënt {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.structure-text-block-nederlandse-woordenschat-efficiënt {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-nederlandse-woordenschat-efficiënt {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.structure-text-nederlandse-woordenschat-efficiënt {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.structure-list-nederlandse-woordenschat-efficiënt {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-item-nederlandse-woordenschat-efficiënt {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #0d9488;
}

.list-label-nederlandse-woordenschat-efficiënt {
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.5rem;
  display: block;
}

.structure-image-block-nederlandse-woordenschat-efficiënt {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

.structure-image-nederlandse-woordenschat-efficiënt {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .structure-content-nederlandse-woordenschat-efficiënt {
    flex-direction: column;
  }

  .structure-text-block-nederlandse-woordenschat-efficiënt,
  .structure-image-block-nederlandse-woordenschat-efficiënt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practical-section-nederlandse-woordenschat-efficiënt {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.practical-content-nederlandse-woordenschat-efficiënt {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.practical-image-block-nederlandse-woordenschat-efficiënt {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
  order: -1;
}

.practical-image-nederlandse-woordenschat-efficiënt {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.practical-text-block-nederlandse-woordenschat-efficiënt {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-nederlandse-woordenschat-efficiënt {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-text-nederlandse-woordenschat-efficiënt {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .practical-content-nederlandse-woordenschat-efficiënt {
    flex-direction: column;
  }

  .practical-image-block-nederlandse-woordenschat-efficiënt,
  .practical-text-block-nederlandse-woordenschat-efficiënt {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

.methods-section-nederlandse-woordenschat-efficiënt {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.methods-header-nederlandse-woordenschat-efficiënt {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.methods-title-nederlandse-woordenschat-efficiënt {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.methods-subtitle-nederlandse-woordenschat-efficiënt {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #57534e;
  max-width: 600px;
  margin: 0 auto;
}

.methods-cards-nederlandse-woordenschat-efficiënt {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.method-card-nederlandse-woordenschat-efficiënt {
  flex: 1 1 280px;
  max-width: 320px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(28, 25, 23, 0.1);
  transition: all 250ms ease-in-out;
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.method-card-nederlandse-woordenschat-efficiënt:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.15);
}

.method-number-nederlandse-woordenschat-efficiënt {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0d9488;
  margin-bottom: 1rem;
}

.method-title-nederlandse-woordenschat-efficiënt {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 0.75rem;
}

.method-text-nederlandse-woordenschat-efficiënt {
  font-size: 0.95rem;
  color: #57534e;
  line-height: 1.7;
}

.timeline-section-nederlandse-woordenschat-efficiënt {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.timeline-content-nederlandse-woordenschat-efficiënt {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.timeline-text-block-nederlandse-woordenschat-efficiënt {
  flex: 1 1 50%;
  max-width: 50%;
}

.timeline-title-nederlandse-woordenschat-efficiënt {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.timeline-text-nederlandse-woordenschat-efficiënt {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.timeline-items-nederlandse-woordenschat-efficiënt {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item-nederlandse-woordenschat-efficiënt {
  background: #f1f5f9;
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 3px solid #0d9488;
}

.timeline-week-nederlandse-woordenschat-efficiënt {
  display: block;
  font-weight: 700;
  color: #0d9488;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-description-nederlandse-woordenschat-efficiënt {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.timeline-image-block-nederlandse-woordenschat-efficiënt {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(28, 25, 23, 0.1);
}

.timeline-image-nederlandse-woordenschat-efficiënt {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .timeline-content-nederlandse-woordenschat-efficiënt {
    flex-direction: column;
  }

  .timeline-text-block-nederlandse-woordenschat-efficiënt,
  .timeline-image-block-nederlandse-woordenschat-efficiënt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.closing-section-nederlandse-woordenschat-efficiënt {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.closing-content-nederlandse-woordenschat-efficiënt {
  max-width: 900px;
  margin: 0 auto;
}

.closing-quote-nederlandse-woordenschat-efficiënt {
  background: #ffffff;
  border-left: 4px solid #0d9488;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.quote-text-nederlandse-woordenschat-efficiënt {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #1c1917;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-nederlandse-woordenschat-efficiënt {
  font-size: 0.95rem;
  color: #57534e;
  font-style: normal;
  font-weight: 600;
  display: block;
}

.closing-text-nederlandse-woordenschat-efficiënt {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.closing-title-nederlandse-woordenschat-efficiënt {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1c1917;
  margin-bottom: 1rem;
}

.closing-paragraph-nederlandse-woordenschat-efficiënt {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #57534e;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.closing-button-nederlandse-woordenschat-efficiënt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #0d9488;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 250ms ease-in-out;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
  margin-top: 1rem;
}

.closing-button-nederlandse-woordenschat-efficiënt:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.disclaimer-section-nederlandse-woordenschat-efficiënt {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-nederlandse-woordenschat-efficiënt {
  max-width: 800px;
  margin: 0 auto;
  background: #f1f5f9;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #0d9488;
}

.disclaimer-title-nederlandse-woordenschat-efficiënt {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlandse-woordenschat-efficiënt {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.related-section-nederlandse-woordenschat-efficiënt {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-content-nederlandse-woordenschat-efficiënt {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.related-title-nederlandse-woordenschat-efficiënt {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1c1917;
  text-align: center;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-nederlandse-woordenschat-efficiënt {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-nederlandse-woordenschat-efficiënt {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(28, 25, 23, 0.1);
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
}

.related-card-nederlandse-woordenschat-efficiënt:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(28, 25, 23, 0.15);
}

.related-card-image-nederlandse-woordenschat-efficiënt {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-image-nederlandse-woordenschat-efficiënt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-nederlandse-woordenschat-efficiënt {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 0.75rem 0;
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.related-card-text-nederlandse-woordenschat-efficiënt {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  padding: 0 1.5rem;
  flex: 1;
}

.related-card-link-nederlandse-woordenschat-efficiënt {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 150ms ease-in-out;
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin-top: 1rem;
}

.related-card-link-nederlandse-woordenschat-efficiënt:hover {
  color: #0f766e;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-nederlandse-woordenschat-efficiënt {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

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

  .related-cards-nederlandse-woordenschat-efficiënt {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section-nederlandse-woordenschat-efficiënt {
    padding: 1.5rem 0;
  }

  .hero-meta-nederlandse-woordenschat-efficiënt {
    flex-direction: column;
    gap: 0.75rem;
  }

  .breadcrumbs-nederlandse-woordenschat-efficiënt {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .methods-cards-nederlandse-woordenschat-efficiënt {
    gap: 1.5rem;
  }

  .method-card-nederlandse-woordenschat-efficiënt {
    max-width: 100%;
  }
}