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

:root {
  
  --color-bg-primary: #022c22;
  --color-bg-secondary: #064e3b;
  --color-bg-tertiary: #065f46;
  --color-bg-card: rgba(16, 185, 129, 0.05);
  --color-bg-card-hover: rgba(16, 185, 129, 0.08);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #a7f3d0;
  --color-text-muted: #6ee7b7;
  --color-text-tertiary: #78d4ae;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #6ee7b7;
  --color-secondary: #14b8a6;
  --color-secondary-hover: #0d9488;
  
  
  --color-accent: #34d399;
  --color-accent-dark: #10b981;
  
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.35);
  --shadow-2xl: 0 16px 32px rgba(0, 0, 0, 0.4);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.3px;
  overflow-x: hidden;
}

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

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-lg);
}

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

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

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

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

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

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

p.secondary {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

p.muted {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

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

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

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

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

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

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

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

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

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

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

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

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
}

section {
  padding: var(--space-4xl) var(--space-lg);
}

section.hero {
  padding: var(--space-5xl) var(--space-lg);
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

section.feature {
  padding: var(--space-4xl) var(--space-lg);
  background: var(--color-bg-secondary);
}

section.light-section {
  padding: var(--space-4xl) var(--space-lg);
  background: rgba(16, 185, 129, 0.03);
}

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

.card:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-compact {
  background: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-base);
}

.card-compact:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

.btn-outline:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--color-primary-hover);
  color: var(--color-primary-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  padding: var(--space-sm) var(--space-lg);
}

.btn-ghost:hover {
  background: rgba(16, 185, 129, 0.1);
}

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

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

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

input, textarea, select {
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-base);
}

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

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  background: rgba(16, 185, 129, 0.05);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-primary-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

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

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

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

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  margin: var(--space-xl) 0;
}

.divider-vertical {
  width: 1px;
  height: var(--space-lg);
  background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  margin: 0 var(--space-lg);
}

.list {
  list-style: none;
}

.list-item {
  padding: var(--space-md) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.list-item::before {
  content: '';
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.uppercase {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.line-through {
  text-decoration: line-through;
}

.underline {
  text-decoration: underline;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

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

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

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

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  section {
    padding: var(--space-3xl) var(--space-lg);
  }
  
  section.hero {
    padding: var(--space-4xl) var(--space-lg);
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .flex-between {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  section {
    padding: var(--space-2xl) var(--space-md);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
  }
  
  .card {
    padding: var(--space-md);
  }
}

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

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

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

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

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
  }
}

.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-slideInLeft {
  animation: slideInLeft var(--transition-base) ease-out;
}

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

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

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

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

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

.btn:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.header-taal-brug {
  background: var(--color-bg-primary);
  padding: 1rem 0;
  position: static;
  z-index: var(--z-sticky);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

.header-taal-brug-nav-link:hover::after {
  width: 100%;
}

.header-taal-brug-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

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

.header-taal-brug-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-base);
  padding: 0.5rem;
  z-index: var(--z-sticky);
}

.header-taal-brug-mobile-toggle:hover {
  color: var(--color-text-primary);
}

.header-taal-brug-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-secondary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: calc(var(--z-sticky) - 1);
  padding-top: 80px;
}

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

.header-taal-brug-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.header-taal-brug-mobile-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
}

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

.header-taal-brug-mobile-close:hover {
  color: var(--color-text-primary);
}

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

.header-taal-brug-mobile-link {
  padding: 1rem 1.5rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  transition: all var(--transition-base);
  border-left: 3px solid transparent;
  display: block;
}

.header-taal-brug-mobile-link:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-text-primary);
  border-left-color: var(--color-accent);
}

.header-taal-brug-mobile-cta {
  margin: 1.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
  display: block;
  border: none;
}

.header-taal-brug-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .header-taal-brug-container {
    padding: 0 clamp(1.5rem, 4vw, 2.5rem);
  }

  .header-taal-brug-desktop-nav {
    display: flex;
  }

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

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

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

@media (min-width: 1024px) {
  .header-taal-brug-logo-text {
    font-size: 1.5rem;
  }

  .header-taal-brug-nav-link {
    font-size: 0.95rem;
  }

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

    .dutch-learning-hub {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

.featured-tag-index {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  border: 1px solid rgba(16, 185, 129, 0.25);
  margin-bottom: var(--space-md);
}

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

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

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.featured-card-index:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.featured-image-wrapper-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

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

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

.featured-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0;
}

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

.featured-card-link-index {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

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

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

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

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

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

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

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

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 360px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.benefit-card-index:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-icon-index {
  font-size: 2.5rem;
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
}

.benefit-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  margin: 0;
}

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

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

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

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

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

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

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

.topic-item-index {
  flex: 1 1 200px;
  max-width: 300px;
  background: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.topic-item-index:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.topic-number-index {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.topic-name-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  margin: 0;
}

.topic-desc-index {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

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

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

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

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

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

.approach-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.approach-step-index {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  transition: all var(--transition-base);
}

.approach-step-index:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.step-number-index {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: 50px;
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.stat-card-index {
  flex: 1 1 200px;
  max-width: 280px;
  background: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.stat-card-index:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

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

.stat-label-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
}

.stat-desc-index {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

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

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

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

.cta-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.2;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

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

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

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

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

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

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

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
}

.faq-list-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.faq-item-index {
  background: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all var(--transition-base);
}

.faq-item-index:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-md);
}

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

.faq-q-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  margin: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-bg-secondary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

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

.cookie-banner-text-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.5;
  margin: 0;
  flex: 1 1 200px;
}

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

.cookie-btn-accept-index {
  padding: 0.625rem 1.25rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.cookie-btn-accept-index:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}

.cookie-btn-decline-index {
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.cookie-btn-decline-index:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.5);
  color: var(--color-text-primary);
}

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

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

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

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

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

  .cta-image-block-index {
    flex: 1 1 100%;
    min-height: 250px;
    max-height: 350px;
  }

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

  .step-number-index {
    font-size: 1.5rem;
    min-width: 40px;
  }

  .cookie-banner {
    flex-direction: column;
    justify-content: center;
  }

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

@media (max-width: 480px) {
  .featured-cards-index,
  .benefits-grid-index,
  .benefits-grid-index,
  .topics-grid-index,
  .stats-grid-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .featured-card-index,
  .benefit-card-index,
  .topic-item-index,
  .stat-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

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

  .cookie-banner {
    gap: var(--space-sm);
    padding: var(--space-md);
  }

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

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

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

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

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

.footer-about {
  display: block;
}

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

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

.footer-nav {
  display: block;
}

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

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

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

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

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

.footer-contact {
  display: block;
}

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

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

.footer-legal {
  display: block;
}

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

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

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

.footer-legal-list a {
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
}

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

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

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

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

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

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

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

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

  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid rgba(110, 231, 183, 0.1);
  }
}

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

  .footer-nav-list,
  .footer-legal-list {
    gap: clamp(0.5rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  }
}
    

.category-page-dutch-daily-life {
  background: #ffffff;
  color: #1e293b;
  overflow-x: hidden;
}

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

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

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

