
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Sora:wght@400;500;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-hover: #c2410c;
  
  
  --font-primary: 'Sora', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  
  
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.04);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 10px 15px rgba(28, 25, 23, 0.1);
  --shadow-xl: 0 20px 25px rgba(28, 25, 23, 0.12);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  -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: 16px;
  line-height: 1.6;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  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.125rem;
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.card-sm {
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.card-lg {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
}

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

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

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

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

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

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

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

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

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

.btn-block {
  width: 100%;
}

input,
textarea,
select {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid #e7d4b5;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

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

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

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

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

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

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

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

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

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

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

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

.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

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

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

.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); }
.px-xl { padding-left: var(--space-xl); padding-right: var(--space-xl); }

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

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

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

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

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }

.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); }
.bg-accent-light { background: var(--color-primary-light); }

.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.875rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

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

.badge-secondary {
  background: rgba(234, 88, 12, 0.1);
  color: var(--color-secondary);
}

.divider {
  height: 1px;
  background: #e7d4b5;
  margin: var(--space-lg) 0;
}

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

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

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

.bg-highlight {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  body {
    font-size: 15px;
  }
}

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

@media print {
  body {
    background: #ffffff;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}
.header-dutch-lingua {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid #e5e7eb;
  position: static;
  z-index: 100;
}

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

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

.header-dutch-lingua-brand:hover {
  opacity: 0.85;
}

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

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

.header-dutch-lingua-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  margin-left: clamp(2rem, 5vw, 4rem);
}

.header-dutch-lingua-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);
  position: relative;
}

.header-dutch-lingua-nav-link:hover {
  color: var(--color-primary);
}

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

.header-dutch-lingua-nav-link:hover::after {
  width: 100%;
}

.header-dutch-lingua-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-dutch-lingua-cta-button:hover {
  background: var(--color-primary-hover);
}

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

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

.header-dutch-lingua-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-tertiary);
  box-shadow: -4px 0 15px rgba(28, 25, 23, 0.15);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 999;
  overflow-y: auto;
}

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

.header-dutch-lingua-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem;
  border-bottom: 1px solid #e5e7eb;
}

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

.header-dutch-lingua-mobile-close:hover {
  color: var(--color-primary);
}

.header-dutch-lingua-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
  flex: 1;
}

.header-dutch-lingua-mobile-link {
  padding: 1rem 1.5rem;
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.header-dutch-lingua-mobile-link:hover {
  background: #fafaf9;
  color: var(--color-primary);
}

.header-dutch-lingua-mobile-cta {
  padding: 1rem 1.5rem;
  margin: 1rem 1.5rem 1.5rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: background var(--transition-fast);
}

.header-dutch-lingua-mobile-cta:hover {
  background: var(--color-primary-hover);
}

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

  .header-dutch-lingua-cta-button {
    display: block;
  }

  .header-dutch-lingua-mobile-toggle {
    display: none;
  }

  .header-dutch-lingua-mobile-menu {
    display: none;
  }

  .header-dutch-lingua-container {
    min-height: 80px;
  }
}

@media (max-width: 767px) {
  .header-dutch-lingua-container {
    min-height: 64px;
  }

  .header-dutch-lingua-logo-text {
    font-size: 1.125rem;
  }
}

body.header-dutch-lingua-open {
  overflow: hidden;
}

    .dutch-hub {
  width: 100%;
}

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

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

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

.hero-text-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

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

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

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

