
    @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: #042f2e;
  --color-bg-secondary: #064e4a;
  --color-bg-tertiary: #0f766e;
  --color-bg-card: rgba(20, 184, 166, 0.08);
  --color-bg-overlay: rgba(4, 47, 46, 0.95);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #99f6e4;
  --color-text-muted: #7dd3c0;
  --color-text-light: #d1faf8;
  
  
  --color-primary: #14b8a6;
  --color-primary-hover: #0d9488;
  --color-primary-light: #2dd4bf;
  --color-secondary: #0f766e;
  --color-accent-warm: #f59e0b;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(20, 184, 166, 0.15);
  --shadow-glow-hover: 0 0 30px rgba(20, 184, 166, 0.25);
  
  
  --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);
  
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;
  
  
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.02em;
  --letter-spacing-wider: 0.05em;
}

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

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

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

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

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

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

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

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

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

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

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

p.subtitle {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  line-height: var(--line-height-relaxed);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  font-weight: 500;
}

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

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

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

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

code {
  background: var(--color-bg-secondary);
  color: var(--color-primary-light);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9em;
}

pre {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(20, 184, 166, 0.1);
}

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

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

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

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

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

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  font-weight: 700;
}

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

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

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

.btn-secondary:hover:not(:disabled) {
  background: rgba(20, 184, 166, 0.1);
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

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

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

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

.btn-ghost:hover:not(:disabled) {
  background: rgba(20, 184, 166, 0.1);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

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

.card:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

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

.card-footer {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(20, 184, 166, 0.1);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

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

input, textarea, select {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 2px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-base);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
  background: var(--color-bg-tertiary);
}

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

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--color-text-primary);
}

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

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

.checkbox, .radio {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  margin-bottom: var(--space-sm);
}

.checkbox input, .radio input {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.badge-primary {
  background: rgba(20, 184, 166, 0.2);
  color: var(--color-primary-light);
}

.badge-secondary {
  background: rgba(15, 118, 110, 0.3);
  color: var(--color-text-secondary);
}

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

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

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

.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid;
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.alert-info {
  background: rgba(20, 184, 166, 0.1);
  border-color: var(--color-primary);
  color: var(--color-text-primary);
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--color-success);
  color: var(--color-text-primary);
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-warning);
  color: var(--color-text-primary);
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: var(--color-error);
  color: var(--color-text-primary);
}

.alert-title {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.alert-close {
  margin-left: auto;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.alert-close:hover {
  opacity: 1;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}

thead {
  background: var(--color-bg-secondary);
  border-bottom: 2px solid var(--color-primary);
}

th {
  padding: var(--space-md);
  text-align: left;
  font-weight: 700;
  color: var(--color-primary-light);
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
  color: var(--color-text-primary);
}

tbody tr:hover {
  background: var(--color-bg-card);
}

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

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

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

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

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

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

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

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

.text-italic {
  font-style: italic;
}

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

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

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

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

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wider);
}

.text-capitalize {
  text-transform: capitalize;
}

.text-lowercase {
  text-transform: lowercase;
}

.m-0 { margin: 0; }
.m-xs { margin: var(--space-xs); }
.m-sm { margin: var(--space-sm); }
.m-md { margin: var(--space-md); }
.m-lg { margin: var(--space-lg); }
.m-xl { margin: var(--space-xl); }
.m-2xl { margin: var(--space-2xl); }

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

.mx-auto { margin-left: auto; margin-right: auto; }

.p-0 { padding: 0; }
.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); }

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

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

.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-contents { display: contents; }

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

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

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

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

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

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-auto { height: auto; }

.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.visible { visibility: visible; }
.invisible { visibility: hidden; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-glow { box-shadow: var(--shadow-glow); }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-text { cursor: text; }
.cursor-move { cursor: move; }
.cursor-not-allowed { cursor: not-allowed; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.grid-rows-1 { grid-template-rows: repeat(1, minmax(0, 1fr)); }
.grid-rows-2 { grid-template-rows: repeat(2, minmax(0, 1fr)); }
.grid-rows-3 { grid-template-rows: repeat(3, minmax(0, 1fr)); }

@media (max-width: 768px) {
  .grid-cols-1 { grid-template-columns: 1fr; }
  .grid-cols-2 { grid-template-columns: 1fr; }
  .grid-cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  
  .hidden-mobile { display: none; }
}

.hidden-sm { display: none; }
.hidden-md { display: none; }
.hidden-lg { display: none; }

@media (max-width: 640px) {
  .hidden-xs { display: none; }
}

@media (min-width: 640px) and (max-width: 768px) {
  .hidden-sm { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hidden-md { display: none !important; }
}

@media (min-width: 1024px) {
  .hidden-lg { display: none !important; }
}

@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 scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.15);
  }
  50% {
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.3);
  }
}

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

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

.animate-bounce {
  animation: bounce 1s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
  
  h2 {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }
  
  h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.75rem);
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  body {
    font-size: 0.95rem;
  }
}

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a, a:visited {
    text-decoration: underline;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
  
  button, .btn {
    display: none;
  }
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  z-index: 100;
  border-radius: var(--radius-lg);
}

.skip-link:focus {
  top: 0;
}

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

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

@media (prefers-color-scheme: light) {
  :root {
    color-scheme: dark;
  }
}
.header-taal-portal {
  background: var(--color-bg-primary);
  padding: 1rem 0;
  position: static;
  border-bottom: 1px solid var(--color-primary);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.header-taal-portal-nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  padding-bottom: 0.25rem;
}

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

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

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

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

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

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

.header-taal-portal-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-secondary);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.header-taal-portal-mobile-toggle:hover span {
  background: var(--color-primary-light);
}

.header-taal-portal-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

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

.header-taal-portal-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

.header-taal-portal-mobile-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.header-taal-portal-mobile-close {
  background: transparent;
  border: none;
  font-size: 1.75rem;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 0.5rem;
  transition: all var(--transition-base);
}

.header-taal-portal-mobile-close:hover {
  color: var(--color-primary-light);
  transform: scale(1.1);
}

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

.header-taal-portal-mobile-link {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-base);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
}

.header-taal-portal-mobile-link:hover {
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-primary-light);
  padding-left: 1.5rem;
}

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

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