.hero-header-dutch-daily-life {
  flex: 1 1 45%;
  min-width: 300px;
}

.hero-title-dutch-daily-life {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-subtitle-dutch-daily-life {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0;
}

.hero-image-dutch-daily-life {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-dutch-daily-life img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 10px 13px rgba(0, 0, 0, 0.05);
  max-height: 450px;
}

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

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

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

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

.posts-subtitle-dutch-daily-life {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.6;
}

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

.card-dutch-daily-life {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.card-dutch-daily-life:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-dutch-daily-life img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  max-height: 240px;
}

.card-content-dutch-daily-life {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.card-title-dutch-daily-life {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

.card-description-dutch-daily-life {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.card-meta-dutch-daily-life {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
}

.meta-item-dutch-daily-life {
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.meta-item-dutch-daily-life i {
  color: #64748b;
  font-size: 0.75rem;
}

.card-link-dutch-daily-life {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

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

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

.context-content-dutch-daily-life {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.context-header-dutch-daily-life {
  text-align: center;
}

.context-title-dutch-daily-life {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
}

.context-text-dutch-daily-life {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.context-paragraph-dutch-daily-life {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
}

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

.focus-content-dutch-daily-life {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.focus-header-dutch-daily-life {
  text-align: center;
}

.focus-title-dutch-daily-life {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.2;
}

.focus-subtitle-dutch-daily-life {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.6;
}

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

.focus-item-dutch-daily-life {
  flex: 1 1 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.focus-item-dutch-daily-life:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.focus-icon-dutch-daily-life {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2563eb;
  line-height: 1;
}

.focus-item-title-dutch-daily-life {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.3rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
}

.focus-item-text-dutch-daily-life {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .hero-content-dutch-daily-life {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-header-dutch-daily-life {
    flex: 1 1 100%;
  }

  .hero-image-dutch-daily-life {
    flex: 1 1 100%;
  }

  .hero-image-dutch-daily-life img {
    max-height: 350px;
  }
}

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

  .posts-section-dutch-daily-life {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .context-section-dutch-daily-life {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .focus-section-dutch-daily-life {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

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

  .posts-grid-dutch-daily-life {
    flex-direction: column;
    align-items: center;
  }

  .focus-grid-dutch-daily-life {
    flex-direction: column;
    align-items: center;
  }

  .focus-item-dutch-daily-life {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

  .posts-title-dutch-daily-life {
    font-size: 1.3rem;
  }

  .context-title-dutch-daily-life {
    font-size: 1.3rem;
  }

  .focus-title-dutch-daily-life {
    font-size: 1.3rem;
  }

  .card-dutch-daily-life {
    padding: 1rem;
  }

  .card-meta-dutch-daily-life {
    gap: 0.5rem;
  }

  .focus-item-dutch-daily-life {
    padding: 1.25rem;
  }
}

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

.hero-section-gesprekken-starten {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-gesprekken-starten {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  flex-wrap: wrap;
}

.breadcrumbs-gesprekken-starten a {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.breadcrumbs-gesprekken-starten a:hover {
  color: #6ee7b7;
}

.breadcrumbs-gesprekken-starten span {
  color: #6ee7b7;
}

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

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

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

.hero-subtitle-gesprekken-starten {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #a7f3d0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-gesprekken-starten {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-item-gesprekken-starten {
  color: #6ee7b7;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-divider-gesprekken-starten {
  color: #6ee7b7;
}

.hero-image-wrapper-gesprekken-starten {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: 12px;
}

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

@media (max-width: 1024px) {
  .hero-content-gesprekken-starten {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-text-wrapper-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-wrapper-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

  .breadcrumbs-gesprekken-starten {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .hero-image-gesprekken-starten {
    max-height: 300px;
  }
}

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

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

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

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

.intro-title-gesprekken-starten {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-gesprekken-starten {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-gesprekken-starten {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: 12px;
}

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

@media (max-width: 1024px) {
  .intro-content-gesprekken-starten {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .intro-text-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .intro-section-gesprekken-starten {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .intro-img-gesprekken-starten {
    max-height: 300px;
  }
}

.basics-section-gesprekken-starten {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.basics-text-gesprekken-starten {
  flex: 1 1 50%;
  max-width: 50%;
}

.basics-title-gesprekken-starten {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.basics-paragraph-gesprekken-starten {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.basics-list-gesprekken-starten {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.list-item-gesprekken-starten {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 4px;
}

.list-label-gesprekken-starten {
  display: block;
  font-weight: 600;
  color: #1e293b;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  margin-bottom: 0.5rem;
}

.list-explanation-gesprekken-starten {
  font-size: clamp(0.875rem, 0.95vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.basics-image-gesprekken-starten {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: 12px;
}

.basics-img-gesprekken-starten {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .basics-content-gesprekken-starten {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .basics-text-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .basics-image-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .basics-section-gesprekken-starten {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .basics-img-gesprekken-starten {
    max-height: 300px;
  }
}

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

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

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

.situations-image-gesprekken-starten {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: 12px;
  order: -1;
}

.situations-img-gesprekken-starten {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.situations-text-gesprekken-starten {
  flex: 1 1 50%;
  max-width: 50%;
}

.situations-title-gesprekken-starten {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.situations-paragraph-gesprekken-starten {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.situations-box-gesprekken-starten {
  background: #f9fafb;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.situations-subheading-gesprekken-starten {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.situations-detail-gesprekken-starten {
  font-size: clamp(0.875rem, 0.95vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1024px) {
  .situations-content-gesprekken-starten {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .situations-image-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .situations-text-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .situations-section-gesprekken-starten {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .situations-img-gesprekken-starten {
    max-height: 300px;
  }
}

.techniques-section-gesprekken-starten {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.techniques-title-gesprekken-starten {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-paragraph-gesprekken-starten {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-points-gesprekken-starten {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.point-item-gesprekken-starten {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.point-number-gesprekken-starten {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
}

.point-text-gesprekken-starten {
  flex: 1;
}

.point-title-gesprekken-starten {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.point-description-gesprekken-starten {
  font-size: clamp(0.875rem, 0.95vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-image-gesprekken-starten {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: 12px;
}

.techniques-img-gesprekken-starten {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .techniques-content-gesprekken-starten {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .techniques-text-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .techniques-image-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .techniques-section-gesprekken-starten {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .techniques-img-gesprekken-starten {
    max-height: 300px;
  }

  .point-item-gesprekken-starten {
    gap: 1rem;
  }
}

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

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

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

.practical-title-gesprekken-starten {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-intro-gesprekken-starten {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #374151;
  line-height: 1.7;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.exercises-wrapper-gesprekken-starten {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.exercise-card-gesprekken-starten {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #f9fafb;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exercise-number-gesprekken-starten {
  font-size: 0.875rem;
  color: #10b981;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.exercise-title-gesprekken-starten {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: #1e293b;
  font-weight: 600;
  margin: 0;
}

.exercise-text-gesprekken-starten {
  font-size: clamp(0.875rem, 0.95vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1024px) {
  .exercise-card-gesprekken-starten {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .practical-section-gesprekken-starten {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .exercise-card-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-gesprekken-starten {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.conclusion-title-gesprekken-starten {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-gesprekken-starten {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-highlight-gesprekken-starten {
  background: #10b981;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-gesprekken-starten {
  color: #ffffff;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-image-gesprekken-starten {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: 12px;
}

.conclusion-img-gesprekken-starten {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .conclusion-content-gesprekken-starten {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .conclusion-text-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-image-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .conclusion-section-gesprekken-starten {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .conclusion-img-gesprekken-starten {
    max-height: 300px;
  }
}

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

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

.disclaimer-content-gesprekken-starten {
  max-width: 800px;
  margin: 0 auto;
  background: #f9fafb;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid #10b981;
  border-radius: 4px;
}

.disclaimer-title-gesprekken-starten {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-gesprekken-starten {
  font-size: clamp(0.875rem, 0.95vw, 1rem);
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .disclaimer-section-gesprekken-starten {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }
}

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

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

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

.related-title-gesprekken-starten {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-gesprekken-starten {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-gesprekken-starten:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

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

.related-card-img-gesprekken-starten {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-gesprekken-starten:hover .related-card-img-gesprekken-starten {
  transform: scale(1.05);
}

.related-card-body-gesprekken-starten {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-gesprekken-starten {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1e293b;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.related-card-description-gesprekken-starten {
  font-size: clamp(0.875rem, 0.95vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-link-gesprekken-starten {
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(0.875rem, 0.95vw, 1rem);
}

.related-card-link-gesprekken-starten:hover {
  color: #059669;
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .related-section-gesprekken-starten {
    padding: clamp(2rem, 6vw, 3.5rem) 0;
  }

  .related-card-gesprekken-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-gesprekken-starten {
    padding: 2rem 0;
  }

  .breadcrumbs-gesprekken-starten {
    font-size: 0.75rem;
  }

  .intro-section-gesprekken-starten,
  .basics-section-gesprekken-starten,
  .situations-section-gesprekken-starten,
  .techniques-section-gesprekken-starten,
  .practical-section-gesprekken-starten,
  .conclusion-section-gesprekken-starten,
  .disclaimer-section-gesprekken-starten,
  .related-section-gesprekken-starten {
    padding: 2rem 0;
  }
}

.main-boodschappen-doen-nederlands {
  width: 100%;
  overflow-x: hidden;
}

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

.hero-section-boodschappen-doen-nederlands {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.breadcrumbs-boodschappen-doen-nederlands {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.breadcrumbs-boodschappen-doen-nederlands a {
  color: #6ee7b7;
  text-decoration: none;
  transition: color 250ms ease;
}

.breadcrumbs-boodschappen-doen-nederlands a:hover {
  color: #10b981;
}

.breadcrumbs-boodschappen-doen-nederlands span {
  color: #a7f3d0;
}

.breadcrumbs-boodschappen-doen-nederlands > span:last-child {
  color: #ffffff;
  font-weight: 600;
}

.hero-badge-boodschappen-doen-nederlands {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(16, 185, 129, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title-boodschappen-doen-nederlands {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle-boodschappen-doen-nederlands {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-stats-boodschappen-doen-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

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

.stat-number-boodschappen-doen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #10b981;
  font-family: 'Playfair Display', serif;
}

.stat-label-boodschappen-doen-nederlands {
  font-size: 0.9rem;
  color: #6ee7b7;
  font-weight: 500;
}

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

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

.intro-text-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-boodschappen-doen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #022c22;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-paragraph-boodschappen-doen-nederlands {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.vocabulary-cards-section-boodschappen-doen-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.vocabulary-header-boodschappen-doen-nederlands {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.vocabulary-title-boodschappen-doen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #022c22;
  font-weight: 700;
  margin-bottom: 1rem;
}

.vocabulary-subtitle-boodschappen-doen-nederlands {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

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

.vocab-card-boodschappen-doen-nederlands {
  flex: 1 1 clamp(250px, 22vw, 320px);
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 250ms ease;
}

.vocab-card-boodschappen-doen-nederlands:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.vocab-card-title-boodschappen-doen-nederlands {
  font-size: 1.25rem;
  color: #022c22;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.vocab-list-boodschappen-doen-nederlands {
  list-style: none;
}

.vocab-item-boodschappen-doen-nederlands {
  font-size: 0.95rem;
  color: #374151;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  line-height: 1.6;
}

.vocab-item-boodschappen-doen-nederlands:last-child {
  border-bottom: none;
}

.vocab-item-boodschappen-doen-nederlands strong {
  color: #022c22;
  font-weight: 600;
}

.phrases-section-boodschappen-doen-nederlands {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.phrases-header-boodschappen-doen-nederlands {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.phrases-title-boodschappen-doen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.phrases-subtitle-boodschappen-doen-nederlands {
  font-size: 1rem;
  color: #a7f3d0;
  line-height: 1.6;
}

.phrases-wrapper-boodschappen-doen-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.phrases-text-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.phrases-image-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.phrase-block-boodschappen-doen-nederlands {
  margin-bottom: 2rem;
}

.phrase-block-boodschappen-doen-nederlands:last-child {
  margin-bottom: 0;
}

.phrase-heading-boodschappen-doen-nederlands {
  font-size: 1.1rem;
  color: #10b981;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phrase-item-boodschappen-doen-nederlands {
  font-size: 0.95rem;
  color: #e2e8f0;
  padding: 0.75rem 0;
  line-height: 1.7;
}

.phrases-img-boodschappen-doen-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.shopping-tips-section-boodschappen-doen-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-header-boodschappen-doen-nederlands {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.tips-title-boodschappen-doen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #022c22;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tips-subtitle-boodschappen-doen-nederlands {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

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

.tip-card-boodschappen-doen-nederlands {
  flex: 1 1 clamp(250px, 22vw, 320px);
  background: #f8fafc;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  transition: all 250ms ease;
}

.tip-card-boodschappen-doen-nederlands:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.tip-card-title-boodschappen-doen-nederlands {
  font-size: 1.1rem;
  color: #022c22;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tip-card-text-boodschappen-doen-nederlands {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.tip-card-note-boodschappen-doen-nederlands {
  font-size: 0.9rem;
  color: #10b981;
  font-weight: 600;
}

.conversation-section-boodschappen-doen-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conversation-header-boodschappen-doen-nederlands {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.conversation-title-boodschappen-doen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #022c22;
  font-weight: 700;
  margin-bottom: 1rem;
}

.conversation-subtitle-boodschappen-doen-nederlands {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

.conversation-wrapper-boodschappen-doen-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conversation-dialogue-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.conversation-image-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.dialogue-item-boodschappen-doen-nederlands {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.speaker-label-boodschappen-doen-nederlands {
  font-weight: 700;
  color: #022c22;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dialogue-text-boodschappen-doen-nederlands {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.conversation-img-boodschappen-doen-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.tips-cards-section-boodschappen-doen-nederlands {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-cards-header-boodschappen-doen-nederlands {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.tips-cards-title-boodschappen-doen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tips-cards-subtitle-boodschappen-doen-nederlands {
  font-size: 1rem;
  color: #a7f3d0;
  line-height: 1.6;
}

.tips-items-boodschappen-doen-nederlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tips-item-boodschappen-doen-nederlands {
  flex: 1 1 clamp(250px, 22vw, 320px);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: clamp(1.5rem, 2vw, 2rem);
  transition: all 250ms ease;
}

.tips-item-boodschappen-doen-nederlands:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.tips-item-title-boodschappen-doen-nederlands {
  font-size: 1.1rem;
  color: #10b981;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tips-item-text-boodschappen-doen-nederlands {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.7;
}

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

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

.conclusion-text-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-boodschappen-doen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #022c22;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-paragraph-boodschappen-doen-nederlands {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-highlight-boodschappen-doen-nederlands {
  background: #f8fafc;
  border-left: 4px solid #10b981;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.highlight-text-boodschappen-doen-nederlands {
  font-size: 0.95rem;
  color: #022c22;
  line-height: 1.7;
}

.conclusion-img-boodschappen-doen-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

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

.related-header-boodschappen-doen-nederlands {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.related-title-boodschappen-doen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #022c22;
  font-weight: 700;
  margin-bottom: 1rem;
}

.related-subtitle-boodschappen-doen-nederlands {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

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

.related-card-boodschappen-doen-nederlands {
  flex: 1 1 clamp(280px, 30vw, 380px);
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.related-card-boodschappen-doen-nederlands:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
  transform: translateY(-6px);
}

.related-card-image-boodschappen-doen-nederlands {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-boodschappen-doen-nederlands {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.related-card-boodschappen-doen-nederlands:hover .related-img-boodschappen-doen-nederlands {
  transform: scale(1.05);
}

.related-card-content-boodschappen-doen-nederlands {
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-boodschappen-doen-nederlands {
  font-size: 1.15rem;
  color: #022c22;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-description-boodschappen-doen-nederlands {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-card-link-boodschappen-doen-nederlands {
  display: inline-block;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 250ms ease;
}

.related-card-link-boodschappen-doen-nederlands:hover {
  color: #059669;
}

.disclaimer-section-boodschappen-doen-nederlands {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-boodschappen-doen-nederlands {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-boodschappen-doen-nederlands {
  font-size: 1.35rem;
  color: #10b981;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.disclaimer-text-boodschappen-doen-nederlands {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-content-boodschappen-doen-nederlands,
  .intro-content-boodschappen-doen-nederlands,
  .phrases-wrapper-boodschappen-doen-nederlands,
  .conversation-wrapper-boodschappen-doen-nederlands,
  .conclusion-content-boodschappen-doen-nederlands {
    flex-direction: column;
  }

  .hero-text-boodschappen-doen-nederlands,
  .hero-image-boodschappen-doen-nederlands,
  .intro-text-boodschappen-doen-nederlands,
  .intro-image-boodschappen-doen-nederlands,
  .phrases-text-boodschappen-doen-nederlands,
  .phrases-image-boodschappen-doen-nederlands,
  .conversation-dialogue-boodschappen-doen-nederlands,
  .conversation-image-boodschappen-doen-nederlands,
  .conclusion-text-boodschappen-doen-nederlands,
  .conclusion-image-boodschappen-doen-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-boodschappen-doen-nederlands {
    justify-content: flex-start;
  }

  .vocabulary-cards-boodschappen-doen-nederlands,
  .tips-cards-boodschappen-doen-nederlands,
  .tips-items-boodschappen-doen-nederlands,
  .related-cards-boodschappen-doen-nederlands {
    flex-direction: column;
  }

  .vocab-card-boodschappen-doen-nederlands,
  .tip-card-boodschappen-doen-nederlands,
  .tips-item-boodschappen-doen-nederlands,
  .related-card-boodschappen-doen-nederlands {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-boodschappen-doen-nederlands {
    flex-wrap: wrap;
    font-size: 0.75rem;
  }

  .hero-title-boodschappen-doen-nederlands {
    font-size: 1.75rem;
  }

  .hero-subtitle-boodschappen-doen-nederlands {
    font-size: 0.95rem;
  }

  .hero-stats-boodschappen-doen-nederlands {
    gap: 1rem;
  }

  .stat-number-boodschappen-doen-nederlands {
    font-size: 1.5rem;
  }

  .stat-label-boodschappen-doen-nederlands {
    font-size: 0.8rem;
  }

  .intro-title-boodschappen-doen-nederlands,
  .vocabulary-title-boodschappen-doen-nederlands,
  .phrases-title-boodschappen-doen-nederlands,
  .tips-title-boodschappen-doen-nederlands,
  .conversation-title-boodschappen-doen-nederlands,
  .tips-cards-title-boodschappen-doen-nederlands,
  .conclusion-title-boodschappen-doen-nederlands,
  .related-title-boodschappen-doen-nederlands {
    font-size: 1.5rem;
  }

  .vocabulary-cards-boodschappen-doen-nederlands,
  .tips-cards-boodschappen-doen-nederlands,
  .tips-items-boodschappen-doen-nederlands {
    gap: 1rem;
  }

  .vocab-card-boodschappen-doen-nederlands,
  .tip-card-boodschappen-doen-nederlands,
  .tips-item-boodschappen-doen-nederlands {
    padding: 1rem;
  }

  .dialogue-item-boodschappen-doen-nederlands {
    padding: 0.75rem;
  }
}

.main-vrienden-maken-nederlands {
  width: 100%;
  background: #f0fdf4;
  color: #1e293b;
}

.hero-section-vrienden-maken-nederlands {
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-vrienden-maken-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-vrienden-maken-nederlands {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: #d1fae5;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.hero-meta-vrienden-maken-nederlands {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.meta-item-vrienden-maken-nederlands {
  font-size: 0.9rem;
  color: #a7f3d0;
}

.meta-divider-vrienden-maken-nederlands {
  color: #6ee7b7;
}

.hero-image-vrienden-maken-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-vrienden-maken-nederlands img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

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

.intro-text-vrienden-maken-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-vrienden-maken-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #065f46;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-vrienden-maken-nederlands {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.intro-image-vrienden-maken-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-vrienden-maken-nederlands img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.15);
}

.technique-section-vrienden-maken-nederlands {
  background: #f0fdf4;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.technique-text-vrienden-maken-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-title-vrienden-maken-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #065f46;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.technique-paragraph-vrienden-maken-nederlands {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.technique-list-vrienden-maken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.list-item-vrienden-maken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #dcfce7;
  border-left: 4px solid #059669;
  border-radius: 8px;
}

.list-label-vrienden-maken-nederlands {
  font-weight: 600;
  color: #047857;
  font-size: 0.95rem;
}

.list-text-vrienden-maken-nederlands {
  font-size: 0.95rem;
  color: #374151;
  margin: 0;
  line-height: 1.6;
}

.technique-image-vrienden-maken-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-image-vrienden-maken-nederlands img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.15);
}

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

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

.deepening-image-vrienden-maken-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.deepening-image-vrienden-maken-nederlands img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.15);
}

.deepening-text-vrienden-maken-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.deepening-title-vrienden-maken-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #065f46;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.deepening-paragraph-vrienden-maken-nederlands {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.deepening-tips-vrienden-maken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-card-vrienden-maken-nederlands {
  background: #f0fdf4;
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid #dcfce7;
}

.tip-title-vrienden-maken-nederlands {
  font-size: 1.05rem;
  color: #059669;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tip-text-vrienden-maken-nederlands {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.action-section-vrienden-maken-nederlands {
  background: #f0fdf4;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.action-text-vrienden-maken-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.action-title-vrienden-maken-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #065f46;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.action-paragraph-vrienden-maken-nederlands {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.mistakes-list-vrienden-maken-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mistake-item-vrienden-maken-nederlands {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: flex-start;
}

.mistake-number-vrienden-maken-nederlands {
  font-size: 1.75rem;
  font-weight: 800;
  color: #059669;
  min-width: 45px;
  flex-shrink: 0;
}

.mistake-content-vrienden-maken-nederlands {
  flex: 1;
}

.mistake-title-vrienden-maken-nederlands {
  font-size: 1rem;
  color: #047857;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mistake-text-vrienden-maken-nederlands {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.action-image-vrienden-maken-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.action-image-vrienden-maken-nederlands img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.15);
}

.conclusion-section-vrienden-maken-nederlands {
  background: #dcfce7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-vrienden-maken-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #065f46;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-vrienden-maken-nederlands {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-cta-vrienden-maken-nederlands {
  padding: 1.75rem;
  background: #059669;
  border-radius: 10px;
  margin-top: 2rem;
}

.cta-text-vrienden-maken-nederlands {
  color: #ffffff;
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.1rem);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

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

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

.related-title-vrienden-maken-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #065f46;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-vrienden-maken-nederlands {
  flex: 1 1 280px;
  max-width: 380px;
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-vrienden-maken-nederlands:hover {
  box-shadow: 0 8px 24px rgba(6, 95, 70, 0.12);
  transform: translateY(-4px);
}

.related-image-vrienden-maken-nederlands {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e0e7ff;
}

.related-image-vrienden-maken-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-vrienden-maken-nederlands {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-vrienden-maken-nederlands {
  font-size: 1.15rem;
  color: #065f46;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.related-card-description-vrienden-maken-nederlands {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-vrienden-maken-nederlands {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: #059669;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-link-vrienden-maken-nederlands:hover {
  color: #047857;
  text-decoration: underline;
}

.disclaimer-section-vrienden-maken-nederlands {
  background: #f0fdf4;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-vrienden-maken-nederlands {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #059669;
  border-radius: 8px;
}

.disclaimer-title-vrienden-maken-nederlands {
  font-size: 1.25rem;
  color: #065f46;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-vrienden-maken-nederlands {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.breadcrumbs-vrienden-maken-nederlands {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs-vrienden-maken-nederlands a {
  font-size: 0.9rem;
  color: #d1fae5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-vrienden-maken-nederlands a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumbs-vrienden-maken-nederlands span {
  color: #a7f3d0;
  font-size: 0.9rem;
}

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

  .hero-text-vrienden-maken-nederlands,
  .hero-image-vrienden-maken-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-content-vrienden-maken-nederlands {
    flex-direction: column;
  }

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

  .technique-content-vrienden-maken-nederlands {
    flex-direction: column;
  }

  .technique-text-vrienden-maken-nederlands,
  .technique-image-vrienden-maken-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .deepening-content-vrienden-maken-nederlands {
    flex-direction: column-reverse;
  }

  .deepening-text-vrienden-maken-nederlands,
  .deepening-image-vrienden-maken-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .action-content-vrienden-maken-nederlands {
    flex-direction: column;
  }

  .action-text-vrienden-maken-nederlands,
  .action-image-vrienden-maken-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-vrienden-maken-nederlands {
    flex-direction: column;
    align-items: stretch;
  }

  .related-card-vrienden-maken-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-vrienden-maken-nederlands {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .hero-title-vrienden-maken-nederlands {
    font-size: 1.5rem;
  }

  .hero-subtitle-vrienden-maken-nederlands {
    font-size: 0.95rem;
  }

  .intro-title-vrienden-maken-nederlands,
  .technique-title-vrienden-maken-nederlands,
  .deepening-title-vrienden-maken-nederlands,
  .action-title-vrienden-maken-nederlands,
  .related-title-vrienden-maken-nederlands {
    font-size: 1.25rem;
  }

  .mistake-number-vrienden-maken-nederlands {
    font-size: 1.5rem;
    min-width: 40px;
  }

  .mistake-item-vrienden-maken-nederlands {
    gap: 0.75rem;
  }

  .related-image-vrienden-maken-nederlands {
    height: 180px;
  }

  .conclusion-title-vrienden-maken-nederlands {
    font-size: 1.25rem;
  }
}

.main-werk-nederlands-conversatie {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-werk-nederlands-conversatie {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-werk-nederlands-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: 0.875rem;
}

.breadcrumbs-werk-nederlands-conversatie a {
  color: #6ee7b7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-werk-nederlands-conversatie a:hover {
  color: #10b981;
  text-decoration: underline;
}

.breadcrumbs-werk-nederlands-conversatie span {
  color: #a7f3d0;
}

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

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

.hero-meta-werk-nederlands-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: 0.9rem;
  color: #a7f3d0;
}

.meta-separator-werk-nederlands-conversatie {
  color: #6ee7b7;
}

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

.hero-subtitle-werk-nederlands-conversatie {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin: 0;
}

.hero-image-wrapper-werk-nederlands-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

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

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

.intro-title-werk-nederlands-conversatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #022c22;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-paragraph-werk-nederlands-conversatie {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

.intro-image-werk-nederlands-conversatie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.content-one-section-werk-nederlands-conversatie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.content-one-title-werk-nederlands-conversatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #022c22;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.content-one-paragraph-werk-nederlands-conversatie {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.content-one-highlight-werk-nederlands-conversatie {
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid #10b981;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
}

.highlight-label-werk-nederlands-conversatie {
  font-weight: 600;
  color: #022c22;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.highlight-list-werk-nederlands-conversatie {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-item-werk-nederlands-conversatie {
  color: #374151;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.list-item-werk-nederlands-conversatie::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

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

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

.content-two-section-werk-nederlands-conversatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.content-two-image-werk-nederlands-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.content-two-title-werk-nederlands-conversatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #022c22;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.content-two-paragraph-werk-nederlands-conversatie {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.content-two-quote-werk-nederlands-conversatie {
  background: #ffffff;
  border-left: 4px solid #10b981;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
}

.quote-text-werk-nederlands-conversatie {
  font-style: italic;
  color: #022c22;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.7;
}

.quote-context-werk-nederlands-conversatie {
  color: #64748b;
  font-size: 0.85rem;
  margin: 0;
}

.content-three-section-werk-nederlands-conversatie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.content-three-title-werk-nederlands-conversatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #022c22;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.content-three-paragraph-werk-nederlands-conversatie {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.content-three-tips-werk-nederlands-conversatie {
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid #10b981;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
}

.tips-label-werk-nederlands-conversatie {
  font-weight: 600;
  color: #022c22;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.tips-list-werk-nederlands-conversatie {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-item-werk-nederlands-conversatie {
  color: #374151;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tips-item-werk-nederlands-conversatie::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

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

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

.content-four-section-werk-nederlands-conversatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.content-four-image-werk-nederlands-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-image-werk-nederlands-conversatie img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.content-four-text-werk-nederlands-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-title-werk-nederlands-conversatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #022c22;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.content-four-paragraph-werk-nederlands-conversatie {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

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

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

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

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

.conclusion-paragraph-werk-nederlands-conversatie {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  text-align: left;
}

.conclusion-action-werk-nederlands-conversatie {
  background: rgba(16, 185, 129, 0.1);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.action-text-werk-nederlands-conversatie {
  color: #022c22;
  font-weight: 500;
  margin: 0;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
}

.disclaimer-section-werk-nederlands-conversatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-werk-nederlands-conversatie {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.disclaimer-title-werk-nederlands-conversatie {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: #022c22;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.disclaimer-text-werk-nederlands-conversatie {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

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

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

.related-content-werk-nederlands-conversatie {
  text-align: center;
}

.related-title-werk-nederlands-conversatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #022c22;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

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

.related-card-werk-nederlands-conversatie {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.5rem));
  max-width: 380px;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.related-card-werk-nederlands-conversatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.related-card-image-werk-nederlands-conversatie {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-werk-nederlands-conversatie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-werk-nederlands-conversatie {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-werk-nederlands-conversatie {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #022c22;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.related-card-text-werk-nederlands-conversatie {
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: left;
}

.related-card-link-werk-nederlands-conversatie {
  display: inline-block;
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.related-card-link-werk-nederlands-conversatie:hover {
  color: #059669;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero-content-werk-nederlands-conversatie,
  .intro-content-werk-nederlands-conversatie,
  .content-one-wrapper-werk-nederlands-conversatie,
  .content-two-wrapper-werk-nederlands-conversatie,
  .content-three-wrapper-werk-nederlands-conversatie,
  .content-four-wrapper-werk-nederlands-conversatie {
    flex-direction: column;
  }

  .hero-text-wrapper-werk-nederlands-conversatie,
  .hero-image-wrapper-werk-nederlands-conversatie,
  .intro-text-wrapper-werk-nederlands-conversatie,
  .intro-image-wrapper-werk-nederlands-conversatie,
  .content-one-text-werk-nederlands-conversatie,
  .content-one-image-werk-nederlands-conversatie,
  .content-two-image-werk-nederlands-conversatie,
  .content-two-text-werk-nederlands-conversatie,
  .content-three-text-werk-nederlands-conversatie,
  .content-three-image-werk-nederlands-conversatie,
  .content-four-image-werk-nederlands-conversatie,
  .content-four-text-werk-nederlands-conversatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-werk-nederlands-conversatie {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
    max-width: 100%;
  }
}

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

  .intro-section-werk-nederlands-conversatie,
  .content-one-section-werk-nederlands-conversatie,
  .content-two-section-werk-nederlands-conversatie,
  .content-three-section-werk-nederlands-conversatie,
  .content-four-section-werk-nederlands-conversatie,
  .conclusion-section-werk-nederlands-conversatie,
  .disclaimer-section-werk-nederlands-conversatie,
  .related-section-werk-nederlands-conversatie {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

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

  .conclusion-content-werk-nederlands-conversatie {
    max-width: 100%;
  }

  .disclaimer-content-werk-nederlands-conversatie {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-werk-nederlands-conversatie {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .hero-meta-werk-nederlands-conversatie {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .related-card-image-werk-nederlands-conversatie {
    height: 150px;
  }

  .related-card-body-werk-nederlands-conversatie {
    padding: 0.75rem;
  }
}

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-primary);
    background: #ffffff;
    color: var(--color-text-primary);
    line-height: 1.6;
  }

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

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

  .dutch-language-narrative-about {
    background: #ffffff;
    overflow: hidden;
  }

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

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

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

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

  .hero-subtitle-about {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
  }

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

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

  .stat-item-about {
    text-align: center;
    flex: 1 1 150px;
    min-width: 120px;
  }

  .stat-number-about {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
  }

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

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

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

  .section-header-about {
    text-align: center;
    margin-bottom: clamp(1rem, 2vw, 2rem);
  }

  .section-tag-about {
    display: inline-block;
    padding: 0.5rem clamp(0.75rem, 2vw, 1rem);
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .section-title-about {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
  }

  .section-subtitle-about {
    font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
  }

  .journey-text-about {
    max-width: 800px;
    margin: 0 auto;
  }

  .journey-paragraph-about {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: #475569;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.8;
  }

  .journey-visual-about {
    width: 100%;
    max-width: 850px;
    height: auto;
    border-radius: var(--radius-xl);
    display: block;
    margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
    box-shadow: var(--shadow-md);
  }

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

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

  .approach-intro-about {
    text-align: center;
    margin-bottom: clamp(1rem, 2vw, 2rem);
  }

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

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

  .step-number-about {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-primary);
    min-width: clamp(60px, 10vw, 90px);
    flex-shrink: 0;
  }

  .step-content-about {
    flex: 1;
  }

  .step-title-about {
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
  }

  .step-text-about {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: #475569;
    line-height: 1.8;
  }

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

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

  .expertise-header-about {
    text-align: center;
    margin-bottom: clamp(1rem, 2vw, 2rem);
  }

  .feature-cards-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
    justify-content: center;
  }

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

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

  .card-icon-about {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: inline-block;
  }

  .card-title-about {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
  }

  .card-text-about {
    font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
    color: #64748b;
    line-height: 1.7;
  }

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

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

  .values-header-about {
    text-align: center;
    margin-bottom: clamp(1rem, 2vw, 2rem);
  }

  .quote-section-about {
    background: #f8fafc;
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
  }

  .quote-container-about {
    max-width: 800px;
    margin: 0 auto;
  }

  .featured-quote-about {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-left: 4px solid var(--color-primary);
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  .quote-text-about {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
    color: #1e293b;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
  }

  .quote-author-about {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: #64748b;
    font-style: normal;
    font-weight: 600;
  }

  .disclaimer-section-about {
    background: #f3f4f6;
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
  }

  .disclaimer-content-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .disclaimer-header-about {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .disclaimer-icon-about {
    font-size: 1.25rem;
    color: var(--color-primary);
    flex-shrink: 0;
  }

  .disclaimer-title-about {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    font-weight: 700;
    color: #111827;
  }

  .disclaimer-text-about {
    font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
    color: #57534e;
    line-height: 1.8;
  }

  @media (max-width: 768px) {
    .hero-content-about {
      gap: 1.5rem;
    }

    .process-step-about {
      flex-direction: column;
      gap: 1rem;
    }

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

    .feature-cards-about {
      gap: 1rem;
    }

    .feature-card-about {
      flex: 1 1 100%;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .feature-card-about {
      flex: 1 1 calc(50% - 0.5rem);
    }
  }

  @media (min-width: 1024px) {
    .feature-card-about {
      flex: 1 1 calc(33.333% - 1.35rem);
    }
  }

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

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-4xl) var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-secondary);
}

.faq-hero__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.faq-hero__subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: var(--fw-regular);
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-4xl) var(--space-md);
  overflow: hidden;
}

.faq-content__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  background-color: var(--color-bg-card-hover);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.faq-item__trigger {
  width: 100%;
  padding: var(--space-xl) var(--space-lg);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
  text-align: left;
}

.faq-item__trigger:hover {
  color: var(--color-accent);
}

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

.faq-item__question {
  flex: 1;
}

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__content {
  padding: 0 var(--space-lg) var(--space-xl) var(--space-lg);
  animation: slideDown var(--transition-base) ease-out;
  border-top: 1px solid var(--color-bg-secondary);
}

.faq-item__answer {
  color: var(--color-text-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  margin: 0;
  font-weight: var(--fw-regular);
}

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

.faq-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-4xl) var(--space-md);
  overflow: hidden;
}

.faq-cta__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
  text-align: center;
}

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

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.faq-cta__text {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: var(--fw-regular);
}

.faq-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: var(--fw-semibold);
  border: none;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  width: fit-content;
}

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

.faq-cta__button:active {
  transform: translateY(0);
}

.faq-cta__button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-5xl) var(--space-xl);
  }

  .faq-content {
    padding: var(--space-5xl) var(--space-xl);
  }

  .faq-item__trigger {
    padding: var(--space-2xl) var(--space-xl);
  }

  .faq-item__content {
    padding: 0 var(--space-xl) var(--space-2xl) var(--space-xl);
  }

  .faq-cta {
    padding: var(--space-5xl) var(--space-xl);
  }

  .faq-cta__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: var(--space-3xl);
  }

  .faq-cta__content {
    flex: 1;
  }

  .faq-cta__button {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-5xl) 0;
  }

  .faq-content {
    padding: var(--space-5xl) 0;
  }

  .faq-cta {
    padding: var(--space-5xl) 0;
  }

  .faq-item__trigger {
    font-size: 1.125rem;
  }

  .faq-item__answer {
    font-size: 1.0625rem;
  }
}

.services-page {
  width: 100%;
  overflow: hidden;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.services-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 3vw + 0.25rem, 1.5rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 500px;
}

.services-hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.services-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-4xl) var(--space-md);
  overflow: hidden;
}

.services-content-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.services-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: all var(--transition-base);
}

.services-card:hover {
  background-color: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.services-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.services-card-icon i {
  font-size: 1.75rem;
  color: var(--color-text-primary);
}

.services-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.25rem, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.services-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 2vw + 0.25rem, 1rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.services-card-topics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.services-card-topic {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-tertiary);
  background-color: rgba(16, 185, 129, 0.1);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.services-cta {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-4xl) var(--space-md);
  overflow: hidden;
}

.services-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
}

.services-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.25rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.services-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.25rem, 1.1rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.25rem, 1.05rem);
  font-weight: var(--fw-semibold);
  padding: var(--space-lg) var(--space-2xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  max-width: fit-content;
  margin: 0 auto;
}

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

.services-cta-button:active {
  transform: translateY(0);
}

.services-cta-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-cta-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

  .services-content {
    padding: var(--space-5xl) var(--space-lg);
  }

  .services-card {
    padding: var(--space-2xl);
  }

  .services-cta {
    padding: var(--space-5xl) var(--space-lg);
  }

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

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-5xl) 0;
  }

  .services-hero-container {
    flex-direction: row;
    align-items: center;
    gap: var(--space-3xl);
  }

  .services-hero-content {
    flex: 1;
  }

  .services-hero-image {
    flex: 1;
    max-width: none;
  }

  .services-content {
    padding: var(--space-5xl) 0;
  }

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

  .services-card {
    padding: var(--space-2xl);
  }

  .services-cta {
    padding: var(--space-5xl) 0;
  }

  .services-cta-container {
    flex-direction: row;
    gap: var(--space-3xl);
    text-align: left;
  }

  .services-cta-content {
    flex: 1;
    text-align: left;
  }

  .services-cta-image {
    flex: 1;
    max-width: none;
  }

  .services-cta-button {
    margin: 0;
  }
}

@media (min-width: 1280px) {
  .services-hero-container {
    gap: var(--space-4xl);
  }

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

  .services-cta-container {
    gap: var(--space-4xl);
  }
}

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

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

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

.legal-hub h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.legal-hub .last-updated {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  font-weight: var(--fw-regular);
}

.legal-hub h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  font-family: var(--font-primary);
}

.legal-hub p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-regular);
}

.legal-hub ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.legal-hub li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-regular);
}

.legal-hub strong {
  color: var(--color-text-secondary);
  font-weight: var(--fw-semibold);
}

.legal-hub section {
  margin-bottom: var(--space-3xl);
}

.legal-hub .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
  border-left: 4px solid var(--color-primary);
}

.legal-hub .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-secondary);
}

.legal-hub .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

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

@media (min-width: 768px) {
  .legal-hub {
    padding: var(--space-2xl) 0;
  }

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

  .legal-hub h1 {
    margin-bottom: var(--space-lg);
  }

  .legal-hub h2 {
    margin-top: var(--space-3xl);
  }

  .legal-hub section {
    margin-bottom: var(--space-4xl);
  }

  .legal-hub .contact-section {
    padding: var(--space-2xl) var(--space-2xl);
  }
}

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

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

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

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}

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

.thank-section {
  width: 100%;
  padding: var(--space-3xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

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

.thank-icon {
  width: clamp(60px, 15vw, 100px);
  height: clamp(60px, 15vw, 100px);
  margin: 0 auto var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-success);
  stroke-width: 1;
  fill: none;
  animation: drawCheck 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

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

@keyframes drawCheck {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  animation: fadeInUp 0.7s ease-out 0.2s backwards;
}

.thank-lead {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
  animation: fadeInUp 0.7s ease-out 0.3s backwards;
}

.thank-message {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.7s ease-out 0.4s backwards;
}

.thank-message:last-of-type {
  margin-bottom: var(--space-2xl);
}

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

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  animation: fadeInUp 0.7s ease-out 0.5s backwards;
}

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

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

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

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

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

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

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

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

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

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

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

  .thank-message:last-of-type {
    margin-bottom: var(--space-3xl);
  }
}

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

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

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

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

  .error-section {
    width: 100%;
    padding: var(--space-2xl) var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

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

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

  .error-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .error-code-wrapper {
    position: relative;
    margin-bottom: var(--space-3xl);
    display: inline-block;
    width: 100%;
  }

  .error-code {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    display: block;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
    animation: float-code 3s ease-in-out infinite;
    margin: 0;
    padding: 0;
  }

  .error-decoration {
    position: absolute;
    width: clamp(150px, 30vw, 300px);
    height: clamp(150px, 30vw, 300px);
    border: 2px solid var(--color-primary-light);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    animation: rotate-decoration 20s linear infinite;
  }

  .error-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--fw-bold);
    color: var(--color-text-primary);
    margin: var(--space-xl) 0 var(--space-md) 0;
    padding: 0;
    letter-spacing: -0.5px;
  }

  .error-description {
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: var(--fw-regular);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 0 0 var(--space-lg) 0;
    padding: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .error-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: var(--fw-medium);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0 0 var(--space-2xl) 0;
    padding: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-home {
    display: inline-block;
    padding: var(--space-md) var(--space-2xl);
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    margin: var(--space-xl) 0;
  }

  .btn-home::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--color-primary-hover);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width var(--transition-base), height var(--transition-base);
    z-index: -1;
  }

  .btn-home:hover::before {
    width: 300px;
    height: 300px;
  }

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

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

  .error-illustration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.05;
  }

  .illustration-item {
    position: absolute;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-lg);
  }

  .item-1 {
    width: clamp(100px, 20vw, 250px);
    height: clamp(100px, 20vw, 250px);
    top: 10%;
    left: 5%;
    animation: float-item-1 6s ease-in-out infinite;
  }

  .item-2 {
    width: clamp(80px, 15vw, 200px);
    height: clamp(80px, 15vw, 200px);
    bottom: 15%;
    right: 10%;
    animation: float-item-2 7s ease-in-out infinite;
  }

  .item-3 {
    width: clamp(120px, 18vw, 280px);
    height: clamp(120px, 18vw, 280px);
    top: 50%;
    right: 5%;
    animation: float-item-3 8s ease-in-out infinite;
  }

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

  @keyframes rotate-decoration {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  @keyframes float-item-1 {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(30px) rotate(5deg);
    }
  }

  @keyframes float-item-2 {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(-30px) rotate(-5deg);
    }
  }

  @keyframes float-item-3 {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
    }
    50% {
      transform: translateY(25px) rotate(3deg);
    }
  }

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

    .error-code-wrapper {
      margin-bottom: var(--space-3xl);
    }

    .btn-home {
      padding: var(--space-lg) var(--space-3xl);
      font-size: clamp(1rem, 1.1vw, 1.15rem);
    }
  }

  @media (min-width: 1024px) {
    .error-section {
      padding: var(--space-4xl) var(--space-2xl);
      min-height: 100vh;
    }

    .error-code-wrapper {
      margin-bottom: var(--space-4xl);
    }

    .error-title {
      margin: var(--space-2xl) 0 var(--space-lg) 0;
    }

    .error-description {
      margin: 0 auto var(--space-xl) auto;
    }

    .error-subtitle {
      margin: 0 auto var(--space-3xl) auto;
    }

    .btn-home:hover {
      transform: translateY(-4px);
    }
  }

  @media (max-width: 767px) {
    .error-code {
      animation: none;
    }

    .error-decoration {
      display: none;
    }

    .error-illustration {
      display: none;
    }
  }

.contact-get-in-touch {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.contact-get-in-touch-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-get-in-touch-hero-content {
  text-align: center;
  padding: 2rem 0;
}

.contact-get-in-touch-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.contact-get-in-touch-lead {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.contact-get-in-touch-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-get-in-touch-main-content {
  width: 100%;
}

.contact-get-in-touch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

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

.contact-get-in-touch-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.contact-get-in-touch-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-get-in-touch-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-get-in-touch-input,
.contact-get-in-touch-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
  transition: all var(--transition-base);
}

.contact-get-in-touch-input::placeholder,
.contact-get-in-touch-textarea::placeholder {
  color: rgba(167, 243, 208, 0.5);
}

.contact-get-in-touch-input:focus,
.contact-get-in-touch-textarea:focus {
  outline: none;
  background-color: rgba(16, 185, 129, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.contact-get-in-touch-input:hover,
.contact-get-in-touch-textarea:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.contact-get-in-touch-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-get-in-touch-form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.contact-get-in-touch-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-get-in-touch-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-get-in-touch-submit:active {
  transform: translateY(0);
}

.contact-get-in-touch-privacy-notice {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-get-in-touch-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: var(--fw-medium);
}

.contact-get-in-touch-privacy-link:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

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

.contact-get-in-touch-info-wrapper h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.contact-get-in-touch-info-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-get-in-touch-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-get-in-touch-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-get-in-touch-info-content {
  flex: 1;
}

.contact-get-in-touch-info-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.contact-get-in-touch-info-content p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0.25rem 0;
}

.contact-get-in-touch-info-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: var(--fw-medium);
}

.contact-get-in-touch-info-content a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.contact-get-in-touch-info-hours {
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.contact-get-in-touch-info-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
}

.contact-get-in-touch-info-card:hover {
  background-color: var(--color-bg-card-hover);
  border-color: rgba(16, 185, 129, 0.3);
}

.contact-get-in-touch-info-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.contact-get-in-touch-info-card p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.contact-get-in-touch-faq {
  background-color: var(--color-bg-secondary);
  padding: 4rem 1rem;
  overflow: hidden;
}

.contact-get-in-touch-faq-content {
  width: 100%;
}

.contact-get-in-touch-faq-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 3rem;
}

.contact-get-in-touch-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-get-in-touch-faq-item {
  background-color: rgba(16, 185, 129, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-get-in-touch-faq-item:hover {
  background-color: rgba(16, 185, 129, 0.12);
  transform: translateX(4px);
}

.contact-get-in-touch-faq-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.contact-get-in-touch-faq-item p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .contact-get-in-touch-hero {
    padding: 4rem 1rem;
  }

  .contact-get-in-touch-hero-content {
    padding: 3rem 0;
  }

  .contact-get-in-touch-main {
    padding: 4rem 1rem;
  }

  .contact-get-in-touch-grid {
    gap: 4rem;
  }

  .contact-get-in-touch-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-get-in-touch-info-wrapper {
    flex: 1 1 45%;
  }

  .contact-get-in-touch-faq {
    padding: 5rem 1rem;
  }

  .contact-get-in-touch-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .contact-get-in-touch-submit {
    width: auto;
    align-self: flex-start;
  }
}

@media (min-width: 1024px) {
  .contact-get-in-touch-hero {
    padding: 5rem 1rem;
  }

  .contact-get-in-touch-hero-content {
    padding: 4rem 0;
  }

  .contact-get-in-touch-main {
    padding: 6rem 1rem;
  }

  .contact-get-in-touch-grid {
    gap: 5rem;
  }

  .contact-get-in-touch-faq {
    padding: 6rem 1rem;
  }

  .contact-get-in-touch-form-wrapper {
    max-width: 550px;
  }

  .contact-get-in-touch-info-wrapper {
    max-width: 550px;
  }
}

@media (max-width: 767px) {
  .contact-get-in-touch-form-wrapper,
  .contact-get-in-touch-info-wrapper {
    order: initial;
  }

  .contact-get-in-touch-info-wrapper {
    margin-top: 2rem;
  }

  .contact-get-in-touch-faq-item {
    padding: 1.5rem;
  }
}
.header-taal-brug-mobile-toggle[aria-expanded="true"]{
  display: none;
}  