.hero-stat-number-index {
  color: var(--color-primary);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

.hero-stat-label-index {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.hero-buttons-index .btn {
  flex: 1 1 auto;
  min-width: 200px;
}

@media (max-width: 480px) {
  .hero-buttons-index .btn {
    min-width: 100%;
  }
}

.hero-image-index {
  flex: 1 1 45%;
  width: 100%;
  min-height: 300px;
}

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

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

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

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

.featured-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.featured-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.featured-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

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

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

.featured-card-body-index {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.featured-card-title-index {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.featured-card-text-index {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.featured-card-link-index {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.featured-footer-index {
  text-align: center;
  padding-top: var(--space-lg);
}

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

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

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

.benefits-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.benefits-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

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

.benefits-card-index {
  flex: 1 1 280px;
  max-width: 360px;
  padding: var(--space-lg);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.benefits-card-index:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefits-card-icon-index {
  font-size: 2.5rem;
  color: var(--color-primary);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-card-title-index {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

.benefits-card-text-index {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

.process-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.process-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

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

.process-step-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: clamp(70px, 10vw, 120px);
  font-family: var(--font-heading);
}

.process-step-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: left;
  flex: 1;
}

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

.process-step-text-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.6;
}

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

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

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

.about-text-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.about-description-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
}

.about-highlight-index {
  background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.about-quote-index {
  color: var(--color-text-primary);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin: 0;
}

.about-image-index {
  flex: 1 1 45%;
  width: 100%;
  min-height: 350px;
}

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

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

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

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

.faq-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.faq-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

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

.faq-item-index {
  flex: 1 1 300px;
  max-width: 380px;
  padding: var(--space-lg);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-question-index {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}

.faq-answer-index {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

.stats-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.stats-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

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

.stats-card-index {
  flex: 1 1 200px;
  max-width: 280px;
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.stats-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

.stats-label-index {
  font-size: 1rem;
  font-weight: 600;
}

.stats-description-index {
  font-size: 0.875rem;
  opacity: 0.95;
}

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

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

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

.testimonials-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.testimonials-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

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

.testimonials-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  padding: var(--space-lg);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonials-quote-index {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  font-style: italic;
}

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

.testimonials-name-index {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 1rem;
}

.testimonials-role-index {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

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

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

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
}

.cta-text-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
}

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

.cta-buttons-index .btn {
  min-width: 180px;
}

.cta-buttons-index .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: #ffffff;
}

.cta-buttons-index .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

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

.cookie-banner-text {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  max-width: 400px;
  text-align: center;
}

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

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

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

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

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

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

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

  .cookie-banner-text {
    order: 1;
    width: 100%;
  }

  .cookie-banner-buttons {
    order: 2;
    width: 100%;
    gap: var(--space-sm);
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
  }

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

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

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

  .cta-buttons-index .btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero-stats-index {
    gap: var(--space-md);
    padding: var(--space-md) 0;
  }

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

  .process-step-number-index {
    min-width: 60px;
  }
}

    .footer {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
  overflow: hidden;
}

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

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

.footer-about {
  display: block;
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-nav {
  display: block;
}

.footer-nav h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 0.875rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  display: block;
}

.footer-nav-list a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast), text-decoration var(--transition-fast);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-contact {
  display: block;
}

.footer-contact h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.footer-legal {
  display: block;
}

.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-legal-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 0.875rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-list li {
  display: block;
}

.footer-legal-list a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast), text-decoration var(--transition-fast);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(28, 25, 23, 0.06);
}

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .footer-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .footer-about {
    order: 1;
  }

  .footer-nav {
    order: 2;
  }

  .footer-contact {
    order: 3;
  }

  .footer-legal {
    order: 4;
  }

  .footer-copyright {
    order: 5;
  }
}
    

.category-page-dutch-conversation {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

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

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

@media (min-width: 1024px) {
  .hero-content-dutch-conversation {
    flex-direction: row;
    align-items: center;
  }
}

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

.hero-title-dutch-conversation {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  line-height: 1.2;
}

.hero-subtitle-dutch-conversation {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.hero-visual-dutch-conversation {
  flex: 1 1 45%;
  min-height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

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

.posts-header-dutch-conversation {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.posts-title-dutch-conversation {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
}

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

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

.card-dutch-conversation {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1 1 clamp(300px, 100%, 450px);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
}

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

.card-image-dutch-conversation {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.card-title-dutch-conversation {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  line-height: 1.4;
  font-weight: 600;
}

.card-description-dutch-conversation {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-dutch-conversation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  padding: clamp(0.75rem, 1.5vw, 1rem) 0;
  border-top: 1px solid #e7d4b5;
  border-bottom: 1px solid #e7d4b5;
}

.meta-reading-dutch-conversation,
.meta-level-dutch-conversation,
.meta-date-dutch-conversation {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-reading-dutch-conversation i,
.meta-level-dutch-conversation i,
.meta-date-dutch-conversation i {
  color: var(--color-primary);
  font-size: 0.9em;
}

.card-link-dutch-conversation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-base);
  align-self: flex-start;
  padding: 0.5rem 0;
}

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

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

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

.tips-header-dutch-conversation {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.tips-title-dutch-conversation {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
}

.tips-intro-dutch-conversation {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

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

.tip-card-dutch-conversation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 clamp(250px, 100%, 320px);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.tip-card-dutch-conversation:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tip-icon-dutch-conversation {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.tip-title-dutch-conversation {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.tip-text-dutch-conversation {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

.faq-header-dutch-conversation {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.faq-title-dutch-conversation {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
}

.faq-intro-dutch-conversation {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

.faq-list-dutch-conversation {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-dutch-conversation {
  background: var(--color-bg-card);
  border: 1px solid #e7d4b5;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question-dutch-conversation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  user-select: none;
  transition: background var(--transition-base);
}

.faq-question-dutch-conversation:hover {
  background: #fef3c7;
}

.faq-item-dutch-conversation details[open] > .faq-question-dutch-conversation {
  background: #fef3c7;
  border-bottom: 1px solid #e7d4b5;
}

.faq-item-dutch-conversation summary::marker {
  color: var(--color-primary);
  font-weight: 700;
}

.faq-item-dutch-conversation summary {
  list-style: none;
}

.faq-item-dutch-conversation summary::-webkit-details-marker {
  display: none;
}

.faq-item-dutch-conversation details > summary::before {
  content: '';
  display: inline-block;
  margin-right: 0.75rem;
  color: var(--color-primary);
  font-weight: 700;
  transition: transform var(--transition-base);
}

.faq-item-dutch-conversation details[open] > summary::before {
  transform: rotate(90deg);
}

.faq-answer-dutch-conversation {
  padding: 0 clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  animation: slideDown var(--transition-base) ease-out;
}

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

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

  .hero-visual-dutch-conversation {
    min-height: 280px;
  }

  .posts-grid-dutch-conversation {
    flex-direction: column;
  }

  .card-dutch-conversation {
    flex: 1 1 100%;
  }

  .tips-grid-dutch-conversation {
    flex-direction: column;
  }

  .tip-card-dutch-conversation {
    flex: 1 1 100%;
  }

  .faq-list-dutch-conversation {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .hero-content-dutch-conversation {
    gap: 4rem;
  }

  .posts-grid-dutch-conversation {
    gap: 2rem;
  }

  .card-dutch-conversation {
    flex: 1 1 calc(50% - 1rem);
  }

  .tips-grid-dutch-conversation {
    gap: 2rem;
  }

  .tip-card-dutch-conversation {
    flex: 1 1 calc(33.333% - 1.33rem);
  }
}

@media (min-width: 1440px) {
  .card-dutch-conversation {
    flex: 1 1 calc(25% - 1.5rem);
  }

  .tip-card-dutch-conversation {
    flex: 1 1 calc(33.333% - 1.33rem);
  }
}

.main-conversatietechnieken-voor-expats {
width: 100%;
}

.hero-section-conversatietechnieken-voor-expats {
background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
padding: clamp(2rem, 6vw, 4rem) 0;
overflow: hidden;
}

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

.breadcrumbs-conversatietechnieken-voor-expats {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
font-size: 0.875rem;
color: #a8a29e;
margin-bottom: 1rem;
}

.breadcrumbs-conversatietechnieken-voor-expats a {
color: #0d9488;
text-decoration: none;
transition: color 250ms ease-in-out;
}

.breadcrumbs-conversatietechnieken-voor-expats a:hover {
color: #0f766e;
text-decoration: underline;
}

.hero-text-conversatietechnieken-voor-expats {
flex: 1 1 50%;
max-width: 600px;
text-align: center;
}

.hero-title-conversatietechnieken-voor-expats {
color: #1c1917;
font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
margin-bottom: 1.5rem;
line-height: 1.2;
word-wrap: break-word;
overflow-wrap: break-word;
}

.hero-subtitle-conversatietechnieken-voor-expats {
color: #57534e;
font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
margin-bottom: 1.5rem;
line-height: 1.6;
}

.hero-meta-conversatietechnieken-voor-expats {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.75rem;
font-size: 0.875rem;
color: #a8a29e;
margin-top: 1.5rem;
}

.meta-item-conversatietechnieken-voor-expats {
color: #a8a29e;
}

.meta-divider-conversatietechnieken-voor-expats {
color: #d6d3d1;
}

.hero-image-conversatietechnieken-voor-expats {
flex: 1 1 50%;
max-width: 600px;
width: 100%;
}

.hero-img-conversatietechnieken-voor-expats {
width: 100%;
height: auto;
max-height: 450px;
object-fit: cover;
border-radius: 12px;
display: block;
box-shadow: 0 10px 15px rgba(28, 25, 23, 0.1);
}

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

.hero-text-conversatietechnieken-voor-expats,
.hero-image-conversatietechnieken-voor-expats {
flex: 1 1 100%;
max-width: 100%;
}

.hero-meta-conversatietechnieken-voor-expats {
flex-direction: column;
gap: 0.5rem;
}
}

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

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

.intro-text-conversatietechnieken-voor-expats {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-conversatietechnieken-voor-expats {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
margin-bottom: 1.5rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.intro-paragraph-conversatietechnieken-voor-expats {
color: #57534e;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.8;
margin-bottom: 1.5rem;
}

.intro-image-conversatietechnieken-voor-expats {
flex: 1 1 50%;
max-width: 50%;
}

.intro-img-conversatietechnieken-voor-expats {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: 12px;
display: block;
}

@media (max-width: 768px) {
.intro-content-conversatietechnieken-voor-expats {
flex-direction: column;
}

.intro-text-conversatietechnieken-voor-expats,
.intro-image-conversatietechnieken-voor-expats {
flex: 1 1 100%;
max-width: 100%;
}
}

.techniques-section-conversatietechnieken-voor-expats {
background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.techniques-content-conversatietechnieken-voor-expats {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.techniques-text-conversatietechnieken-voor-expats {
flex: 1 1 50%;
max-width: 50%;
}

.techniques-title-conversatietechnieken-voor-expats {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
margin-bottom: 1rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.techniques-intro-conversatietechnieken-voor-expats {
color: #57534e;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
margin-bottom: 2rem;
line-height: 1.6;
}

.techniques-list-conversatietechnieken-voor-expats {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.technique-item-conversatietechnieken-voor-expats {
background: #ffffff;
padding: 1.5rem;
border-radius: 8px;
border-left: 4px solid #0d9488;
}

.technique-number-conversatietechnieken-voor-expats {
color: #0d9488;
font-size: 1.75rem;
font-weight: 700;
display: block;
margin-bottom: 0.5rem;
}

.technique-name-conversatietechnieken-voor-expats {
color: #1c1917;
font-size: 1.125rem;
margin-bottom: 0.75rem;
font-weight: 600;
}

.technique-description-conversatietechnieken-voor-expats {
color: #57534e;
font-size: 0.95rem;
line-height: 1.6;
}

.techniques-image-conversatietechnieken-voor-expats {
flex: 1 1 50%;
max-width: 50%;
}

.techniques-img-conversatietechnieken-voor-expats {
width: 100%;
height: auto;
max-height: 450px;
object-fit: cover;
border-radius: 12px;
display: block;
}

@media (max-width: 768px) {
.techniques-content-conversatietechnieken-voor-expats {
flex-direction: column;
}

.techniques-text-conversatietechnieken-voor-expats,
.techniques-image-conversatietechnieken-voor-expats {
flex: 1 1 100%;
max-width: 100%;
}
}

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

.practice-content-conversatietechnieken-voor-expats {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.practice-image-conversatietechnieken-voor-expats {
flex: 1 1 50%;
max-width: 50%;
order: -1;
}

.practice-img-conversatietechnieken-voor-expats {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: 12px;
display: block;
}

.practice-text-conversatietechnieken-voor-expats {
flex: 1 1 50%;
max-width: 50%;
}

.practice-title-conversatietechnieken-voor-expats {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
margin-bottom: 1.5rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.practice-paragraph-conversatietechnieken-voor-expats {
color: #57534e;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.8;
margin-bottom: 1.5rem;
}

.practice-highlight-conversatietechnieken-voor-expats {
background: #fef3c7;
border-left: 4px solid #0d9488;
padding: 1.5rem;
border-radius: 8px;
margin-top: 2rem;
}

.highlight-text-conversatietechnieken-voor-expats {
color: #1c1917;
font-size: 0.95rem;
line-height: 1.6;
margin: 0;
}

@media (max-width: 768px) {
.practice-content-conversatietechnieken-voor-expats {
flex-direction: column;
}

.practice-image-conversatietechnieken-voor-expats,
.practice-text-conversatietechnieken-voor-expats {
flex: 1 1 100%;
max-width: 100%;
order: 0;
}
}

.obstacles-section-conversatietechnieken-voor-expats {
background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.obstacles-content-conversatietechnieken-voor-expats {
display: flex;
flex-direction: column;
gap: clamp(2rem, 4vw, 4rem);
}

.obstacles-title-conversatietechnieken-voor-expats {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
text-align: center;
margin-bottom: 1rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.obstacles-wrapper-conversatietechnieken-voor-expats {
display: flex;
flex-direction: row;
gap: clamp(1.5rem, 3vw, 2rem);
flex-wrap: wrap;
justify-content: center;
}

.obstacle-card-conversatietechnieken-voor-expats {
flex: 1 1 calc(50% - 1rem);
min-width: 250px;
max-width: 450px;
background: #ffffff;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
transition: box-shadow 250ms ease-in-out, transform 250ms ease-in-out;
}

.obstacle-card-conversatietechnieken-voor-expats:hover {
box-shadow: 0 10px 15px rgba(28, 25, 23, 0.1);
transform: translateY(-4px);
}

.obstacle-heading-conversatietechnieken-voor-expats {
color: #1c1917;
font-size: 1.125rem;
margin-bottom: 1rem;
font-weight: 600;
}

.obstacle-text-conversatietechnieken-voor-expats {
color: #57534e;
font-size: 0.95rem;
line-height: 1.6;
margin: 0;
}

.obstacles-image-conversatietechnieken-voor-expats {
width: 100%;
margin-top: 2rem;
}

.obstacles-img-conversatietechnieken-voor-expats {
width: 100%;
height: auto;
max-height: 400px;
object-fit: cover;
border-radius: 12px;
display: block;
}

@media (max-width: 768px) {
.obstacle-card-conversatietechnieken-voor-expats {
flex: 1 1 100%;
max-width: 100%;
}
}

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

.conclusion-content-conversatietechnieken-voor-expats {
max-width: 700px;
margin: 0 auto;
text-align: center;
}

.conclusion-title-conversatietechnieken-voor-expats {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
margin-bottom: 2rem;
word-wrap: break-word;
overflow-wrap: break-word;
}

.conclusion-text-conversatietechnieken-voor-expats {
color: #57534e;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.8;
margin-bottom: 2rem;
}

.conclusion-quote-conversatietechnieken-voor-expats {
background: #fef3c7;
padding: 2rem;
border-left: 4px solid #0d9488;
border-radius: 8px;
margin: 2rem 0;
font-style: italic;
}

.quote-text-conversatietechnieken-voor-expats {
color: #1c1917;
font-size: 1.125rem;
line-height: 1.6;
margin-bottom: 1rem;
}

.quote-author-conversatietechnieken-voor-expats {
color: #0d9488;
font-size: 0.95rem;
display: block;
font-style: normal;
font-weight: 600;
}

.conclusion-final-conversatietechnieken-voor-expats {
color: #57534e;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: 1.8;
margin-top: 2rem;
}

.related-section-conversatietechnieken-voor-expats {
background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.related-content-conversatietechnieken-voor-expats {
display: flex;
flex-direction: column;
gap: clamp(2rem, 4vw, 3rem);
}

.related-title-conversatietechnieken-voor-expats {
color: #1c1917;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
text-align: center;
margin: 0;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-subtitle-conversatietechnieken-voor-expats {
color: #57534e;
font-size: 1rem;
text-align: center;
margin: 0;
}

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

.related-card-conversatietechnieken-voor-expats {
flex: 1 1 calc(33.333% - 1.5rem);
min-width: 250px;
max-width: 380px;
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(28, 25, 23, 0.08);
text-decoration: none;
transition: box-shadow 250ms ease-in-out, transform 250ms ease-in-out;
display: flex;
flex-direction: column;
}

.related-card-conversatietechnieken-voor-expats:hover {
box-shadow: 0 10px 15px rgba(28, 25, 23, 0.1);
transform: translateY(-4px);
}

.related-card-image-conversatietechnieken-voor-expats {
width: 100%;
height: 200px;
overflow: hidden;
}

.related-card-img-conversatietechnieken-voor-expats {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.related-card-text-conversatietechnieken-voor-expats {
padding: 1.5rem;
flex: 1;
display: flex;
flex-direction: column;
}

.related-card-title-conversatietechnieken-voor-expats {
color: #1c1917;
font-size: 1.125rem;
margin-bottom: 0.75rem;
font-weight: 600;
line-height: 1.4;
}

.related-card-description-conversatietechnieken-voor-expats {
color: #57534e;
font-size: 0.9rem;
line-height: 1.6;
margin: 0;
flex-grow: 1;
}

@media (max-width: 1024px) {
.related-card-conversatietechnieken-voor-expats {
flex: 1 1 calc(50% - 1rem);
}
}

@media (max-width: 768px) {
.related-card-conversatietechnieken-voor-expats {
flex: 1 1 100%;
max-width: 100%;
}
}

.disclaimer-section-conversatietechnieken-voor-expats {
background: #ffffff;
padding: clamp(2rem, 6vw, 4rem) 0;
overflow: hidden;
border-top: 1px solid #e7d4b5;
}

.disclaimer-content-conversatietechnieken-voor-expats {
max-width: 800px;
margin: 0 auto;
}

.disclaimer-title-conversatietechnieken-voor-expats {
color: #1c1917;
font-size: 1.25rem;
margin-bottom: 1rem;
font-weight: 600;
}

.disclaimer-text-conversatietechnieken-voor-expats {
color: #57534e;
font-size: 0.875rem;
line-height: 1.7;
margin: 0;
}

@media (max-width: 768px) {
.disclaimer-section-conversatietechnieken-voor-expats {
padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.disclaimer-title-conversatietechnieken-voor-expats {
font-size: 1.125rem;
}
}

@media (max-width: 480px) {
.breadcrumbs-conversatietechnieken-voor-expats {
font-size: 0.75rem;
gap: 0.25rem;
}

.hero-meta-conversatietechnieken-voor-expats {
font-size: 0.8rem;
}

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

.main-dagelijkse-nederlandse-woorden {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.hero-section-dagelijkse-nederlandse-woorden {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-wrapper-dagelijkse-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-dagelijkse-nederlandse-woorden {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  flex-wrap: wrap;
}

.breadcrumbs-dagelijkse-nederlandse-woorden a {
  color: var(--color-primary);
  transition: color var(--transition-base);
}

.breadcrumbs-dagelijkse-nederlandse-woorden a:hover {
  color: var(--color-primary-hover);
}

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

.hero-badge-dagelijkse-nederlandse-woorden {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.hero-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
}

.hero-subtitle-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero-meta-dagelijkse-nederlandse-woorden {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  flex-wrap: wrap;
}

.meta-item-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
}

.meta-divider-dagelijkse-nederlandse-woorden {
  color: var(--color-text-muted);
}

.hero-image-wrapper-dagelijkse-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-dagelijkse-nederlandse-woorden {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

  .hero-text-wrapper-dagelijkse-nederlandse-woorden,
  .hero-image-wrapper-dagelijkse-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-dagelijkse-nederlandse-woorden {
    max-height: 300px;
  }
}

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

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

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

.intro-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.intro-text-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

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

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

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

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

.everyday-words-section-dagelijkse-nederlandse-woorden {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.everyday-words-content-dagelijkse-nederlandse-woorden {
  display: flex;
  flex-direction: column;
}

.everyday-words-header-dagelijkse-nederlandse-woorden {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.everyday-words-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.everyday-words-subtitle-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1.125rem);
}

.words-grid-dagelijkse-nederlandse-woorden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

.word-card-dagelijkse-nederlandse-woorden {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  max-width: 320px;
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.word-dutch-dagelijkse-nederlandse-woorden {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.word-meaning-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.word-usage-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .word-card-dagelijkse-nederlandse-woorden {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .word-card-dagelijkse-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.context-text-dagelijkse-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.context-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.context-text-block-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.context-situations-dagelijkse-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.situation-card-dagelijkse-nederlandse-woorden {
  background: #fef3c7;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.situation-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.situation-text-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.context-image-dagelijkse-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.context-image-dagelijkse-nederlandse-woorden {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .context-wrapper-dagelijkse-nederlandse-woorden {
    flex-direction: column;
  }

  .context-text-dagelijkse-nederlandse-woorden,
  .context-image-dagelijkse-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.phrases-section-dagelijkse-nederlandse-woorden {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.phrases-image-dagelijkse-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.phrases-image-dagelijkse-nederlandse-woorden {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.phrases-text-dagelijkse-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.phrases-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.phrases-intro-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.phrase-list-dagelijkse-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.phrase-item-dagelijkse-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.phrase-dutch-dagelijkse-nederlandse-woorden {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
}

.phrase-english-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-style: italic;
}

.phrase-note-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .phrases-content-dagelijkse-nederlandse-woorden {
    flex-direction: column;
  }

  .phrases-image-dagelijkse-nederlandse-woorden,
  .phrases-text-dagelijkse-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tips-content-dagelijkse-nederlandse-woorden {
  display: flex;
  flex-direction: column;
}

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

.tips-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.tips-subtitle-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1.125rem);
}

.tips-grid-dagelijkse-nederlandse-woorden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2rem);
  justify-content: center;
}

.tip-card-dagelijkse-nederlandse-woorden {
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 260px;
  max-width: 340px;
  background: #fef3c7;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
}

.tip-card-dagelijkse-nederlandse-woorden:hover {
  transform: translateY(-4px);
}

.tip-number-dagelijkse-nederlandse-woorden {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.tip-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.tip-text-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .tip-card-dagelijkse-nederlandse-woorden {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .tip-card-dagelijkse-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-mistakes-section-dagelijkse-nederlandse-woorden {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.common-mistakes-wrapper-dagelijkse-nederlandse-woorden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.common-mistakes-text-dagelijkse-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.common-mistakes-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.common-mistakes-intro-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.mistake-list-dagelijkse-nederlandse-woorden {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mistake-item-dagelijkse-nederlandse-woorden {
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.mistake-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.mistake-text-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.common-mistakes-image-dagelijkse-nederlandse-woorden {
  flex: 1 1 50%;
  max-width: 50%;
}

.common-mistakes-image-dagelijkse-nederlandse-woorden {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .common-mistakes-wrapper-dagelijkse-nederlandse-woorden {
    flex-direction: column;
  }

  .common-mistakes-text-dagelijkse-nederlandse-woorden,
  .common-mistakes-image-dagelijkse-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-dagelijkse-nederlandse-woorden {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.conclusion-text-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.conclusion-highlight-dagelijkse-nederlandse-woorden {
  background: var(--color-primary-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  border-left: 4px solid var(--color-primary);
}

.highlight-text-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.conclusion-closing-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  line-height: 1.8;
}

.disclaimer-section-dagelijkse-nederlandse-woorden {
  background: #f3f4f6;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-dagelijkse-nederlandse-woorden {
  background: #ffffff;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border-left: 4px solid #9ca3af;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.disclaimer-text-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

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

.related-content-dagelijkse-nederlandse-woorden {
  display: flex;
  flex-direction: column;
}

.related-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.related-subtitle-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.95rem, 1vw, 1.125rem);
}

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

.related-card-dagelijkse-nederlandse-woorden {
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  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;
}

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

.related-image-wrapper-dagelijkse-nederlandse-woorden {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-dagelijkse-nederlandse-woorden {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-dagelijkse-nederlandse-woorden {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.related-card-title-dagelijkse-nederlandse-woorden {
  color: #1c1917;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
  margin: 0;
}

.related-card-text-dagelijkse-nederlandse-woorden {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-dagelijkse-nederlandse-woorden {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-base);
  align-self: flex-start;
}

.related-card-link-dagelijkse-nederlandse-woorden:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-dagelijkse-nederlandse-woorden {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .related-card-dagelijkse-nederlandse-woorden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-dagelijkse-nederlandse-woorden {
    font-size: 0.8rem;
    gap: var(--space-xs);
  }

  .hero-meta-dagelijkse-nederlandse-woorden {
    font-size: 0.8rem;
  }

  .tip-card-dagelijkse-nederlandse-woorden {
    min-width: 240px;
  }
}

.main-nederlandse-grammatica-tips {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-nederlandse-grammatica-tips {
  background: #fffbeb;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-nederlandse-grammatica-tips a {
  color: #0d9488;
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-nederlandse-grammatica-tips a:hover {
  color: #0f766e;
  text-decoration: underline;
}

.breadcrumbs-nederlandse-grammatica-tips span {
  color: #a8a29e;
}

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

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

.hero-title-nederlandse-grammatica-tips {
  color: #1c1917;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.25rem);
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlandse-grammatica-tips {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.hero-meta-nederlandse-grammatica-tips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
}

.meta-item-nederlandse-grammatica-tips {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #57534e;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
}

.meta-item-nederlandse-grammatica-tips i {
  color: #0d9488;
  font-size: 1rem;
}

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

.hero-image-nederlandse-grammatica-tips {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

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

  .hero-text-wrapper-nederlandse-grammatica-tips,
  .hero-image-wrapper-nederlandse-grammatica-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-nederlandse-grammatica-tips {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

.intro-content-nederlandse-grammatica-tips {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.intro-text-wrapper-nederlandse-grammatica-tips {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-title-nederlandse-grammatica-tips {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-description-nederlandse-grammatica-tips {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlights-nederlandse-grammatica-tips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.highlight-card-nederlandse-grammatica-tips {
  flex: 1 1 150px;
  min-width: 140px;
  background: #fef3c7;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.highlight-card-nederlandse-grammatica-tips:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.highlight-number-nederlandse-grammatica-tips {
  color: #0d9488;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight-text-nederlandse-grammatica-tips {
  color: #57534e;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
}

.content-section-one-nederlandse-grammatica-tips,
.content-section-two-nederlandse-grammatica-tips,
.content-section-three-nederlandse-grammatica-tips,
.content-section-four-nederlandse-grammatica-tips,
.content-section-five-nederlandse-grammatica-tips {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-section-two-nederlandse-grammatica-tips {
  background: #fef3c7;
}

.content-section-four-nederlandse-grammatica-tips {
  background: #fef3c7;
}

.content-wrapper-one-nederlandse-grammatica-tips,
.content-wrapper-two-nederlandse-grammatica-tips,
.content-wrapper-three-nederlandse-grammatica-tips,
.content-wrapper-four-nederlandse-grammatica-tips,
.content-wrapper-five-nederlandse-grammatica-tips {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-nederlandse-grammatica-tips,
.content-text-two-nederlandse-grammatica-tips,
.content-text-three-nederlandse-grammatica-tips,
.content-text-four-nederlandse-grammatica-tips,
.content-text-five-nederlandse-grammatica-tips {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-nederlandse-grammatica-tips,
.content-image-two-nederlandse-grammatica-tips,
.content-image-three-nederlandse-grammatica-tips,
.content-image-four-nederlandse-grammatica-tips,
.content-image-five-nederlandse-grammatica-tips {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-nederlandse-grammatica-tips,
.content-title-two-nederlandse-grammatica-tips,
.content-title-three-nederlandse-grammatica-tips,
.content-title-four-nederlandse-grammatica-tips,
.content-title-five-nederlandse-grammatica-tips {
  color: #1c1917;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-text-description-one-nederlandse-grammatica-tips,
.content-text-description-two-nederlandse-grammatica-tips,
.content-text-description-three-nederlandse-grammatica-tips,
.content-text-description-four-nederlandse-grammatica-tips,
.content-text-description-five-nederlandse-grammatica-tips {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.rule-box-nederlandse-grammatica-tips {
  background: #fffbeb;
  border-left: 4px solid #0d9488;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.rule-text-nederlandse-grammatica-tips {
  color: #1c1917;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  margin: 0;
}

.content-example-nederlandse-grammatica-tips {
  color: #1c1917;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.example-list-nederlandse-grammatica-tips {
  list-style: none;
  padding: 0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.example-list-nederlandse-grammatica-tips li {
  color: #57534e;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.example-list-nederlandse-grammatica-tips li:before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: bold;
}

.content-tip-nederlandse-grammatica-tips {
  background: #f0fdf4;
  color: #166534;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.6;
  border-left: 4px solid #059669;
}

.content-image-nederlandse-grammatica-tips {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.content-comparison-nederlandse-grammatica-tips {
  background: #f5f5f5;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
}

.correct-example-nederlandse-grammatica-tips {
  display: block;
  color: #059669;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.incorrect-example-nederlandse-grammatica-tips {
  display: block;
  color: #dc2626;
  font-weight: 600;
}

.comparison-grid-nederlandse-grammatica-tips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.comparison-item-nederlandse-grammatica-tips {
  flex: 1 1 calc(50% - clamp(0.5rem, 1vw, 0.75rem));
  min-width: 150px;
  background: #f0fdf4;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  border-left: 4px solid #0d9488;
}

.comparison-label-nederlandse-grammatica-tips {
  color: #1c1917;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.comparison-text-nederlandse-grammatica-tips {
  color: #57534e;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.5;
  margin: 0;
}

.verb-table-nederlandse-grammatica-tips {
  background: #f5f5f5;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.verb-row-nederlandse-grammatica-tips {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #e0e0e0;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.verb-row-nederlandse-grammatica-tips:last-child {
  border-bottom: none;
}

.verb-pronoun-nederlandse-grammatica-tips {
  flex: 0 0 auto;
  min-width: 60px;
  color: #0d9488;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
}

.verb-form-nederlandse-grammatica-tips {
  flex: 1;
  color: #1c1917;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
}

@media (max-width: 768px) {
  .content-wrapper-one-nederlandse-grammatica-tips,
  .content-wrapper-two-nederlandse-grammatica-tips,
  .content-wrapper-three-nederlandse-grammatica-tips,
  .content-wrapper-four-nederlandse-grammatica-tips,
  .content-wrapper-five-nederlandse-grammatica-tips {
    flex-direction: column;
  }

  .content-text-one-nederlandse-grammatica-tips,
  .content-text-two-nederlandse-grammatica-tips,
  .content-text-three-nederlandse-grammatica-tips,
  .content-text-four-nederlandse-grammatica-tips,
  .content-text-five-nederlandse-grammatica-tips,
  .content-image-one-nederlandse-grammatica-tips,
  .content-image-two-nederlandse-grammatica-tips,
  .content-image-three-nederlandse-grammatica-tips,
  .content-image-four-nederlandse-grammatica-tips,
  .content-image-five-nederlandse-grammatica-tips {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .comparison-item-nederlandse-grammatica-tips {
    flex: 1 1 100%;
  }
}

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

.quote-content-nederlandse-grammatica-tips {
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-quote-nederlandse-grammatica-tips {
  background: transparent;
  border: none;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  max-width: 800px;
  margin: 0;
}

.quote-text-nederlandse-grammatica-tips {
  color: #ffffff;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.7;
  font-style: italic;
  font-weight: 500;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-author-nederlandse-grammatica-tips {
  color: #fef3c7;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-style: normal;
  font-weight: 600;
  display: block;
}

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

.conclusion-content-nederlandse-grammatica-tips {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-nederlandse-grammatica-tips {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-nederlandse-grammatica-tips {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  text-align: left;
}

.cta-section-nederlandse-grammatica-tips {
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  border: 2px solid #e0d5c7;
}

.cta-title-nederlandse-grammatica-tips {
  color: #1c1917;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
}

.cta-text-nederlandse-grammatica-tips {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cta-section-nederlandse-grammatica-tips .btn {
  display: inline-flex;
}

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

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

.related-header-nederlandse-grammatica-tips {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.related-title-nederlandse-grammatica-tips {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-nederlandse-grammatica-tips {
  color: #57534e;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

.related-cards-nederlandse-grammatica-tips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-nederlandse-grammatica-tips {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-nederlandse-grammatica-tips:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.related-card-image-nederlandse-grammatica-tips img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-nederlandse-grammatica-tips:hover .related-card-image-nederlandse-grammatica-tips img {
  transform: scale(1.05);
}

.related-card-text-nederlandse-grammatica-tips {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-nederlandse-grammatica-tips {
  color: #1c1917;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-nederlandse-grammatica-tips {
  color: #57534e;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.disclaimer-section-nederlandse-grammatica-tips {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
  border-top: 2px solid #f0e5d8;
}

.disclaimer-content-nederlandse-grammatica-tips {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: #fffbeb;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid #0d9488;
}

.disclaimer-icon-nederlandse-grammatica-tips {
  flex: 0 0 auto;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

.disclaimer-text-wrapper-nederlandse-grammatica-tips {
  flex: 1;
}

.disclaimer-title-nederlandse-grammatica-tips {
  color: #1c1917;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  font-weight: 700;
}

.disclaimer-text-nederlandse-grammatica-tips {
  color: #57534e;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .disclaimer-content-nederlandse-grammatica-tips {
    flex-direction: column;
  }

  .disclaimer-icon-nederlandse-grammatica-tips {
    align-self: center;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 var(--space-lg);
  }
}

.main-nederlandse-podcasts-audioboeken {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow: hidden;
}

.hero-section-nederlandse-podcasts-audioboeken {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f766e 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-section-nederlandse-podcasts-audioboeken .container {
  display: block !important;
}

.breadcrumbs-nederlandse-podcasts-audioboeken {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.breadcrumbs-nederlandse-podcasts-audioboeken a {
  color: #e0f2fe;
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

.breadcrumbs-nederlandse-podcasts-audioboeken a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumbs-nederlandse-podcasts-audioboeken span {
  color: #7dd3fc;
  font-size: 0.875rem;
}

.breadcrumbs-nederlandse-podcasts-audioboeken span:last-child {
  color: #ffffff;
  font-weight: 600;
}

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

.hero-text-wrapper-nederlandse-podcasts-audioboeken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-meta-nederlandse-podcasts-audioboeken {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.meta-item-nederlandse-podcasts-audioboeken {
  color: #e0f2fe;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-separator-nederlandse-podcasts-audioboeken {
  color: #7dd3fc;
}

.hero-title-nederlandse-podcasts-audioboeken {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin-bottom: var(--space-md);
  line-height: 1.15;
  font-weight: 700;
}

.hero-subtitle-nederlandse-podcasts-audioboeken {
  color: #e0f2fe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-image-wrapper-nederlandse-podcasts-audioboeken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-nederlandse-podcasts-audioboeken {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-wrapper-nederlandse-podcasts-audioboeken,
  .hero-image-wrapper-nederlandse-podcasts-audioboeken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-nederlandse-podcasts-audioboeken {
    font-size: 1.75rem;
  }

  .hero-image-nederlandse-podcasts-audioboeken {
    max-height: 300px;
  }
}

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

.intro-section-nederlandse-podcasts-audioboeken .container {
  display: block !important;
}

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

.intro-text-block-nederlandse-podcasts-audioboeken {
  flex: 1 1 60%;
  max-width: 60%;
}

.intro-title-nederlandse-podcasts-audioboeken {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-lg);
}

.intro-text-nederlandse-podcasts-audioboeken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.intro-highlight-nederlandse-podcasts-audioboeken {
  flex: 1 1 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.highlight-card-nederlandse-podcasts-audioboeken {
  background: #f8fafc;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid #0d9488;
}

.highlight-title-nederlandse-podcasts-audioboeken {
  color: #0f766e;
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.highlight-text-nederlandse-podcasts-audioboeken {
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

  .intro-text-block-nederlandse-podcasts-audioboeken,
  .intro-highlight-nederlandse-podcasts-audioboeken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-highlight-nederlandse-podcasts-audioboeken {
    gap: var(--space-md);
  }
}

.content-section-nederlandse-podcasts-audioboeken {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-nederlandse-podcasts-audioboeken .container {
  display: block !important;
}

.content-header-nederlandse-podcasts-audioboeken {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.content-section-title-nederlandse-podcasts-audioboeken {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-md);
}

.content-section-subtitle-nederlandse-podcasts-audioboeken {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 0;
}

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

.content-text-nederlandse-podcasts-audioboeken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-subsection-title-nederlandse-podcasts-audioboeken {
  color: #1e293b;
  font-size: 1.25rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.content-subsection-title-nederlandse-podcasts-audioboeken:first-child {
  margin-top: 0;
}

.content-text-block-nederlandse-podcasts-audioboeken {
  color: #334155;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.content-image-nederlandse-podcasts-audioboeken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-item-nederlandse-podcasts-audioboeken {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .content-text-nederlandse-podcasts-audioboeken,
  .content-image-nederlandse-podcasts-audioboeken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-item-nederlandse-podcasts-audioboeken {
    max-height: 300px;
  }
}

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

.features-section-nederlandse-podcasts-audioboeken .container {
  display: block !important;
}

.features-header-nederlandse-podcasts-audioboeken {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.features-title-nederlandse-podcasts-audioboeken {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-md);
}

.features-subtitle-nederlandse-podcasts-audioboeken {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 0;
}

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

.feature-card-nederlandse-podcasts-audioboeken {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 320px;
  background: #f8fafc;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.feature-card-nederlandse-podcasts-audioboeken:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon-nederlandse-podcasts-audioboeken {
  width: 50px;
  height: 50px;
  margin: 0 auto var(--space-md);
  background: #ccfbf1;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0d9488;
}

.feature-title-nederlandse-podcasts-audioboeken {
  color: #1e293b;
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.feature-text-nederlandse-podcasts-audioboeken {
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .feature-card-nederlandse-podcasts-audioboeken {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .feature-card-nederlandse-podcasts-audioboeken {
    flex: 1 1 100%;
  }
}

.strategy-section-nederlandse-podcasts-audioboeken {
  background: linear-gradient(135deg, #0f766e 0%, #1e3a8a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategy-section-nederlandse-podcasts-audioboeken .container {
  display: block !important;
}

.strategy-header-nederlandse-podcasts-audioboeken {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.strategy-subtitle-nederlandse-podcasts-audioboeken {
  color: #e0f2fe;
  font-size: 1rem;
  margin-bottom: 0;
}

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

.strategy-image-nederlandse-podcasts-audioboeken {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-image-item-nederlandse-podcasts-audioboeken {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.strategy-text-nederlandse-podcasts-audioboeken {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-step-title-nederlandse-podcasts-audioboeken {
  color: #ffffff;
  font-size: 1.125rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.strategy-step-title-nederlandse-podcasts-audioboeken:first-child {
  margin-top: 0;
}

.strategy-step-text-nederlandse-podcasts-audioboeken {
  color: #e0f2fe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .strategy-wrapper-nederlandse-podcasts-audioboeken {
    flex-direction: column;
  }

  .strategy-image-nederlandse-podcasts-audioboeken,
  .strategy-text-nederlandse-podcasts-audioboeken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .strategy-image-item-nederlandse-podcasts-audioboeken {
    max-height: 300px;
  }
}

.practical-section-nederlandse-podcasts-audioboeken {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-section-nederlandse-podcasts-audioboeken .container {
  display: block !important;
}

.practical-header-nederlandse-podcasts-audioboeken {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.practical-title-nederlandse-podcasts-audioboeken {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 0;
}

.practical-grid-nederlandse-podcasts-audioboeken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.practical-card-nederlandse-podcasts-audioboeken {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 260px;
  max-width: 300px;
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border-top: 3px solid #ea580c;
}

.practical-card-nederlandse-podcasts-audioboeken:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.practical-card-title-nederlandse-podcasts-audioboeken {
  color: #1e293b;
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.practical-card-text-nederlandse-podcasts-audioboeken {
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .practical-card-nederlandse-podcasts-audioboeken {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .practical-card-nederlandse-podcasts-audioboeken {
    flex: 1 1 100%;
  }
}

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

.quote-section-nederlandse-podcasts-audioboeken .container {
  display: block !important;
}

.featured-quote-nederlandse-podcasts-audioboeken {
  background: #f8fafc;
  border-left: 4px solid #0d9488;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-nederlandse-podcasts-audioboeken {
  color: #1e293b;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.quote-author-nederlandse-podcasts-audioboeken {
  color: #0d9488;
  font-size: 0.9375rem;
  font-weight: 600;
  display: block;
}

.resources-section-nederlandse-podcasts-audioboeken {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f766e 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.resources-section-nederlandse-podcasts-audioboeken .container {
  display: block !important;
}

.resources-header-nederlandse-podcasts-audioboeken {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.resources-subtitle-nederlandse-podcasts-audioboeken {
  color: #e0f2fe;
  font-size: 1rem;
  margin-bottom: 0;
}

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

.resources-text-nederlandse-podcasts-audioboeken {
  flex: 1 1 50%;
  max-width: 50%;
}

.resources-intro-nederlandse-podcasts-audioboeken {
  color: #e0f2fe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.resources-note-nederlandse-podcasts-audioboeken {
  color: #cffafe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.resources-subsection-title-nederlandse-podcasts-audioboeken {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.resources-combination-nederlandse-podcasts-audioboeken {
  color: #e0f2fe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 0;
}

.resources-image-nederlandse-podcasts-audioboeken {
  flex: 1 1 50%;
  max-width: 50%;
}

.resources-image-item-nederlandse-podcasts-audioboeken {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .resources-wrapper-nederlandse-podcasts-audioboeken {
    flex-direction: column;
  }

  .resources-text-nederlandse-podcasts-audioboeken,
  .resources-image-nederlandse-podcasts-audioboeken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .resources-image-item-nederlandse-podcasts-audioboeken {
    max-height: 300px;
  }
}

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

.conclusion-section-nederlandse-podcasts-audioboeken .container {
  display: block !important;
}

.conclusion-content-nederlandse-podcasts-audioboeken {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-nederlandse-podcasts-audioboeken {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.conclusion-text-nederlandse-podcasts-audioboeken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.conclusion-cta-nederlandse-podcasts-audioboeken {
  background: #f8fafc;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid #0d9488;
}

.cta-text-nederlandse-podcasts-audioboeken {
  color: #1e293b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.disclaimer-section-nederlandse-podcasts-audioboeken {
  background: #fef3c7;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-section-nederlandse-podcasts-audioboeken .container {
  display: block !important;
}

.disclaimer-content-nederlandse-podcasts-audioboeken {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid #ea580c;
}

.disclaimer-title-nederlandse-podcasts-audioboeken {
  color: #1e293b;
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.disclaimer-text-nederlandse-podcasts-audioboeken {
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.related-section-nederlandse-podcasts-audioboeken .container {
  display: block !important;
}

.related-header-nederlandse-podcasts-audioboeken {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-nederlandse-podcasts-audioboeken {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 0;
}

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

.related-card-nederlandse-podcasts-audioboeken {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.related-image-wrapper-nederlandse-podcasts-audioboeken {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.related-image-nederlandse-podcasts-audioboeken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-nederlandse-podcasts-audioboeken:hover .related-image-nederlandse-podcasts-audioboeken {
  transform: scale(1.05);
}

.related-card-content-nederlandse-podcasts-audioboeken {
  padding: var(--space-lg);
}

.related-card-title-nederlandse-podcasts-audioboeken {
  color: #1e293b;
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.related-card-text-nederlandse-podcasts-audioboeken {
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.related-card-link-nederlandse-podcasts-audioboeken {
  color: #0d9488;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color var(--transition-base);
  display: inline-block;
}

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

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

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

@media (max-width: 768px) {
  h1, h2, h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-meta-nederlandse-podcasts-audioboeken {
    justify-content: center;
  }
}

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-accent: #f59e0b;
  --font-primary: 'Sora', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --transition-base: 250ms ease-in-out;
}

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

.dutch-expat-narrative-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow: hidden;
}

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

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

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

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-intro-about {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  line-height: 1.7;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
}

.foundation-section-about {
  background: var(--color-bg-primary);
  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;
}

.section-tag-about {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.foundation-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.foundation-text-about {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 800px;
  margin: 2rem auto;
}

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 360px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 10px;
  border-left: 4px solid var(--color-accent);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.expertise-card-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.2);
}

.card-icon-about {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.card-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.card-text-about {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

.journey-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.journey-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.journey-intro-about {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.journey-split-about {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-top: 2rem;
}

.journey-text-about {
  flex: 1 1 45%;
  min-width: 280px;
}

.journey-text-about p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.journey-text-about p:last-child {
  margin-bottom: 0;
}

.journey-image-about {
  flex: 1 1 45%;
  min-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .journey-split-about {
    flex-direction: column;
  }

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

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

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

.approach-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

.step-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
}

.step-content-about {
  flex: 1;
}

.step-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.step-text-about {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.impact-section-about {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.impact-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.impact-intro-about {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.impact-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  margin-top: 2rem;
}

.featured-quote-about {
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-accent);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-about {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--color-accent);
  font-weight: 600;
  display: block;
}

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

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

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

.testimonial-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.testimonial-subtitle-about {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.testimonial-card-about {
  flex: 1 1 320px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 10px;
  border-top: 3px solid var(--color-accent);
  transition: transform var(--transition-base);
}

.testimonial-card-about:hover {
  transform: translateY(-4px);
}

.testimonial-text-about {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testimonial-author-about {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--color-accent);
  font-weight: 700;
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.disclaimer-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

  .step-number-about {
    min-width: 60px;
  }

  .expertise-cards-about {
    flex-direction: column;
  }

  .expertise-card-about {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-content-about {
    gap: 2rem;
  }

  .expertise-cards-about {
    gap: 1.5rem;
  }
}

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

  .foundation-section-about {
    padding: 5rem 0 6rem;
  }

  .journey-section-about {
    padding: 5rem 0 6rem;
  }

  .approach-section-about {
    padding: 5rem 0 6rem;
  }

  .impact-section-about {
    padding: 5rem 0 6rem;
  }

  .testimonial-section-about {
    padding: 5rem 0 6rem;
  }

  .disclaimer-section-about {
    padding: 3rem 0 4rem;
  }
}

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

.faq-hero {
  background-color: var(--color-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  position: relative;
}

.faq-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: var(--color-primary-hover);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-primary-light);
  margin: 0;
  line-height: 1.6;
}

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

  .faq-hero-title {
    margin-bottom: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: 4rem var(--space-lg);
  }
}

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

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

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

.faq-item {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-card);
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  transition: background-color var(--transition-fast);
}

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

.faq-question-text {
  flex: 1;
  line-height: 1.5;
}

.faq-toggle-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-left: var(--space-md);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.faq-active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
  transition: max-height var(--transition-base);
}

.faq-item.faq-active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  padding: var(--space-lg) var(--space-md);
}

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

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

  .faq-question {
    padding: var(--space-lg);
    font-size: 1.0625rem;
  }

  .faq-answer p {
    padding: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: 4rem var(--space-lg);
  }
}

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

.faq-cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -5%;
  width: 350px;
  height: 350px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}

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

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-bg-tertiary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.faq-cta-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.6;
}

.faq-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
}

.faq-cta-primary,
.faq-cta-secondary {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  font-weight: 600;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.5;
}

.faq-cta-primary {
  background-color: var(--color-bg-tertiary);
  color: var(--color-secondary);
}

.faq-cta-primary:hover {
  background-color: var(--color-bg-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.faq-cta-secondary {
  background-color: transparent;
  color: var(--color-bg-tertiary);
  border-color: var(--color-bg-tertiary);
}

.faq-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

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

  .faq-cta-subtitle {
    margin-bottom: var(--space-2xl);
  }

  .faq-cta-buttons {
    flex-direction: row;
    gap: var(--space-lg);
  }

  .faq-cta-primary,
  .faq-cta-secondary {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: 4rem var(--space-lg);
  }
}

.services-page {
  width: 100%;
}

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

.services-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: -0.5px;
}

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

.services-content {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

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

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

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid #f0ede8;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-primary-light);
}

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

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.25rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--space-md) 0;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card-features li {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  padding-left: var(--space-md);
  position: relative;
}

.service-card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

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

.services-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
}

.services-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.25rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--space-lg) 0;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
}

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

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

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

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

  .service-card {
    padding: var(--space-xl);
  }

  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

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

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

  .service-card {
    padding: var(--space-xl);
  }

  .services-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

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

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

.legal-guide .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.legal-guide h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.legal-guide .last-updated {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

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

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

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

.legal-guide li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

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

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

.legal-guide .contact-section h2 {
  color: var(--color-text-primary);
  margin-top: 0;
}

.legal-guide .contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

.legal-guide .contact-section strong {
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .legal-guide .container {
    padding: 0 var(--space-lg);
  }

  .legal-guide .content {
    padding: var(--space-3xl) 0;
  }

  .legal-guide h2 {
    margin-top: var(--space-3xl);
  }
}

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

: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-hover: #c2410c;
  --font-primary: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.04);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 10px 15px rgba(28, 25, 23, 0.1);
  --shadow-xl: 0 20px 25px rgba(28, 25, 23, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --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;
}

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

html,
body {
  width: 100%;
  height: 100%;
}

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

.thank-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.thank-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  width: 100%;
  overflow: hidden;
}

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

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

.thank-wrapper {
  text-align: center;
  animation: slideUp 0.6s ease-out;
}

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

.thank-icon {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  animation: scaleIn 0.5s ease-out 0.1s both;
}

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

.thank-icon svg {
  filter: drop-shadow(0 4px 12px rgba(13, 148, 136, 0.15));
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
  animation: slideUp 0.6s ease-out 0.1s both;
}

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

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
  animation: slideUp 0.6s ease-out 0.2s both;
}

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

.thank-benefits {
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
  animation: slideUp 0.6s ease-out 0.4s both;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
}

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

.thank-next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  animation: slideUp 0.6s ease-out 0.5s both;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
  animation: slideUp 0.6s ease-out 0.6s 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);
}

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

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

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

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

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

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

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

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

  .benefit-item {
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
  }

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

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

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

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

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

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

@media (min-width: 1440px) {
  .thank-section {
    padding: var(--space-3xl) 0;
  }

  .container {
    padding: 0;
  }
}

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

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

html {
  scroll-behavior: smooth;
}

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

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.content {
  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 {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  position: absolute;
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  letter-spacing: -0.02em;
  z-index: 1;
}

.error-illustration {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.dutch-windmill {
  position: relative;
  width: 120px;
  height: 140px;
}

.windmill-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 60px;
  background-color: var(--color-primary);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.windmill-body {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 35px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-lg);
  clip-path: polygon(0 30%, 0 100%, 100% 100%, 100% 30%, 85% 0, 15% 0);
}

.windmill-roof {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 20px;
  background-color: var(--color-secondary);
  clip-path: polygon(20% 100%, 0 40%, 50% 0, 100% 40%, 80% 100%);
}

.windmill-blades {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
}

.blade {
  position: absolute;
  width: 15px;
  height: 40px;
  background-color: var(--color-primary);
  left: 50%;
  top: 50%;
  transform-origin: 50% -20px;
  border-radius: var(--radius-sm);
  animation: spin 4s linear infinite;
}

.blade-1 {
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
  animation-delay: 0s;
}

.blade-2 {
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
  animation-delay: -1s;
}

.blade-3 {
  transform: translateX(-50%) translateY(-50%) rotate(180deg);
  animation-delay: -2s;
}

.blade-4 {
  transform: translateX(-50%) translateY(-50%) rotate(270deg);
  animation-delay: -3s;
}

@keyframes spin {
  from {
    transform: translateX(-50%) translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) translateY(-50%) rotate(360deg);
  }
}

.question-mark {
  position: absolute;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--color-secondary);
  right: -20px;
  top: -30px;
  animation: float 3s ease-in-out infinite;
}

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

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

.error-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

.error-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.error-description {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: var(--space-sm) 0;
}

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

.suggestions-label {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

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

.suggestions-list li {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.bullet {
  color: var(--color-primary);
  font-weight: 700;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: 2px solid var(--color-primary);
  margin-top: var(--space-lg);
}

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

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

.btn-icon {
  font-size: 1.25em;
  display: inline-flex;
  align-items: center;
}

.btn-text {
  display: inline;
}

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

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

  .error-visual {
    height: 320px;
  }

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

  .suggestions-list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .suggestions-list li {
    flex: 0 1 auto;
  }
}

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

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

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

  .error-visual {
    height: 340px;
  }

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

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .error-visual {
    height: 360px;
  }

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

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

  .question-mark {
    animation: none;
  }

  .btn-home:hover {
    transform: none;
  }

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

@media (max-width: 480px) {
  .error-page {
    min-height: auto;
  }

  .error-section {
    padding: var(--space-lg) var(--space-sm);
    min-height: auto;
  }

  .error-visual {
    height: 240px;
  }

  .btn-home {
    width: 100%;
  }
}

.contact-inquiries-page {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.contact-inquiries-hero {
  background-color: var(--color-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-inquiries-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-inquiries-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-bg-tertiary);
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.contact-inquiries-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-bg-tertiary);
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .contact-inquiries-hero {
    padding: 4rem 1rem;
  }
}

@media (min-width: 1024px) {
  .contact-inquiries-hero {
    padding: 5rem 1rem;
  }
}

.contact-inquiries-main {
  background-color: var(--color-bg-primary);
  padding: 2rem 1rem;
  overflow: hidden;
}

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

.contact-inquiries-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

.contact-inquiries-form-wrapper {
  width: 100%;
}

.contact-inquiries-info-wrapper {
  width: 100%;
}

.contact-inquiries-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
}

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

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

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

.contact-inquiries-input,
.contact-inquiries-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-tertiary);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.contact-inquiries-input:focus,
.contact-inquiries-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.contact-inquiries-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-inquiries-submit {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  margin-top: 0.5rem;
}

.contact-inquiries-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

.contact-inquiries-privacy-note {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0.5rem 0 0 0;
}

.contact-inquiries-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.contact-inquiries-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
}

.contact-inquiries-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-inquiries-info-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-inquiries-info-content {
  flex: 1;
  padding-top: 0.25rem;
}

.contact-inquiries-info-label {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 0.25rem 0;
}

.contact-inquiries-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-inquiries-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.contact-inquiries-info-divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 1.5rem 0;
}

.contact-inquiries-info-box {
  background-color: var(--color-primary-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.contact-inquiries-info-box-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 1rem 0;
}

.contact-inquiries-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-inquiries-info-list-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
}

.contact-inquiries-info-list-item:last-child {
  margin-bottom: 0;
}

.contact-inquiries-list-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .contact-inquiries-main {
    padding: 3rem 1rem;
  }

  .contact-inquiries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-inquiries-form-wrapper {
    width: 100%;
  }

  .contact-inquiries-info-wrapper {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .contact-inquiries-main {
    padding: 4rem 1rem;
  }

  .contact-inquiries-grid {
    gap: 4rem;
  }

  .contact-inquiries-form-wrapper {
    max-width: 550px;
  }
}

@media (min-width: 1440px) {
  .contact-inquiries-main {
    padding: 5rem 1rem;
  }
}