@media (min-width: 768px) {
  .header-taal-portal {
    padding: 1.25rem 0;
  }

  .header-taal-portal-container {
    gap: 2rem;
  }

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

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

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

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

  .header-taal-portal-logo-text {
    font-size: 1.375rem;
  }
}

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

  .header-taal-portal-logo-text {
    font-size: 1.5rem;
  }

  .header-taal-portal-nav-link {
    font-size: 1rem;
  }

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

    .taal-leren-hub {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

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

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

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

.hero-title-index {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
}

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

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

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

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

.hero-stat-label-index {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 500;
}

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

.hero-buttons-index .btn {
  flex: 0 1 auto;
}

@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%;
  }

  .hero-image-index {
    max-height: 350px;
  }

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

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

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

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

.featured-header-index {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

.featured-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-primary);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.featured-card-index:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.card-image-wrapper-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
}

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

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

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

.featured-card-text-index {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
  margin: 0;
}

.featured-card-link-index {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  width: fit-content;
}

.featured-card-link-index:hover {
  color: var(--color-primary-light);
  transform: translateX(4px);
}

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

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

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

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

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

.how-it-works-header-index {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

.how-it-works-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-relaxed);
}

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

.step-card-index {
  flex: 1 1 250px;
  max-width: 320px;
  background: var(--color-bg-secondary);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.step-card-index:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-4px);
}

.step-number-index {
  color: var(--color-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
  margin: 0;
}

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

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

.step-text-index {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (max-width: 768px) {
  .how-it-works-steps-index {
    flex-direction: column;
    align-items: stretch;
  }

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

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

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

.benefits-header-index {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

.benefit-item-index {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-primary);
  border: 1px solid rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
  transition: all var(--transition-base);
}

.benefit-item-index:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateY(-2px);
}

.benefit-icon-index {
  color: var(--color-primary);
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
}

.benefit-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin: 0;
}

.benefit-text-index {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

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

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

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

.testimonials-header-index {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.testimonial-card-index:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-4px);
}

.testimonial-quote-icon-index {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.testimonial-text-index {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  font-style: italic;
  margin: 0;
}

.testimonial-author-index {
  border-top: 1px solid rgba(20, 184, 166, 0.1);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.author-name-index {
  color: var(--color-primary-light);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0;
}

.author-location-index {
  color: var(--color-text-muted);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  margin: 0;
}

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

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

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

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

.faq-header-index {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

.faq-item-index {
  background: var(--color-bg-primary);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item-index:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.faq-question-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 3vw, 1.5rem);
  cursor: pointer;
  background: var(--color-bg-primary);
  border: none;
  width: 100%;
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-question-index:hover {
  background: var(--color-bg-tertiary);
}

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

.faq-icon-index {
  color: var(--color-primary);
  font-size: 1.25rem;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item-index.active .faq-icon-index {
  transform: rotate(180deg);
}

.faq-answer-index {
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item-index.active .faq-answer-index {
  max-height: 500px;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
}

.faq-answer-text-index {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

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

.cta-final-box-index {
  flex: 1 1 300px;
  max-width: 500px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  box-shadow: var(--shadow-xl), var(--shadow-glow-hover);
}

.cta-final-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0;
  line-height: var(--line-height-tight);
}

.cta-final-text-index {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

.cta-final-buttons-index .btn {
  flex: 1 1 auto;
}

.cta-final-benefits-index {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cta-benefit-item-index {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.cta-benefit-item-index i {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cta-benefit-text-index {
  margin: 0;
}

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

  .cta-final-box-index {
    flex: 1 1 100%;
    max-width: none;
  }

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

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

  .cta-final-buttons-index .btn {
    flex: 1 1 100%;
  }
}

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

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

.resources-header-index {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

.resource-link-card-index {
  flex: 1 1 250px;
  max-width: 300px;
  background: var(--color-bg-primary);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-base);
  color: inherit;
}

.resource-link-card-index:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateY(-4px);
}

.resource-icon-index {
  color: var(--color-primary);
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
}

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

.resource-link-text-index {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

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

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

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.cookie-btn-accept-index {
  background: var(--color-primary);
  color: var(--color-bg-primary);
}

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

.cookie-btn-decline-index {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.cookie-btn-decline-index:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

  .cookie-banner-buttons-index {
    width: 100%;
    flex-direction: column;
  }

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

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

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

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

.footer-about {
  max-width: 480px;
}

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

.footer-about p {
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav,
.footer-contact,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin: 0;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
}

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

.footer-nav-list li,
.footer-legal-list li {
  margin: 0;
  padding: 0;
}

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

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--color-primary-light);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 0.875rem);
}

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

.footer-copyright {
  border-top: 1px solid rgba(20, 184, 166, 0.15);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

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

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

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

  .footer-nav,
  .footer-contact,
  .footer-legal {
    flex: 1 1 180px;
    min-width: 160px;
  }

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

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

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

  .footer-nav,
  .footer-contact,
  .footer-legal {
    flex: 0 1 200px;
  }

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

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

.hero-section-dutch-language-learning {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 184, 166, 0.15);
}

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

.hero-header-dutch-language-learning {
  text-align: center;
  max-width: 700px;
}

.hero-title-dutch-language-learning {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.hero-subtitle-dutch-language-learning {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

.hero-visual-dutch-language-learning {
  width: 100%;
  max-width: 600px;
}

.hero-highlight-dutch-language-learning {
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  backdrop-filter: blur(10px);
}

.hero-highlight-text-dutch-language-learning {
  color: var(--color-text-light);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
  font-weight: 500;
}

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

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

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

.posts-title-dutch-language-learning {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.posts-description-dutch-language-learning {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

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

.card-dutch-language-learning {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 3vw, 2rem);
  transition: all var(--transition-base);
  overflow: hidden;
}

.card-dutch-language-learning:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-6px);
}

.card-image-dutch-language-learning {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-title-dutch-language-learning {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.card-description-dutch-language-learning {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.card-meta-dutch-language-learning {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(20, 184, 166, 0.1);
  margin-bottom: var(--space-md);
}

.card-reading-time-dutch-language-learning,
.card-level-dutch-language-learning,
.card-date-dutch-language-learning {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-reading-time-dutch-language-learning i,
.card-level-dutch-language-learning i,
.card-date-dutch-language-learning i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.card-link-dutch-language-learning {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1rem);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.card-link-dutch-language-learning:hover {
  color: var(--color-primary-light);
  transform: translateX(4px);
}

.card-link-dutch-language-learning::after {
  content: "";
  transition: transform var(--transition-fast);
}

.card-dutch-language-learning:hover .card-link-dutch-language-learning::after {
  transform: translateX(4px);
}

.insights-section-dutch-language-learning {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(20, 184, 166, 0.15);
  border-bottom: 1px solid rgba(20, 184, 166, 0.15);
}

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

.insights-quote-dutch-language-learning {
  background: rgba(20, 184, 166, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.insights-quote-text-dutch-language-learning {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-light);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.insights-quote-author-dutch-language-learning {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-weight: 600;
}

.insights-context-dutch-language-learning {
  max-width: 750px;
  margin: 0 auto;
}

.insights-context-title-dutch-language-learning {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.insights-context-text-dutch-language-learning {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

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

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

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

.progress-title-dutch-language-learning {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.progress-subtitle-dutch-language-learning {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

.progress-steps-dutch-language-learning {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.progress-step-dutch-language-learning {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1 1 250px;
  max-width: 320px;
  background: rgba(20, 184, 166, 0.05);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all var(--transition-base);
}

.progress-step-dutch-language-learning:hover {
  border-color: rgba(20, 184, 166, 0.3);
  background: rgba(20, 184, 166, 0.08);
  transform: translateY(-3px);
}

.step-number-dutch-language-learning {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

.step-title-dutch-language-learning {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0;
}

.step-text-dutch-language-learning {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-content-dutch-language-learning {
    gap: clamp(1.5rem, 4vw, 2rem);
  }

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

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

  .progress-steps-dutch-language-learning {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .progress-step-dutch-language-learning {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .insights-quote-dutch-language-learning {
    text-align: left;
  }

  .insights-quote-text-dutch-language-learning {
    text-align: left;
  }
}

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

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

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

  .progress-section-dutch-language-learning {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .card-dutch-language-learning {
    padding: clamp(1rem, 2vw, 1.5rem);
  }

  .hero-visual-dutch-language-learning {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .posts-grid-dutch-language-learning {
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
  }

  .card-dutch-language-learning {
    flex: 1 1 280px;
    max-width: 380px;
  }

  .progress-steps-dutch-language-learning {
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }

  .progress-step-dutch-language-learning {
    flex: 1 1 220px;
    max-width: 280px;
  }
}

.main-nederlands-gesprekken-voeren {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.hero-section-nederlands-gesprekken-voeren {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

.breadcrumbs-nederlands-gesprekken-voeren {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  flex-wrap: wrap;
}

.breadcrumbs-nederlands-gesprekken-voeren a {
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.breadcrumbs-nederlands-gesprekken-voeren a:hover {
  color: var(--color-primary-light);
}

.breadcrumbs-nederlands-gesprekken-voeren span {
  color: var(--color-text-muted);
}

.breadcrumbs-nederlands-gesprekken-voeren span:last-child {
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

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

.hero-title-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
}

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

.hero-meta-nederlands-gesprekken-voeren {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.meta-item-nederlands-gesprekken-voeren {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.meta-item-nederlands-gesprekken-voeren i {
  color: var(--color-primary);
}

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

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

@media (max-width: 768px) {
  .hero-content-nederlands-gesprekken-voeren {
    flex-direction: column;
    gap: var(--space-lg);
  }

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

  .hero-meta-nederlands-gesprekken-voeren {
    gap: var(--space-md);
  }
}

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

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

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

.intro-title-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.intro-paragraph-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.intro-image-netherlands-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .intro-content-nederlands-gesprekken-voeren {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .intro-text-nederlands-gesprekken-voeren,
  .intro-image-netherlands-gesprekken-voeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-één-nederlands-gesprekken-voeren {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

.content-wrapper-één-nederlands-gesprekken-voeren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-één-nederlands-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-één-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.content-paragraph-één-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.content-subheading-één-nederlands-gesprekken-voeren {
  color: var(--color-primary-light);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.content-list-één-nederlands-gesprekken-voeren {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.list-item-één-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.content-image-één-nederlands-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-één-nederlands-gesprekken-voeren img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .content-wrapper-één-nederlands-gesprekken-voeren {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .content-text-één-nederlands-gesprekken-voeren,
  .content-image-één-nederlands-gesprekken-voeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-twee-nederlands-gesprekken-voeren {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-twee-nederlands-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

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

.content-text-twee-nederlands-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-twee-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.content-paragraph-twee-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.quote-twee-nederlands-gesprekken-voeren {
  background: rgba(20, 184, 166, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.quote-text-twee-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-style: italic;
  font-size: 1.05rem;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.quote-author-twee-nederlands-gesprekken-voeren {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-style: normal;
}

@media (max-width: 768px) {
  .content-wrapper-twee-nederlands-gesprekken-voeren {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .content-image-twee-nederlands-gesprekken-voeren {
    order: 0;
  }

  .content-image-twee-nederlands-gesprekken-voeren,
  .content-text-twee-nederlands-gesprekken-voeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-drie-nederlands-gesprekken-voeren {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

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

.content-text-drie-nederlands-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-drie-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.content-paragraph-drie-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.highlight-box-drie-nederlands-gesprekken-voeren {
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}

.highlight-title-drie-nederlands-gesprekken-voeren {
  color: var(--color-primary-light);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.highlight-text-drie-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: var(--line-height-relaxed);
}

.content-image-drie-nederlands-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .content-wrapper-drie-nederlands-gesprekken-voeren {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .content-text-drie-nederlands-gesprekken-voeren,
  .content-image-drie-nederlands-gesprekken-voeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-vier-nederlands-gesprekken-voeren {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-vier-nederlands-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

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

.content-text-vier-nederlands-gesprekken-voeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-vier-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.content-paragraph-vier-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .content-wrapper-vier-nederlands-gesprekken-voeren {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .content-image-vier-nederlands-gesprekken-voeren {
    order: 0;
  }

  .content-image-vier-nederlands-gesprekken-voeren,
  .content-text-vier-nederlands-gesprekken-voeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-nederlands-gesprekken-voeren {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

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

.conclusion-title-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.conclusion-points-nederlands-gesprekken-voeren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.point-card-nederlands-gesprekken-voeren {
  flex: 1 1 calc(50% - var(--space-md));
  min-width: 250px;
  max-width: 320px;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.point-card-nederlands-gesprekken-voeren:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.point-number-nederlands-gesprekken-voeren {
  color: var(--color-primary);
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.point-content-nederlands-gesprekken-voeren {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.point-title-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}

.point-text-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: 0.95rem;
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.cta-box-nederlands-gesprekken-voeren {
  background: linear-gradient(135deg, var(--color-primary), var(--color-bg-tertiary));
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  color: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cta-title-nederlands-gesprekken-voeren {
  color: var(--color-bg-primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0;
  line-height: var(--line-height-tight);
}

.cta-text-nederlands-gesprekken-voeren {
  color: var(--color-bg-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.cta-box-nederlands-gesprekken-voeren .btn {
  align-self: center;
  margin-top: var(--space-sm);
}

@media (max-width: 768px) {
  .conclusion-points-nederlands-gesprekken-voeren {
    flex-direction: column;
    align-items: center;
  }

  .point-card-nederlands-gesprekken-voeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-nederlands-gesprekken-voeren {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

.disclaimer-content-nederlands-gesprekken-voeren {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.disclaimer-title-nederlands-gesprekken-voeren {
  color: var(--color-primary-light);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.disclaimer-text-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

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

.related-title-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.related-cards-nederlands-gesprekken-voeren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.related-card-nederlands-gesprekken-voeren {
  flex: 1 1 calc(33.333% - var(--space-lg));
  min-width: 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-nederlands-gesprekken-voeren:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.related-image-netherlands-gesprekken-voeren {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-nederlands-gesprekken-voeren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.related-card-nederlands-gesprekken-voeren:hover .related-card-image-nederlands-gesprekken-voeren {
  transform: scale(1.05);
}

.related-card-body-nederlands-gesprekken-voeren {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.related-card-title-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: var(--line-height-tight);
  margin: 0;
}

.related-card-description-nederlands-gesprekken-voeren {
  color: var(--color-text-primary);
  font-size: 0.9rem;
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex: 1;
}

.related-card-link-nederlands-gesprekken-voeren {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition-fast);
  align-self: flex-start;
}

.related-card-link-nederlands-gesprekken-voeren:hover {
  color: var(--color-primary-light);
  transform: translateX(4px);
}

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

@media (max-width: 768px) {
  .related-cards-nederlands-gesprekken-voeren {
    flex-direction: column;
    align-items: center;
  }

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

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

  .breadcrumbs-nederlands-gesprekken-voeren {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .intro-section-nederlands-gesprekken-voeren,
  .content-section-één-nederlands-gesprekken-voeren,
  .content-section-twee-nederlands-gesprekken-voeren,
  .content-section-drie-nederlands-gesprekken-voeren,
  .content-section-vier-nederlands-gesprekken-voeren,
  .conclusion-section-nederlands-gesprekken-voeren,
  .disclaimer-section-nederlands-gesprekken-voeren,
  .related-section-nederlands-gesprekken-voeren {
    padding: 2rem 0;
  }

  .hero-meta-nederlands-gesprekken-voeren {
    gap: var(--space-md);
  }

  .meta-item-nederlands-gesprekken-voeren {
    font-size: 0.85rem;
  }

  .point-card-nederlands-gesprekken-voeren {
    min-width: 100%;
  }

  .cta-box-nederlands-gesprekken-voeren {
    padding: 1.5rem;
  }
}

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

.hero-section-nederlands-basisbegrippen {
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-nederlands-basisbegrippen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
  color: #99f6e4;
}

.breadcrumbs-nederlands-basisbegrippen a {
  color: #2dd4bf;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumbs-nederlands-basisbegrippen span {
  color: #7dd3c0;
}

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

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

.hero-tag-nederlands-basisbegrippen {
  display: inline-block;
  background: rgba(20, 184, 166, 0.2);
  color: #2dd4bf;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.hero-subtitle-nederlands-basisbegrippen {
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  color: #d1faf8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-nederlands-basisbegrippen {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.meta-item-nederlands-basisbegrippen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #99f6e4;
}

.meta-item-nederlands-basisbegrippen i {
  color: #14b8a6;
  font-size: 1rem;
}

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

.hero-image-nederlands-basisbegrippen {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-nederlands-basisbegrippen {
    flex-direction: column;
    gap: 2rem;
  }

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

  .hero-meta-nederlands-basisbegrippen {
    flex-direction: column;
    gap: 1rem;
  }
}

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

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

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

.intro-title-nederlands-basisbegrippen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.intro-image-nederlands-basisbegrippen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-nederlands-basisbegrippen {
    flex-direction: column;
    gap: 2rem;
  }

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

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

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

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

.content-one-title-nederlands-basisbegrippen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.words-list-nederlands-basisbegrippen {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.word-item-nederlands-basisbegrippen {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.word-item-nederlands-basisbegrippen:last-child {
  border-bottom: none;
}

.word-dutch-nederlands-basisbegrippen {
  color: #1e293b;
  font-weight: 600;
  font-size: 0.95rem;
}

.word-english-nederlands-basisbegrippen {
  color: #6b7280;
  font-size: 0.875rem;
  font-style: italic;
}

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

.content-one-img-nederlands-basisbegrippen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .content-one-wrapper-nederlands-basisbegrippen {
    flex-direction: column;
    gap: 2rem;
  }

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

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

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

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

.content-two-img-nederlands-basisbegrippen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

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

.content-two-title-nederlands-basisbegrippen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.tip-box-nederlands-basisbegrippen {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.tip-title-nederlands-basisbegrippen {
  color: #065f46;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

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

@media (max-width: 768px) {
  .content-two-wrapper-nederlands-basisbegrippen {
    flex-direction: column;
    gap: 2rem;
  }

  .content-two-image-nederlands-basisbegrippen,
  .content-two-text-nederlands-basisbegrippen {
    flex: 1 1 100%;
    max-width: 100%;
    order: unset;
  }
}

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

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

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

.content-three-title-nederlands-basisbegrippen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.focus-cards-nederlands-basisbegrippen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.focus-card-nederlands-basisbegrippen {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.focus-card-title-nederlands-basisbegrippen {
  color: #1e293b;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.focus-card-text-nederlands-basisbegrippen {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

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

.content-three-img-nederlands-basisbegrippen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .content-three-wrapper-nederlands-basisbegrippen {
    flex-direction: column;
    gap: 2rem;
  }

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

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

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

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

.content-four-img-nederlands-basisbegrippen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

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

.content-four-title-nederlands-basisbegrippen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-four-text-nederlands-basisbegrippen {
  color: #374151;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.featured-quote-nederlands-basisbegrippen {
  background: #f3f4f6;
  border-left: 4px solid #2563eb;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-style: italic;
}

.quote-text-nederlands-basisbegrippen {
  color: #1f2937;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1rem;
  margin: 0 0 1rem 0;
}

.quote-author-nederlands-basisbegrippen {
  color: #4b5563;
  font-size: 0.9rem;
  font-style: italic;
  display: block;
}

@media (max-width: 768px) {
  .content-four-wrapper-nederlands-basisbegrippen {
    flex-direction: column;
    gap: 2rem;
  }

  .content-four-image-nederlands-basisbegrippen,
  .content-four-text-nederlands-basisbegrippen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-nederlands-basisbegrippen {
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-nederlands-basisbegrippen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-nederlands-basisbegrippen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-nederlands-basisbegrippen {
  color: #d1faf8;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.75;
}

.cta-section-nederlands-basisbegrippen {
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.cta-title-nederlands-basisbegrippen {
  color: #2dd4bf;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-text-nederlands-basisbegrippen {
  color: #99f6e4;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-buttons-nederlands-basisbegrippen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.cta-buttons-nederlands-basisbegrippen a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-buttons-nederlands-basisbegrippen .btn-primary {
  background: #14b8a6;
  color: #042f2e;
}

.cta-buttons-nederlands-basisbegrippen .btn-primary:hover {
  background: #0d9488;
  transform: translateY(-2px);
}

.cta-buttons-nederlands-basisbegrippen .btn-secondary {
  background: transparent;
  color: #2dd4bf;
  border: 2px solid #2dd4bf;
}

.cta-buttons-nederlands-basisbegrippen .btn-secondary:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: 768px) {
  .cta-buttons-nederlands-basisbegrippen {
    flex-direction: column;
  }

  .cta-buttons-nederlands-basisbegrippen a {
    width: 100%;
  }
}

.disclaimer-section-nederlands-basisbegrippen {
  background: #f9fafb;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

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

.disclaimer-title-nederlands-basisbegrippen {
  color: #1e293b;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.related-section-nederlands-basisbegrippen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.related-content-nederlands-basisbegrippen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-title-nederlands-basisbegrippen {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-nederlands-basisbegrippen {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

.related-card-nederlands-basisbegrippen {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.related-card-body-nederlands-basisbegrippen {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-card-title-nederlands-basisbegrippen {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-nederlands-basisbegrippen {
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.related-card-link-nederlands-basisbegrippen {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.related-card-link-nederlands-basisbegrippen:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

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

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

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

.breadcrumbs-nederlands-schrijven {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

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

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

.breadcrumbs-nederlands-schrijven span {
  color: var(--color-text-muted);
}

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

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

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

.hero-tag-nederlands-schrijven {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-primary-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title-nederlands-schrijven {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.hero-subtitle-nederlands-schrijven {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-meta-nederlands-schrijven {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.meta-item-nederlands-schrijven {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.meta-item-nederlands-schrijven i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

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

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

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

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

  .hero-title-nederlands-schrijven {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }
}

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

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

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

.intro-title-nederlands-schrijven {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.intro-text-nederlands-schrijven {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

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

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

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

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

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

.foundations-header-nederlands-schrijven {
  text-align: center;
  margin-bottom: 2rem;
}

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

.foundations-subtitle-nederlands-schrijven {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.foundations-grid-nederlands-schrijven {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-bottom: 3rem;
}

.foundations-step-nederlands-schrijven {
  flex: 1 1 calc(50% - 1rem);
  max-width: 400px;
  display: flex;
  gap: 1.5rem;
}

.step-number-nederlands-schrijven {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: 80px;
  font-family: var(--font-heading);
}

.step-content-nederlands-schrijven {
  flex: 1;
}

.step-title-nederlands-schrijven {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-text-nederlands-schrijven {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.foundations-image-block-nederlands-schrijven {
  width: 100%;
  display: flex;
  justify-content: center;
}

.foundations-image-nederlands-schrijven {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .foundations-step-nederlands-schrijven {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .foundations-grid-nederlands-schrijven {
    flex-direction: column;
  }
}

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

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

.practice-image-block-nederlands-schrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.practice-text-block-nederlands-schrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-nederlands-schrijven {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.practice-text-nederlands-schrijven {
  color: #475569;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.practice-tips-nederlands-schrijven {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.tip-card-nederlands-schrijven {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 150px;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid #14b8a6;
}

.tip-title-nederlands-schrijven {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tip-text-nederlands-schrijven {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .practice-content-nederlands-schrijven {
    flex-direction: column-reverse;
  }

  .practice-image-block-nederlands-schrijven,
  .practice-text-block-nederlands-schrijven {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-tips-nederlands-schrijven {
    flex-direction: column;
  }

  .tip-card-nederlands-schrijven {
    flex: 1 1 100%;
  }
}

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

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

.letters-header-nederlands-schrijven {
  text-align: center;
  margin-bottom: 2rem;
}

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

.letters-subtitle-nederlands-schrijven {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.letters-layout-nederlands-schrijven {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 2rem;
}

.letters-text-block-nederlands-schrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

.letters-subheading-nederlands-schrijven {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.letters-text-nederlands-schrijven {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.letters-list-nederlands-schrijven {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.letters-list-nederlands-schrijven li {
  margin-bottom: 0.75rem;
}

.letters-image-block-nederlands-schrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

.letters-image-nederlands-schrijven {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.letters-example-box-nederlands-schrijven {
  background: rgba(20, 184, 166, 0.1);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.example-title-nederlands-schrijven {
  color: var(--color-primary-light);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.example-text-nederlands-schrijven {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.example-text-nederlands-schrijven:first-of-type {
  color: #ef4444;
}

.example-explanation-nederlands-schrijven {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(20, 184, 166, 0.2);
}

@media (max-width: 768px) {
  .letters-layout-nederlands-schrijven {
    flex-direction: column;
  }

  .letters-text-block-nederlands-schrijven,
  .letters-image-block-nederlands-schrijven {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.tools-header-nederlands-schrijven {
  text-align: center;
  margin-bottom: 2rem;
}

.tools-title-nederlands-schrijven {
  color: #1e293b;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.tools-subtitle-nederlands-schrijven {
  color: #64748b;
  font-size: 1rem;
}

.tools-grid-nederlands-schrijven {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: 2rem;
}

.tool-item-nederlands-schrijven {
  flex: 1 1 calc(50% - 0.75rem);
  max-width: 380px;
  background: #f8fafc;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
}

.tool-item-nederlands-schrijven:hover {
  border-color: #14b8a6;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.tool-name-nederlands-schrijven {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tool-description-nederlands-schrijven {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.tools-image-block-nederlands-schrijven {
  width: 100%;
  display: flex;
  justify-content: center;
}

.tools-image-nederlands-schrijven {
  width: 100%;
  max-width: 700px;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .tool-item-nederlands-schrijven {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .tools-grid-nederlands-schrijven {
    flex-direction: column;
  }
}

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

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

.conclusion-text-block-nederlands-schrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.conclusion-text-nederlands-schrijven {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-highlight-nederlands-schrijven {
  color: var(--color-primary-light);
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 1.5rem;
  background: rgba(20, 184, 166, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 500;
}

.conclusion-cta-block-nederlands-schrijven {
  flex: 1 1 50%;
  max-width: 50%;
}

.cta-box-nederlands-schrijven {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-title-nederlands-schrijven {
  color: var(--color-bg-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.cta-text-nederlands-schrijven {
  color: var(--color-bg-primary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-box-nederlands-schrijven .btn {
  background: var(--color-bg-primary);
  color: var(--color-primary);
  font-weight: 700;
}

.cta-box-nederlands-schrijven .btn:hover {
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .conclusion-content-nederlands-schrijven {
    flex-direction: column;
  }

  .conclusion-text-block-nederlands-schrijven,
  .conclusion-cta-block-nederlands-schrijven {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-nederlands-schrijven {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-nederlands-schrijven {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
}

.disclaimer-title-nederlands-schrijven {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 700;
}

.disclaimer-text-nederlands-schrijven {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.7;
}

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

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

.related-header-nederlands-schrijven {
  text-align: center;
  margin-bottom: 1rem;
}

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

.related-subtitle-nederlands-schrijven {
  color: var(--color-text-muted);
  font-size: 1rem;
}

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

.related-card-nederlands-schrijven {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.related-card-nederlands-schrijven:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.related-card-image-nederlands-schrijven {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.related-card-img-nederlands-schrijven {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.related-card-text-nederlands-schrijven {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-nederlands-schrijven {
  color: var(--color-text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-card-description-nederlands-schrijven {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

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

  .related-cards-netherlands-schrijven {
    flex-direction: column;
  }
}

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

  .hero-content-nederlands-schrijven,
  .intro-content-nederlands-schrijven,
  .practice-content-nederlands-schrijven,
  .letters-layout-nederlands-schrijven,
  .conclusion-content-nederlands-schrijven {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

.dutch-language-journey-about {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow: hidden;
}

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

section {
  width: 100%;
  overflow: hidden;
}

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

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

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

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

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

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

.hero-subtitle-about {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1rem, 2vw, 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, 3vw, 2.5rem);
  width: 100%;
}

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

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

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

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

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

.foundation-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1rem, 2vw, 2rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.4rem clamp(0.75rem, 2vw, 1.2rem);
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

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

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

.foundation-text-about {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
}

.foundation-highlight-about {
  color: var(--color-primary-light);
  font-weight: 600;
}

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

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

.methodology-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1rem, 2vw, 2rem);
}

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

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

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

.step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

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

.step-text-about {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-relaxed);
}

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

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

.approach-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1rem, 2vw, 2rem);
}

.approach-visual-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1rem, 2vw, 2rem) auto;
}

.approach-features-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 2vw, 2rem);
}

.feature-card-about {
  background: rgba(20, 184, 166, 0.08);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

.feature-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  background: rgba(20, 184, 166, 0.12);
}

.card-icon-about {
  color: var(--color-primary);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

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

.card-text-about {
  color: var(--color-text-muted);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: var(--line-height-relaxed);
}

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

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

.featured-quote-about {
  background: rgba(20, 184, 166, 0.1);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  margin: clamp(1.5rem, 2vw, 2rem) 0;
}

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

.quote-author-about {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-style: normal;
}

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

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

.impact-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1rem, 2vw, 2rem);
}

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

.impact-card-about {
  flex: 1 1 260px;
  max-width: 340px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.2);
  text-align: center;
  transition: all var(--transition-base);
}

.impact-card-about:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.impact-number-about {
  color: var(--color-primary);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.impact-label-about {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.impact-description-about {
  color: var(--color-text-muted);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: var(--line-height-relaxed);
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(20, 184, 166, 0.15);
}

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

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

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

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

.disclaimer-text-about {
  color: var(--color-text-muted);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .process-step-about {
    flex-direction: column;
    gap: 1rem;
  }

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

  .hero-stats-about {
    gap: 1.5rem;
  }

  .impact-cards-about {
    flex-direction: column;
  }

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

@media (min-width: 768px) and (max-width: 1024px) {
  .approach-features-about {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .impact-cards-about {
    justify-content: space-around;
  }

  .impact-card-about {
    flex: 0 1 auto;
  }
}

.faq-page {
  width: 100%;
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

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

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

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

.faq-hero__image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
}

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

  .faq-hero__container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .faq-hero__image {
    order: 2;
  }
}

.faq-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-content__container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.faq-item {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.15);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-glow);
}

.faq-item__trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-primary);
  font-weight: 600;
  text-align: left;
  transition: color var(--transition-fast);
}

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

.faq-item__question {
  flex: 1;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
  background-color: rgba(4, 47, 46, 0.3);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

.faq-item__answer p:first-child {
  padding-top: var(--space-md);
}

.faq-content__images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.faq-content__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.faq-content__image:hover {
  transform: translateY(-4px);
}

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

  .faq-item__trigger {
    padding: var(--space-lg);
  }

  .faq-item__answer p {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }

  .faq-item__answer p:first-child {
    padding-top: var(--space-lg);
  }

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

.faq-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-cta__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  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.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0;
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.faq-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.faq-cta__button {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-block;
  cursor: pointer;
  border: none;
  letter-spacing: var(--letter-spacing-wide);
}

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

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

.faq-cta__button--secondary {
  background-color: transparent;
  color: var(--color-text-secondary);
  border: 2px solid var(--color-primary);
}

.faq-cta__button--secondary:hover {
  background-color: rgba(20, 184, 166, 0.1);
  border-color: var(--color-primary-light);
  color: var(--color-text-light);
}

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

  .faq-cta__buttons {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }

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

.services-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-secondary);
}

.services-hero__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

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

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

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

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

.services-content__container {
  max-width: 1200px;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

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

.services-card {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.services-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.services-card__icon {
  width: 56px;
  height: 56px;
  background-color: rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.services-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.services-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.services-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.services-card__features li {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  padding-left: var(--space-md);
  position: relative;
}

.services-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
  border-top: 1px solid var(--color-bg-tertiary);
}

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

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-lg) 0;
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  letter-spacing: var(--letter-spacing-wide);
}

.services-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: var(--shadow-glow-hover);
  transform: translateY(-2px);
}

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

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

.services-images {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-sm);
  overflow: hidden;
}

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

@media (min-width: 768px) {
  .services-images__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-images__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

.services-images__item {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: all var(--transition-base);
  display: block;
}

.services-images__item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

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

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

  .services-images {
    padding: var(--space-3xl) var(--space-lg);
  }
}

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

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

  .legal-hub .legal-hub-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl) 0;
  }

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

  .legal-hub .updated-date {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
    font-style: italic;
  }

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

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

  .legal-hub ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
  }

  .legal-hub li {
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
    line-height: var(--line-height-relaxed);
  }

  .legal-hub .contact-section {
    background-color: var(--color-bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--space-3xl);
  }

  .legal-hub .contact-section h2 {
    color: var(--color-primary-light);
    margin-top: 0;
    margin-bottom: var(--space-md);
  }

  .legal-hub .contact-section p {
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
  }

  .legal-hub .contact-section strong {
    color: var(--color-primary-light);
    font-weight: 600;
  }

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

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

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

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

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

.thank-section {
  width: 100%;
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

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

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.thank-icon {
  width: clamp(80px, 20vw, 120px);
  height: clamp(80px, 20vw, 120px);
  margin-bottom: var(--space-md);
  animation: successBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-success);
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
  margin: 0;
  line-height: var(--line-height-tight);
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  color: var(--color-text-secondary);
  font-weight: 500;
  margin: 0;
  line-height: var(--line-height-normal);
}

.thank-message {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 600px;
}

.thank-next {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  margin-top: var(--space-md);
}

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

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

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

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

@keyframes successBounce {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

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

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

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

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

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

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

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
  }

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

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

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }

  .btn:active {
    transform: none;
  }
}

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

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

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

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

  .btn {
    width: 100%;
    margin-top: var(--space-md);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

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

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

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out;
}

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

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: var(--letter-spacing-tight);
  position: relative;
  z-index: 2;
  text-shadow: 0 0 40px rgba(20, 184, 166, 0.3);
  line-height: 1;
}

.error-animation {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.2;
  animation: pulse-ring 3s ease-in-out infinite;
  z-index: 1;
}

.error-message h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-wide);
}

.error-description {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-suggestions {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  backdrop-filter: blur(10px);
}

.error-suggestions h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-tight);
  font-weight: 600;
}

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

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

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

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

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

.btn-home {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  letter-spacing: var(--letter-spacing-wide);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-glow);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  text-align: center;
  line-height: var(--line-height-normal);
}

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

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

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

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.15;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

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

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

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

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

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

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

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

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

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

.contact-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-page-hero-content {
  position: relative;
  z-index: 1;
}

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

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

@media (min-width: 768px) {
  .contact-page-hero {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-page-hero {
    padding: var(--space-4xl) 0;
  }
}

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

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

.contact-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  width: 100%;
}

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

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

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

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

.contact-page-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
}

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

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

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

.contact-page-input,
.contact-page-textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-lg);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all var(--transition-base);
  outline: none;
}

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

.contact-page-input:focus,
.contact-page-textarea:focus {
  background: rgba(20, 184, 166, 0.12);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.contact-page-textarea {
  min-height: 150px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-page-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-wide);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
}

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

.contact-page-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.contact-page-privacy-notice {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
  text-align: center;
}

.contact-page-privacy-link {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 600;
}

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

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

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

.contact-page-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
}

.contact-page-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-page-info-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-page-info-item:hover {
  background: rgba(20, 184, 166, 0.12);
  border-color: rgba(20, 184, 166, 0.3);
  transform: translateY(-2px);
}

.contact-page-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-primary-light);
  font-size: 1.5rem;
}

.contact-page-info-content {
  flex: 1;
}

.contact-page-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  line-height: var(--line-height-tight);
}

.contact-page-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-light);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-xs);
}

.contact-page-info-link {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 600;
}

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

.contact-page-info-item-meta {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
  font-style: italic;
}

.contact-page-info-cta {
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(15, 118, 110, 0.1) 100%);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-page-info-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.contact-page-info-cta-link {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-base);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.contact-page-info-cta-link:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .contact-page-main {
    padding: var(--space-4xl) 0;
  }

  .contact-page-grid {
    gap: var(--space-4xl);
  }

  .contact-page-form-wrapper {
    flex: 1 1 400px;
  }

  .contact-page-info-wrapper {
    flex: 1 1 400px;
  }
}

@media (min-width: 1024px) {
  .contact-page-main {
    padding: var(--space-4xl) 0;
  }
}

.contact-page-faq {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

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

.contact-page-faq-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: var(--space-sm);
  text-align: center;
  line-height: var(--line-height-tight);
}

.contact-page-faq-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: var(--space-3xl);
  line-height: var(--line-height-normal);
}

.contact-page-faq-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  width: 100%;
}

.contact-page-faq-item {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-page-faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(20, 184, 166, 0.2);
  transform: translateY(-2px);
}

.contact-page-faq-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-tight);
}

.contact-page-faq-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .contact-page-faq {
    padding: var(--space-4xl) 0;
  }

  .contact-page-faq-items {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .contact-page-faq {
    padding: var(--space-4xl) 0;
  }

  .contact-page-faq-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.main-nederlands-leertools {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.hero-section-nederlands-leertools {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

.breadcrumbs-nederlands-leertools {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  flex-wrap: wrap;
}

.breadcrumbs-nederlands-leertools a {
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.breadcrumbs-nederlands-leertools a:hover {
  color: var(--color-primary-light);
}

.breadcrumbs-nederlands-leertools span {
  color: var(--color-text-muted);
}

.breadcrumbs-nederlands-leertools span:last-child {
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

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

.hero-title-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
}

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

.hero-meta-nederlands-leertools {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.meta-item-nederlands-leertools {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.meta-item-nederlands-leertools i {
  color: var(--color-primary);
}

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

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

@media (max-width: 768px) {
  .hero-content-nederlands-leertools {
    flex-direction: column;
    gap: var(--space-lg);
  }

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

  .hero-meta-nederlands-leertools {
    gap: var(--space-md);
  }
}

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

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

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

.intro-title-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.intro-body-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

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

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

@media (max-width: 768px) {
  .intro-content-nederlands-leertools {
    flex-direction: column;
    gap: var(--space-lg);
  }

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

.tools-category-nederlands-leertools {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.tools-header-nederlands-leertools {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.tools-title-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.tools-description-nederlands-leertools {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-relaxed);
}

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

.tool-card-nederlands-leertools {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.tool-card-nederlands-leertools:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-4px);
}

.tool-icon-nederlands-leertools {
  color: var(--color-primary);
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.tool-name-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.tool-text-nederlands-leertools {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .tools-grid-nederlands-leertools {
    flex-direction: column;
    align-items: stretch;
  }

  .tool-card-nederlands-leertools {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.vocabulary-text-nederlands-leertools {
  flex: 1 1 50%;
  max-width: 50%;
}

.vocabulary-title-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.vocabulary-body-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.vocabulary-highlight-nederlands-leertools {
  background: rgba(20, 184, 166, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.highlight-text-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
}

.vocabulary-image-nederlands-leertools {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .vocabulary-wrapper-nederlands-leertools {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .vocabulary-text-nederlands-leertools,
  .vocabulary-image-nederlands-leertools {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.reading-image-nederlands-leertools {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

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

.reading-text-nederlands-leertools {
  flex: 1 1 50%;
  max-width: 50%;
}

.reading-title-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.reading-body-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.reading-list-nederlands-leertools {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.list-item-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .reading-wrapper-nederlands-leertools {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .reading-image-nederlands-leertools {
    order: 0;
  }

  .reading-image-nederlands-leertools,
  .reading-text-nederlands-leertools {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.grammar-title-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-md);
}

.grammar-subtitle-nederlands-leertools {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  text-align: center;
  margin-bottom: var(--space-lg);
}

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

.grammar-card-nederlands-leertools {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-primary);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.grammar-card-nederlands-leertools:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-4px);
}

.card-number-nederlands-leertools {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: var(--space-sm);
}

.card-title-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.card-text-nederlands-leertools {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .grammar-cards-nederlands-leertools {
    flex-direction: column;
    align-items: stretch;
  }

  .grammar-card-nederlands-leertools {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.immersion-text-nederlands-leertools {
  flex: 1 1 50%;
  max-width: 50%;
}

.immersion-title-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.immersion-body-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.immersion-quote-nederlands-leertools {
  background: rgba(20, 184, 166, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
}

.quote-text-nederlands-leertools {
  color: var(--color-text-primary);
  font-style: italic;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.quote-author-nederlands-leertools {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-style: normal;
}

.immersion-image-nederlands-leertools {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .immersion-wrapper-nederlands-leertools {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .immersion-text-nederlands-leertools,
  .immersion-image-nederlands-leertools {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-nederlands-leertools {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.conclusion-text-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.conclusion-cta-nederlands-leertools {
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: var(--space-lg);
}

.cta-text-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.disclaimer-section-nederlands-leertools {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

.disclaimer-content-nederlands-leertools {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.disclaimer-box-nederlands-leertools {
  background: var(--color-bg-card);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-title-nederlands-leertools {
  color: var(--color-primary-light);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.disclaimer-text-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

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

.related-title-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.related-subtitle-nederlands-leertools {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.related-cards-nederlands-leertools {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.related-card-nederlands-leertools {
  flex: 1 1 calc(33.333% - var(--space-lg));
  min-width: 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.related-card-nederlands-leertools:hover {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.related-card-image-nederlands-leertools {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.related-card-nederlands-leertools:hover .related-card-image-nederlands-leertools {
  transform: scale(1.05);
}

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

.related-card-title-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: var(--line-height-tight);
  margin: 0;
}

.related-card-text-nederlands-leertools {
  color: var(--color-text-primary);
  font-size: 0.9rem;
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex: 1;
}

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

@media (max-width: 768px) {
  .related-cards-nederlands-leertools {
    flex-direction: column;
    align-items: center;
  }

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

@media (max-width: 640px) {
  .hero-section-nederlands-leertools,
  .intro-section-nederlands-leertools,
  .tools-category-nederlands-leertools,
  .vocabulary-section-nederlands-leertools,
  .reading-section-nederlands-leertools,
  .grammar-section-nederlands-leertools,
  .immersion-section-nederlands-leertools,
  .conclusion-section-nederlands-leertools,
  .disclaimer-section-nederlands-leertools,
  .related-section-nederlands-leertools {
    padding: 2rem 0;
  }

  .breadcrumbs-nederlands-leertools {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-meta-nederlands-leertools {
    gap: var(--space-md);
  }

  .meta-item-nederlands-leertools {
    font-size: 0.85rem;
  }
}