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

:root {
  
  
  
  
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #334155;
  
  
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  
  
  --color-bg-card-dark: rgba(30, 41, 59, 0.4);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  
  
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  
  
  --color-primary: #06b6d4;
  --color-primary-hover: #0891b2;
  --color-secondary: #0ea5e9;
  --color-tertiary: #10b981;
  
  
  --font-primary: 'Inter', 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;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

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

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

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
}

h5, h6 {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
}

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

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

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

.btn-secondary:hover {
  background: #0284c7;
  transform: translateY(-2px);
}

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

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

.btn-light {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

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

.card {
  background: var(--color-bg-card-light);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hidden-mobile {
    display: none;
  }
  
  h1 {
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .btn {
    width: 100%;
  }
  
  .flex {
    flex-direction: column;
  }
}

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

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

input, textarea, select {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: var(--space-sm) var(--space-md);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  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(6, 182, 212, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  margin-bottom: var(--space-md);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.icon-lg {
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
}

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

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

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

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out;
}

.animate-slideUp {
  animation: slideUp 0.6s ease-out;
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #334155;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(30, 41, 59, 0.4);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  --color-primary: #06b6d4;
  --color-primary-hover: #0891b2;
  --color-secondary: #0ea5e9;
  --color-tertiary: #10b981;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --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;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

.header-taalwijzer-hub {
  background: var(--color-bg-dark-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

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

.header-taalwijzer-hub-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

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

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

.header-taalwijzer-hub-desktop-nav {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: end;
}

.header-taalwijzer-hub-nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.header-taalwijzer-hub-nav-link:hover {
  color: var(--color-primary);
  background: rgba(6, 182, 212, 0.08);
}

.header-taalwijzer-hub-nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-taalwijzer-hub-cta-button {
  background: var(--color-primary);
  color: #0f172a;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.header-taalwijzer-hub-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.header-taalwijzer-hub-cta-button:active {
  transform: translateY(0);
}

.header-taalwijzer-hub-cta-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-taalwijzer-hub-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-text-dark-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.header-taalwijzer-hub-mobile-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(6, 182, 212, 0.08);
}

.header-taalwijzer-hub-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-taalwijzer-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-dark-secondary);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.header-taalwijzer-hub-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-taalwijzer-hub-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-text-dark-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.header-taalwijzer-hub-mobile-close:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(6, 182, 212, 0.08);
}

.header-taalwijzer-hub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  flex: 1;
}

.header-taalwijzer-hub-mobile-link {
  display: block;
  padding: 1rem;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.header-taalwijzer-hub-mobile-link:hover {
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  padding-left: 1.5rem;
}

.header-taalwijzer-hub-mobile-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.header-taalwijzer-hub-mobile-cta {
  display: block;
  margin-top: auto;
  padding: 1rem;
  background: var(--color-primary);
  color: #0f172a;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  margin: 1rem;
  margin-top: auto;
}

.header-taalwijzer-hub-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.header-taalwijzer-hub-mobile-cta:active {
  transform: translateY(0);
}

.header-taalwijzer-hub-mobile-cta:focus-visible {
  outline: 2px solid #0f172a;
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .header-taalwijzer-hub-container {
    padding: 1.25rem clamp(1rem, 5vw, 2rem);
  }

  .header-taalwijzer-hub-desktop-nav {
    display: flex;
  }

  .header-taalwijzer-hub-mobile-toggle {
    display: none;
  }

  .header-taalwijzer-hub-mobile-menu {
    display: none;
  }

  .header-taalwijzer-hub-cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

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

    .language-hub {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-glow-primary {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-secondary {
  position: absolute;
  bottom: 5%;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.hero-floating-accent-2 {
  position: absolute;
  bottom: 15%;
  right: 15%;
  width: 100px;
  height: 100px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
  animation: float 7s ease-in-out infinite reverse;
}

.hero-line-element {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-corner-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 100% 0 0 0;
  z-index: 1;
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.hero-stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-buttons .btn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
}

.approach-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.approach-accent-glow {
  position: absolute;
  top: -100px;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.approach-shape-left {
  position: absolute;
  top: 30%;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.approach-shape-right {
  position: absolute;
  bottom: 10%;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.approach-line-accent {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.approach-content {
  position: relative;
  z-index: 10;
}

.approach-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.approach-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.approach-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.approach-step-number {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.approach-step-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.approach-step-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.features-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #0f172a;
}

.features-glow-top {
  position: absolute;
  top: -150px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-shape-accent {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.features-gradient-field {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-content {
  position: relative;
  z-index: 10;
}

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

.features-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.features-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-card:hover {
  transform: translateY(-8px);
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1);
}

.features-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 12px;
  color: #06b6d4;
  font-size: 1.5rem;
}

.features-card-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.features-card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.featured-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.featured-accent-left {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-glow-bottom {
  position: absolute;
  bottom: -100px;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.featured-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.featured-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.featured-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.featured-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);

  
}

.featured-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.featured-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

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

.featured-card-body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-card-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.featured-card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  flex-grow: 1;
}

.featured-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.featured-meta-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: #f1f5f9;
  color: #475569;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.featured-see-all {
  display: inline-block;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: all 300ms ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.featured-see-all:hover {
  border-bottom-color: #2563eb;
  transform: translateX(4px);
}

.insight-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #1e293b;
}

.insight-shape-top {
  position: absolute;
  top: -50px;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.insight-glow-accent {
  position: absolute;
  bottom: 5%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.insight-line-element {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.insight-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.insight-text-block {
  flex: 1 1 400px;
  min-width: 300px;
}

.insight-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.insight-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.insight-intro {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.insight-quote {
  padding: 1.5rem 1.75rem;
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  margin: 2rem 0;
  border-radius: 4px;
}

.insight-quote p {
  font-size: 1rem;
  font-style: italic;
  color: #e2e8f0;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.insight-quote cite {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
}

.insight-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.insight-image-block {
  flex: 1 1 400px;
  min-width: 300px;
}

.insight-image-block img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.values-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.values-glow-left {
  position: absolute;
  top: 20%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.values-shape-right {
  position: absolute;
  bottom: 10%;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.values-accent-line {
  position: absolute;
  top: 40%;
  right: 8%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.values-content {
  position: relative;
  z-index: 10;
}

.values-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.values-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.values-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.values-item {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.values-number {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.values-item-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.values-item-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a1035 100%);
}

.cta-glow-top {
  position: absolute;
  top: -100px;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-shape-accent {
  position: absolute;
  bottom: 5%;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.cta-gradient-mesh {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.75rem, 3vw, 2.75rem);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.contact-accent-shape {
  position: absolute;
  top: -80px;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-glow-element {
  position: absolute;
  bottom: -100px;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.contact-form-wrapper {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact-form-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  font-size: 0.9375rem;
  color: #64748b;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #1e293b;
  font-family: inherit;
  font-size: 0.9375rem;
  transition: all 300ms ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.contact-submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 300ms ease;
}

.contact-submit:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.contact-submit:active {
  transform: translateY(0);
}

.contact-privacy {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 1rem;
  text-align: center;
}

.contact-privacy-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease;
}

.contact-privacy-link:hover {
  text-decoration: underline;
}

.contact-info {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact-info-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.contact-info-item {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid #e2e8f0;
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.contact-info-item-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

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

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

.cookie-banner-text {
  flex: 1 1 300px;
  color: #e2e8f0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cookie-btn-accept {
  padding: 0.625rem 1.25rem;
  background: #06b6d4;
  color: #000000;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 300ms ease;
}

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

.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.3);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 300ms ease;
}

.cookie-btn-decline:hover {
  border-color: rgba(226, 232, 240, 0.6);
  background: rgba(226, 232, 240, 0.05);
}

@media (max-width: 768px) {
  .approach-step {
    flex-direction: column;
    gap: 1rem;
  }

  .insight-content {
    flex-direction: column;
  }

  .contact-content {
    flex-direction: column;
  }

  .featured-cards {
    flex-direction: column;
  }

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

  .values-grid {
    flex-direction: column;
  }

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

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

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

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

  .hero-stat-number {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .contact-submit {
    width: 100%;
  }

  .cookie-banner {
    flex-direction: column;
    padding: 1rem;
  }

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

  .cookie-btn-accept,
  .cookie-btn-decline {
    width: 100%;
  }
}

    

.footer {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--color-bg-dark-secondary);
}

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

.footer-content {
  display: block;
  position: relative;
  z-index: 10;
}

.footer-about {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  max-width: 500px;
}

.footer-about-title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.footer-about-text {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

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

@media (max-width: 768px) {
  .footer-column {
    flex: 1 1 140px;
  }
}

.footer-column-title {
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  font-size: clamp(0.8125rem, 1vw + 0.3rem, 0.9375rem);
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
}

.footer-nav-link:hover {
  color: var(--color-primary);
}

.footer-nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  font-size: clamp(0.8125rem, 1vw + 0.3rem, 0.9375rem);
  line-height: 1.6;
  margin: 0;
  color: #cbd5e1;
}

.footer-contact-label {
  display: block;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: clamp(0.75rem, 0.9vw + 0.2rem, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.footer-contact-value {
  display: block;
  color: #cbd5e1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal-link {
  font-size: clamp(0.8125rem, 1vw + 0.3rem, 0.9375rem);
  color: #94a3b8;
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
}

.footer-legal-link:hover {
  color: var(--color-primary);
}

.footer-legal-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--color-bg-dark-secondary);
  position: relative;
  z-index: 10;
}

.footer-copyright {
  font-size: clamp(0.75rem, 0.9vw + 0.3rem, 0.875rem);
  color: #64748b;
  margin: 0;
  text-align: center;
  letter-spacing: 0.2px;
}

.footer-deco-glow-1 {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 10%;
  left: -80px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.footer-deco-glow-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: 15%;
  right: -60px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.footer-deco-accent {
  position: absolute;
  width: 150px;
  height: 2px;
  top: 50%;
  left: 10%;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 768px) {
  .footer {
    padding: clamp(4rem, 10vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
  }

  .footer-sections {
    gap: clamp(2.5rem, 6vw, 4rem);
  }

  .footer-column {
    flex: 1 1 220px;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 5rem 0 3.5rem;
  }

  .footer-about {
    margin-bottom: 4rem;
  }

  .footer-column {
    flex: 1 1 250px;
  }

  .footer-sections {
    gap: 4rem;
  }
}

@media (min-width: 1440px) {
  .footer {
    padding: 6rem 0 4rem;
  }

  .footer-about {
    margin-bottom: 5rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  .footer-nav-link,
  .footer-legal-link {
    transition: none;
  }
}

.footer-nav-link:focus,
.footer-legal-link:focus {
  color: var(--color-primary);
}

@media print {
  .footer-deco-glow-1,
  .footer-deco-glow-2,
  .footer-deco-accent {
    display: none;
  }

  .footer {
    border: none;
    background: transparent;
    padding: 2rem 0;
  }

  .footer-nav-link,
  .footer-legal-link {
    color: #0f172a;
  }

  .footer-about-text,
  .footer-contact-value,
  .footer-copyright {
    color: #0f172a;
  }
}
    

.main.category-page-dutch-language-learning {
  width: 100%;
}

.hero-section-dutch {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero-gradient-mesh-dutch {
  position: absolute;
  top: 5%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-accent-dutch {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-shape-float-dutch {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 180px;
  height: 200px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-line-element-dutch {
  position: absolute;
  bottom: 30%;
  right: 10%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-content-dutch {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title-dutch {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: #ffffff;
  line-height: 1.15;
  font-weight: 700;
}

.hero-subtitle-dutch {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  max-width: 600px;
  line-height: 1.6;
}

.hero-stats-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 1rem 0;
}

.stat-item-dutch {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-dutch {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-dutch {
  font-size: 0.875rem;
  color: #94a3b8;
  opacity: 0.9;
}

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

.hero-buttons-dutch .btn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
}

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

.posts-deco-glow-1-dutch {
  position: absolute;
  top: 15%;
  left: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-glow-2-dutch {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-shape-dutch {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 40% 60% 50% 50% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.posts-header-dutch {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.posts-title-dutch {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.posts-subtitle-dutch {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.card-dutch {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.card-dutch:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(6, 182, 212, 0.3);
}

.card-dutch img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-dutch {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e293b;
  font-weight: 600;
  line-height: 1.3;
}

.card-description-dutch {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.meta-badge-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
}

.meta-badge-dutch i {
  font-size: 0.75rem;
}

.card-link-dutch {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #06b6d4;
  color: #0f172a;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: all 300ms ease-in-out;
  text-decoration: none;
}

.card-link-dutch:hover {
  background: #0891b2;
  transform: translateY(-2px);
}

.learning-path-section-dutch {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.learning-path-accent-1-dutch {
  position: absolute;
  top: -50px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-accent-2-dutch {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-header-dutch {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.learning-path-title-dutch {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.learning-path-subtitle-dutch {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.learning-path-steps-dutch {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.learning-path-step-dutch {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  transition: all 300ms ease-in-out;
}

.learning-path-step-dutch:hover {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(6, 182, 212, 0.3);
}

.learning-path-step-number-dutch {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.learning-path-step-content-dutch {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.learning-path-step-title-dutch {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
}

.learning-path-step-text-dutch {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

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

.insights-deco-mesh-dutch {
  position: absolute;
  top: 10%;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.insights-deco-glow-dutch {
  position: absolute;
  bottom: -50px;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.featured-quote-dutch {
  position: relative;
  z-index: 10;
  padding: 2.5rem 2.5rem;
  border-left: 5px solid #06b6d4;
  background: #ffffff;
  margin: 0 0 3rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quote-text-dutch {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quote-author-dutch {
  font-size: 0.9rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.insights-content-dutch {
  position: relative;
  z-index: 10;
  background: #ffffff;
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.insights-title-dutch {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.insights-text-dutch {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.insights-features-dutch {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.insights-feature-dutch {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.insights-feature-icon-dutch {
  font-size: 1.25rem;
  color: #06b6d4;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.insights-feature-text-dutch {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero-buttons-dutch {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-buttons-dutch .btn {
    width: 100%;
    text-align: center;
  }

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

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

  .learning-path-step-dutch {
    flex-direction: column;
    gap: 1.25rem;
  }

  .learning-path-step-number-dutch {
    font-size: 2rem;
    min-width: auto;
  }

  .insights-features-dutch {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats-dutch {
    flex-direction: column;
    gap: 1rem;
  }

  .card-meta-dutch {
    flex-direction: column;
    gap: 0.5rem;
  }

  .featured-quote-dutch {
    padding: 1.5rem;
  }

  .quote-text-dutch {
    font-size: 1.05rem;
  }
}

.main-grammatica-werkwoorden-nederlands {
  width: 100%;
}

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

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

.breadcrumbs-grammatica-werkwoorden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-grammatica-werkwoorden-nederlands {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.breadcrumb-link-grammatica-werkwoorden-nederlands:hover {
  color: #06b6d4;
}

.breadcrumb-separator-grammatica-werkwoorden-nederlands {
  color: #475569;
}

.breadcrumb-current-grammatica-werkwoorden-nederlands {
  color: #06b6d4;
  font-weight: 600;
}

.hero-content-wrapper-grammatica-werkwoorden-Nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-grammatica-werkwoorden-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-meta-badges-grammatica-werkwoorden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta-badge-grammatica-werkwoorden-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-grammatica-werkwoorden-nederlands i {
  font-size: 0.875rem;
}

.hero-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.hero-subtitle-grammatica-werkwoorden-nederlands {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-stats-row-grammatica-werkwoorden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2.5rem;
}

.hero-stat-item-grammatica-werkwoorden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-number-grammatica-werkwoorden-nederlands {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.hero-stat-label-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-block-grammatica-werkwoorden-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-image-grammatica-werkwoorden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.introduction-wrapper-grammatica-werkwoorden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-grammatica-werkwoorden-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

.introduction-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.introduction-paragraph-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.introduction-image-grammatica-werkwoorden-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

.introduction-image-element-grammatica-werkwoorden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .introduction-text-grammatica-werkwoorden-nederlands,
  .introduction-image-grammatica-werkwoorden-nederlands {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

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

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

.foundation-header-grammatica-werkwoorden-nederlands {
  text-align: center;
  margin-bottom: 3rem;
}

.foundation-tag-grammatica-werkwoorden-nederlands {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.foundation-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.foundation-subtitle-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.foundation-cards-grammatica-werkwoorden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.foundation-card-grammatica-werkwoorden-nederlands {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.foundation-card-grammatica-werkwoorden-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.foundation-card-icon-grammatica-werkwoorden-nederlands {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 10px;
  font-size: 1.5rem;
}

.foundation-card-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.foundation-card-text-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

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

.structure-content-wrapper-grammatica-werkwoorden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.structure-image-block-grammatica-werkwoorden-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
  order: -1;
}

.structure-image-element-grammatica-werkwoorden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.structure-text-block-grammatica-werkwoorden-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

.structure-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.structure-paragraph-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.structure-highlight-box-grammatica-werkwoorden-nederlands {
  background: #f1f5f9;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.structure-highlight-text-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 0.9375rem);
  color: #334155;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.structure-highlight-text-grammatica-werkwoorden-nederlands:last-child {
  margin-bottom: 0;
}

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

  .structure-image-block-grammatica-werkwoorden-nederlands,
  .structure-text-block-grammatica-werkwoorden-nederlands {
    flex: 1 1 100%;
    min-width: 100%;
    order: 0;
  }
}

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

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

.conjugation-header-grammatica-werkwoorden-nederlands {
  text-align: center;
  margin-bottom: 3rem;
}

.conjugation-tag-grammatica-werkwoorden-nederlands {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.conjugation-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.conjugation-steps-grammatica-werkwoorden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conjugation-step-grammatica-werkwoorden-nederlands {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.conjugation-step-grammatica-werkwoorden-nederlands:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.conjugation-step-number-grammatica-werkwoorden-nederlands {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.conjugation-step-content-grammatica-werkwoorden-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.conjugation-step-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.conjugation-step-text-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .conjugation-step-grammatica-werkwoorden-nederlands {
    flex-direction: column;
    gap: 1rem;
  }

  .conjugation-step-number-grammatica-werkwoorden-nederlands {
    min-width: auto;
  }
}

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

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

.practical-content-wrapper-grammatica-werkwoorden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.practical-image-block-grammatica-werkwoorden-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

.practical-image-element-grammatica-werkwoorden-nederlands {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practical-text-block-grammatica-werkwoorden-nederlands {
  flex: 1 1 300px;
  min-width: 280px;
}

.practical-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.practical-paragraph-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.practical-tips-box-grammatica-werkwoorden-nederlands {
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
  margin-bottom: 1.5rem;
}

.practical-tips-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.practical-tips-list-grammatica-werkwoorden-nederlands {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.practical-tips-item-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 0.9375rem);
  color: #334155;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.practical-tips-item-grammatica-werkwoorden-nederlands::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

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

  .practical-image-block-grammatica-werkwoorden-nederlands,
  .practical-text-block-grammatica-werkwoorden-nederlands {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

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

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

.conclusion-content-grammatica-werkwoorden-nederlands {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-quote-block-grammatica-werkwoorden-nederlands {
  margin-bottom: 2.5rem;
}

.conclusion-quote-grammatica-werkwoorden-nederlands {
  padding: 2rem;
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  margin: 0;
  border-radius: 8px;
}

.conclusion-quote-text-grammatica-werkwoorden-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.conclusion-quote-author-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #cbd5e1;
  font-style: normal;
}

.conclusion-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-paragraph-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-cta-box-grammatica-werkwoorden-nederlands {
  background: rgba(6, 182, 212, 0.15);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  text-align: center;
  margin-top: 2.5rem;
}

.conclusion-cta-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.conclusion-cta-text-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.conclusion-cta-button-grammatica-werkwoorden-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #06b6d4;
  color: #0f172a;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.conclusion-cta-button-grammatica-werkwoorden-nederlands:hover {
  background: #0891b2;
  transform: translateY(-2px);
}

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

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

.disclaimer-content-grammatica-werkwoorden-nederlands {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #64748b;
}

.disclaimer-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.disclaimer-text-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

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

.related-header-grammatica-werkwoorden-nederlands {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.related-subtitle-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.related-cards-grammatica-werkwoorden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-grammatica-werkwoorden-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  background: transparent;
}

.related-card-image-grammatica-werkwoorden-nederlands {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.related-card-image-grammatica-werkwoorden-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-grammatica-werkwoorden-nederlands {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.related-card-text-grammatica-werkwoorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-grammatica-werkwoorden-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  transition: all 0.2s ease;
}

.related-card-link-grammatica-werkwoorden-nederlands:hover {
  color: #0891b2;
  gap: 0.75rem;
}

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

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

  .introduction-section-grammatica-werkwoorden-nederlands,
  .foundation-section-grammatica-werkwoorden-nederlands,
  .structure-section-grammatica-werkwoorden-nederlands,
  .conjugation-section-grammatica-werkwoorden-nederlands,
  .practical-section-grammatica-werkwoorden-nederlands,
  .conclusion-section-grammatica-werkwoorden-nederlands,
  .related-section-grammatica-werkwoorden-nederlands {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-grammatica-werkwoorden-nederlands {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }
}

.main-woordenschat-dagelijks-nederlands {
  width: 100%;
  background: #ffffff;
}

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

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

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

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

.hero-title-woordenschat-dagelijks-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-woordenschat-dagelijks-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-woordenschat-dagelijks-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-woordenschat-dagelijks-nederlands i {
  font-size: 1rem;
}

.hero-stats-woordenschat-dagelijks-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number-woordenschat-dagelijks-nederlands {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-woordenschat-dagelijks-nederlands {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-wrapper-woordenschat-dagelijks-nederlands {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-woordenschat-dagelijks-nederlands {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-wrapper-woordenschat-dagelijks-nederlands,
  .hero-image-wrapper-woordenschat-dagelijks-nederlands {
    flex: 1 1 100%;
  }

  .hero-stats-woordenschat-dagelijks-nederlands {
    gap: 1.5rem;
  }
}

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

.breadcrumb-link-woordenschat-dagelijks-nederlands {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-woordenschat-dagelijks-nederlands:hover {
  color: #0891b2;
  text-decoration: underline;
}

.breadcrumb-separator-woordenschat-dagelijks-nederlands {
  color: #64748b;
  margin: 0 0.25rem;
}

.breadcrumb-current-woordenschat-dagelijks-nederlands {
  color: #cbd5e1;
}

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

.introduction-content-woordenschat-dagelijks-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-woordenschat-dagelijks-nederlands {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.introduction-title-woordenschat-dagelijks-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.introduction-description-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.introduction-image-woordenschat-dagelijks-nederlands {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.introduction-image-woordenschat-dagelijks-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .introduction-content-woordenschat-dagelijks-nederlands {
    flex-direction: column;
  }

  .introduction-text-woordenschat-dagelijks-nederlands,
  .introduction-image-woordenschat-dagelijks-nederlands {
    flex: 1 1 100%;
  }
}

.section-header-woordenschat-dagelijks-nederlands {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-woordenschat-dagelijks-nederlands {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

.section-subtitle-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.vocabulary-content-woordenschat-dagelijks-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 5vw, 4rem);
  align-items: center;
}

.vocabulary-text-woordenschat-dagelijks-nederlands {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.vocabulary-subtitle-woordenschat-dagelijks-nederlands {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #0f172a;
}

.vocabulary-description-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.vocabulary-list-woordenschat-dagelijks-nederlands {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vocabulary-item-woordenschat-dagelijks-nederlands {
  padding: 1rem;
  background: #ffffff;
  border-left: 4px solid #06b6d4;
  border-radius: 4px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

.vocabulary-word-woordenschat-dagelijks-nederlands {
  color: #0f172a;
  font-weight: 600;
}

.vocabulary-quote-woordenschat-dagelijks-nederlands {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 4px;
  margin: 1.5rem 0;
}

.vocabulary-quote-text-woordenschat-dagelijks-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.vocabulary-quote-author-woordenschat-dagelijks-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.vocabulary-image-woordenschat-dagelijks-nederlands {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vocabulary-image-woordenschat-dagelijks-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .vocabulary-content-woordenschat-dagelijks-nederlands {
    flex-direction: column;
  }

  .vocabulary-text-woordenschat-dagelijks-nederlands,
  .vocabulary-image-woordenschat-dagelijks-nederlands {
    flex: 1 1 100%;
  }
}

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

.situations-wrapper-woordenschat-dagelijks-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.situation-step-woordenschat-dagelijks-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.step-number-woordenschat-dagelijks-nederlands {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.step-content-woordenschat-dagelijks-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-woordenschat-dagelijks-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.step-description-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

.situations-image-section-woordenschat-dagelijks-nederlands {
  display: flex;
  align-items: center;
  justify-content: center;
}

.situations-image-woordenschat-dagelijks-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .situation-step-woordenschat-dagelijks-nederlands {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-woordenschat-dagelijks-nederlands {
    min-width: auto;
  }
}

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

.expressions-content-woordenschat-dagelijks-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 5vw, 4rem);
  align-items: center;
}

.expressions-text-woordenschat-dagelijks-nederlands {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.expressions-subtitle-woordenschat-dagelijks-nederlands {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #0f172a;
}

.expressions-description-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.expression-card-woordenschat-dagelijks-nederlands {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.expression-phrase-woordenschat-dagelijks-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #06b6d4;
}

.expression-meaning-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

.expressions-image-woordenschat-dagelijks-nederlands {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expressions-image-woordenschat-dagelijks-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .expressions-content-woordenschat-dagelijks-nederlands {
    flex-direction: column;
  }

  .expressions-text-woordenschat-dagelijks-nederlands,
  .expressions-image-woordenschat-dagelijks-nederlands {
    flex: 1 1 100%;
  }
}

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

.advanced-content-woordenschat-dagelijks-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 5vw, 4rem);
  align-items: center;
}

.advanced-text-woordenschat-dagelijks-nederlands {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.advanced-subtitle-woordenschat-dagelijks-nederlands {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #0f172a;
}

.advanced-description-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.nuance-group-woordenschat-dagelijks-nederlands {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #06b6d4;
}

.nuance-title-woordenschat-dagelijks-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.nuance-list-woordenschat-dagelijks-nederlands {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nuance-item-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
}

.nuance-item-woordenschat-dagelijks-nederlands::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

.advanced-image-woordenschat-dagelijks-nederlands {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advanced-image-woordenschat-dagelijks-nederlands {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .advanced-content-woordenschat-dagelijks-nederlands {
    flex-direction: column;
  }

  .advanced-text-woordenschat-dagelijks-nederlands,
  .advanced-image-woordenschat-dagelijks-nederlands {
    flex: 1 1 100%;
  }
}

.practical-tips-section-woordenschat-dagelijks-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-grid-woordenschat-dagelijks-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tip-card-woordenschat-dagelijks-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tip-card-woordenschat-dagelijks-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tip-icon-woordenschat-dagelijks-nederlands {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 10px;
  font-size: 1.5rem;
}

.tip-title-woordenschat-dagelijks-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.tip-text-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tip-card-woordenschat-dagelijks-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.conclusion-content-woordenschat-dagelijks-nederlands {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.conclusion-title-woordenschat-dagelijks-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-text-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.conclusion-highlight-woordenschat-dagelijks-nederlands {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(6, 182, 212, 0.15);
  border-left: 4px solid #06b6d4;
  border-radius: 4px;
}

.highlight-text-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #f1f5f9;
  line-height: 1.8;
}

.conclusion-cta-woordenschat-dagelijks-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #06b6d4;
  color: #0f172a;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 1rem;
  align-self: center;
}

.conclusion-cta-woordenschat-dagelijks-nederlands:hover {
  background: #0891b2;
  transform: translateY(-2px);
}

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

.disclaimer-content-woordenschat-dagelijks-nederlands {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-woordenschat-dagelijks-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

.related-title-woordenschat-dagelijks-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.related-subtitle-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-woordenschat-dagelijks-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.related-card-woordenschat-dagelijks-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.related-card-image-woordenschat-dagelijks-nederlands {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.related-card-image-woordenschat-dagelijks-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-woordenschat-dagelijks-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-woordenschat-dagelijks-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-woordenschat-dagelijks-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-woordenschat-dagelijks-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  align-self: flex-start;
  margin-top: auto;
}

.related-card-link-woordenschat-dagelijks-nederlands:hover {
  color: #0891b2;
  text-decoration: underline;
}

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

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

  .introduction-section-woordenschat-dagelijks-nederlands,
  .vocabulary-basics-section-woordenschat-dagelijks-nederlands,
  .daily-situations-section-woordenschat-dagelijks-nederlands,
  .expressions-section-woordenschat-dagelijks-nederlands,
  .advanced-vocabulary-section-woordenschat-dagelijks-nederlands,
  .practical-tips-section-woordenschat-dagelijks-nederlands,
  .conclusion-section-woordenschat-dagelijks-nederlands,
  .disclaimer-section-woordenschat-dagelijks-nederlands,
  .related-section-woordenschat-dagelijks-nederlands {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-stats-woordenschat-dagelijks-nederlands {
    gap: 1rem;
  }

  .stat-number-woordenschat-dagelijks-nederlands {
    font-size: 2rem;
  }

  .breadcrumbs-woordenschat-dagelijks-nederlands {
    font-size: 0.75rem;
  }
}

.main-nederlandse-cultuur-taal-traditie {
  width: 100%;
  background: #ffffff;
  color: #1a1a1a;
}

.hero-section-nederlandse-cultuur-taal-traditie {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

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

.hero-text-wrapper-nederlandse-cultuur-taal-traditie {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-title-nederlandse-cultuur-taal-traditie {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}

.hero-subtitle-nederlandse-cultuur-taal-traditie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.article-meta-nederlandse-cultuur-taal-traditie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta-badge-nederlandse-cultuur-taal-traditie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-nederlandse-cultuur-taal-traditie i {
  font-size: 0.875rem;
}

.hero-image-wrapper-nederlandse-cultuur-taal-traditie {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-image-nederlandse-cultuur-taal-traditie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.breadcrumbs-nederlandse-cultuur-taal-traditie {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-nederlandse-cultuur-taal-traditie {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlandse-cultuur-taal-traditie:hover {
  color: #06b6d4;
}

.breadcrumb-separator-nederlandse-cultuur-taal-traditie {
  color: #475569;
}

.breadcrumb-current-nederlandse-cultuur-taal-traditie {
  color: #06b6d4;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-nederlandse-cultuur-taal-traditie {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-text-wrapper-nederlandse-cultuur-taal-traditie,
  .hero-image-wrapper-nederlandse-cultuur-taal-traditie {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.introduction-section-nederlandse-cultuur-taal-traditie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.introduction-content-nederlandse-cultuur-taal-traditie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.introduction-text-nederlandse-cultuur-taal-traditie {
  flex: 1 1 350px;
}

.introduction-paragraph-nederlandse-cultuur-taal-traditie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-highlight-nederlandse-cultuur-taal-traditie {
  flex: 1 1 350px;
}

.featured-quote-nederlandse-cultuur-taal-traditie {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  font-style: italic;
  border-radius: 8px;
}

.featured-quote-nederlandse-cultuur-taal-traditie p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.featured-quote-nederlandse-cultuur-taal-traditie cite {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

@media (max-width: 768px) {
  .introduction-content-nederlandse-cultuur-taal-traditie {
    flex-direction: column;
  }
  
  .introduction-text-nederlandse-cultuur-taal-traditie,
  .introduction-highlight-nederlandse-cultuur-taal-traditie {
    flex: 1 1 100%;
  }
}

.content-section-one-nederlandse-cultuur-taal-traditie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-wrapper-one-nederlandse-cultuur-taal-traditie {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.content-text-one-nederlandse-cultuur-taal-traditie {
  flex: 1 1 350px;
}

.content-title-one-nederlandse-cultuur-taal-traditie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-paragraph-one-nederlandse-cultuur-taal-traditie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-box-one-nederlandse-cultuur-taal-traditie {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
  margin-top: 2rem;
}

.highlight-title-one-nederlandse-cultuur-taal-traditie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.highlight-list-one-nederlandse-cultuur-taal-traditie {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-item-one-nederlandse-cultuur-taal-traditie {
  font-size: 0.9375rem;
  color: #374151;
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-one-nederlandse-cultuur-taal-traditie::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

.content-image-one-nederlandse-cultuur-taal-traditie {
  flex: 1 1 350px;
}

.content-image-nederlandse-cultuur-taal-traditie {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-wrapper-one-nederlandse-cultuur-taal-traditie {
    flex-direction: column;
  }
  
  .content-text-one-nederlandse-cultuur-taal-traditie,
  .content-image-one-nederlandse-cultuur-taal-traditie {
    flex: 1 1 100%;
  }
}

.content-section-two-nederlandse-cultuur-taal-traditie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-wrapper-two-nederlandse-cultuur-taal-traditie {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.content-image-two-nederlandse-cultuur-taal-traditie {
  flex: 1 1 350px;
  order: -1;
}

.content-text-two-nederlandse-cultuur-taal-traditie {
  flex: 1 1 350px;
}

.content-title-two-nederlandse-cultuur-taal-traditie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-paragraph-two-nederlandse-cultuur-taal-traditie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-box-two-nederlandse-cultuur-taal-traditie {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #10b981;
  margin-top: 2rem;
}

.highlight-title-two-nederlandse-cultuur-taal-traditie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.highlight-list-two-nederlandse-cultuur-taal-traditie {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-item-two-nederlandse-cultuur-taal-traditie {
  font-size: 0.9375rem;
  color: #374151;
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-two-nederlandse-cultuur-taal-traditie::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

@media (max-width: 768px) {
  .content-wrapper-two-nederlandse-cultuur-taal-traditie {
    flex-direction: column;
  }
  
  .content-text-two-nederlandse-cultuur-taal-traditie,
  .content-image-two-nederlandse-cultuur-taal-traditie {
    flex: 1 1 100%;
    order: 0;
  }
}

.content-section-three-nederlandse-cultuur-taal-traditie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-wrapper-three-nederlandse-cultuur-taal-traditie {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.content-text-three-nederlandse-cultuur-taal-traditie {
  flex: 1 1 350px;
}

.content-title-three-nederlandse-cultuur-taal-traditie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-paragraph-three-nederlandse-cultuur-taal-traditie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.numbered-steps-nederlandse-cultuur-taal-traditie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-item-nederlandse-cultuur-taal-traditie {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.step-number-nederlandse-cultuur-taal-traditie {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-nederlandse-cultuur-taal-traditie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-nederlandse-cultuur-taal-traditie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.step-text-nederlandse-cultuur-taal-traditie {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.content-image-three-nederlandse-cultuur-taal-traditie {
  flex: 1 1 350px;
}

@media (max-width: 768px) {
  .content-wrapper-three-nederlandse-cultuur-taal-traditie {
    flex-direction: column;
  }
  
  .content-text-three-nederlandse-cultuur-taal-traditie,
  .content-image-three-nederlandse-cultuur-taal-traditie {
    flex: 1 1 100%;
  }
}

.content-section-four-nederlandse-cultuur-taal-traditie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-wrapper-four-nederlandse-cultuur-taal-traditie {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.content-image-four-nederlandse-cultuur-taal-traditie {
  flex: 1 1 350px;
  order: -1;
}

.content-text-four-nederlandse-cultuur-taal-traditie {
  flex: 1 1 350px;
}

.content-title-four-nederlandse-cultuur-taal-traditie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-paragraph-four-nederlandse-cultuur-taal-traditie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.regional-cards-nederlandse-cultuur-taal-traditie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 2rem;
}

.regional-card-nederlandse-cultuur-taal-traditie {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.card-region-title-nederlandse-cultuur-taal-traditie {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.card-region-text-nederlandse-cultuur-taal-traditie {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-wrapper-four-nederlandse-cultuur-taal-traditie {
    flex-direction: column;
  }
  
  .content-text-four-nederlandse-cultuur-taal-traditie,
  .content-image-four-nederlandse-cultuur-taal-traditie {
    flex: 1 1 100%;
    order: 0;
  }
  
  .regional-card-nederlandse-cultuur-taal-traditie {
    flex: 1 1 100%;
  }
}

.conclusion-section-nederlandse-cultuur-taal-traditie {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-nederlandse-cultuur-taal-traditie {
  max-width: 900px;
}

.conclusion-title-nederlandse-cultuur-taal-traditie {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.conclusion-paragraph-nederlandse-cultuur-taal-traditie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.conclusion-tips-nederlandse-cultuur-taal-traditie {
  background: rgba(6, 182, 212, 0.1);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
  margin-bottom: 2.5rem;
}

.tips-heading-nederlandse-cultuur-taal-traditie {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tips-list-nederlandse-cultuur-taal-traditie {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tip-item-nederlandse-cultuur-taal-traditie {
  font-size: 0.9375rem;
  color: #e2e8f0;
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.tip-item-nederlandse-cultuur-taal-traditie::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

.cta-section-nederlandse-cultuur-taal-traditie {
  background: rgba(6, 182, 212, 0.15);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
}

.cta-title-nederlandse-cultuur-taal-traditie {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-nederlandse-cultuur-taal-traditie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-nederlandse-cultuur-taal-traditie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #06b6d4;
  color: #0f172a;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-nederlandse-cultuur-taal-traditie:hover {
  background: #0891b2;
  transform: translateY(-2px);
}

.disclaimer-section-nederlandse-cultuur-taal-traditie {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-nederlandse-cultuur-taal-traditie {
  max-width: 800px;
}

.disclaimer-title-nederlandse-cultuur-taal-traditie {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlandse-cultuur-taal-traditie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.8;
}

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

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

.related-header-nederlandse-cultuur-taal-traditie {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-nederlandse-cultuur-taal-traditie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.related-subtitle-nederlandse-cultuur-taal-traditie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.related-cards-nederlandse-cultuur-taal-traditie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-link-nederlandse-cultuur-taal-traditie {
  flex: 1 1 300px;
  text-decoration: none;
  color: inherit;
}

.related-card-nederlandse-cultuur-taal-traditie {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.related-card-nederlandse-cultuur-taal-traditie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #06b6d4;
}

.related-card-image-nederlandse-cultuur-taal-traditie {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-nederlandse-cultuur-taal-traditie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-nederlandse-cultuur-taal-traditie:hover .related-card-image-nederlandse-cultuur-taal-traditie img {
  transform: scale(1.05);
}

.related-card-content-nederlandse-cultuur-taal-traditie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  flex: 1;
}

.related-card-title-nederlandse-cultuur-taal-traditie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-description-nederlandse-cultuur-taal-traditie {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-card-meta-nederlandse-cultuur-taal-traditie {
  font-size: 0.8125rem;
  color: #06b6d4;
  font-weight: 500;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .related-card-link-nederlandse-cultuur-taal-traditie {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .hero-section-nederlandse-cultuur-taal-traditie,
  .introduction-section-nederlandse-cultuur-taal-traditie,
  .content-section-one-nederlandse-cultuur-taal-traditie,
  .content-section-two-nederlandse-cultuur-taal-traditie,
  .content-section-three-nederlandse-cultuur-taal-traditie,
  .content-section-four-nederlandse-cultuur-taal-traditie,
  .conclusion-section-nederlandse-cultuur-taal-traditie,
  .disclaimer-section-nederlandse-cultuur-taal-traditie,
  .related-section-nederlandse-cultuur-taal-traditie {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-nederlandse-cultuur-taal-traditie {
    font-size: 0.75rem;
  }
  
  .article-meta-nederlandse-cultuur-taal-traditie {
    gap: 0.5rem;
  }
  
  .meta-badge-nederlandse-cultuur-taal-traditie {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
}

.main-conversatie-nederlands-spreken {
  width: 100%;
}

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

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

.breadcrumb-link-conversatie-nederlands-spreken {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-conversatie-nederlands-spreken:hover {
  color: #06b6d4;
}

.breadcrumb-separator-conversatie-nederlands-spreken {
  color: #64748b;
}

.breadcrumb-current-conversatie-nederlands-spreken {
  color: #cbd5e1;
}

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

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

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

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

.hero-meta-conversatie-nederlands-spreken {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-conversatie-nederlands-spreken {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #38bdf8;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-conversatie-nederlands-spreken i {
  color: #06b6d4;
}

.hero-stats-conversatie-nederlands-spreken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.stat-item-conversatie-nederlands-spreken {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-conversatie-nederlands-spreken {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-conversatie-nederlands-spreken {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

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

.hero-image-conversatie-nederlands-spreken {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

  .hero-stats-conversatie-nederlands-spreken {
    gap: 1.5rem;
  }
}

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

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

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

.intro-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.intro-description-conversatie-nederlands-spreken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

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

.intro-img-conversatie-nederlands-spreken {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.foundations-header-conversatie-nederlands-spreken {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-conversatie-nederlands-spreken {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.foundations-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.foundations-subtitle-conversatie-nederlands-spreken {
  color: #64748b;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.foundations-steps-conversatie-nederlands-spreken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.foundations-step-conversatie-nederlands-spreken {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
  align-items: flex-start;
}

.step-number-conversatie-nederlands-spreken {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-conversatie-nederlands-spreken {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.step-text-conversatie-nederlands-spreken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .foundations-step-conversatie-nederlands-spreken {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-conversatie-nederlands-spreken {
    min-width: auto;
  }
}

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

.techniques-header-conversatie-nederlands-spreken {
  text-align: center;
  margin-bottom: 3rem;
}

.techniques-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.techniques-text-conversatie-nederlands-spreken {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-h3-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}

.techniques-p-conversatie-nederlands-spreken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.techniques-list-conversatie-nederlands-spreken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.techniques-image-conversatie-nederlands-spreken {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-img-conversatie-nederlands-spreken {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .techniques-content-conversatie-nederlands-spreken {
    flex-direction: column;
  }

  .techniques-text-conversatie-nederlands-spreken,
  .techniques-image-conversatie-nederlands-spreken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.patterns-header-conversatie-nederlands-spreken {
  text-align: center;
  margin-bottom: 3rem;
}

.patterns-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.patterns-wrapper-conversatie-nederlands-spreken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.patterns-image-conversatie-nederlands-spreken {
  flex: 1 1 50%;
  max-width: 50%;
}

.patterns-img-conversatie-nederlands-spreken {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.patterns-text-conversatie-nederlands-spreken {
  flex: 1 1 50%;
  max-width: 50%;
}

.patterns-h3-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

.patterns-p-conversatie-nederlands-spreken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.pattern-box-conversatie-nederlands-spreken {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #06b6d4;
  margin: 1.5rem 0;
}

.pattern-box-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pattern-box-text-conversatie-nederlands-spreken {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.patterns-cards-conversatie-nederlands-spreken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.patterns-card-conversatie-nederlands-spreken {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.patterns-card-conversatie-nederlands-spreken:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
}

.card-text-conversatie-nederlands-spreken {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .patterns-wrapper-conversatie-nederlands-spreken {
    flex-direction: column;
  }

  .patterns-image-conversatie-nederlands-spreken,
  .patterns-text-conversatie-nederlands-spreken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .patterns-card-conversatie-nederlands-spreken {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.practice-header-conversatie-nederlands-spreken {
  text-align: center;
  margin-bottom: 3rem;
}

.practice-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.practice-subtitle-conversatie-nederlands-spreken {
  color: #64748b;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.practice-text-conversatie-nederlands-spreken {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-h3-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

.practice-p-conversatie-nederlands-spreken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.practice-list-conversatie-nederlands-spreken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.practice-quote-conversatie-nederlands-spreken {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-conversatie-nederlands-spreken {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.quote-cite-conversatie-nederlands-spreken {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.practice-image-conversatie-nederlands-spreken {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-conversatie-nederlands-spreken {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.advanced-header-conversatie-nederlands-spreken {
  text-align: center;
  margin-bottom: 3rem;
}

.advanced-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.advanced-strategies-conversatie-nederlands-spreken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.strategy-card-conversatie-nederlands-spreken {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.strategy-card-conversatie-nederlands-spreken:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategy-icon-conversatie-nederlands-spreken {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  color: #06b6d4;
  font-size: 1.5rem;
}

.strategy-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
}

.strategy-text-conversatie-nederlands-spreken {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategy-card-conversatie-nederlands-spreken {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.conclusion-content-conversatie-nederlands-spreken {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.conclusion-text-conversatie-nederlands-spreken {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-conversatie-nederlands-spreken {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 2.5rem;
  text-align: center;
}

.cta-title-conversatie-nederlands-spreken {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.cta-text-conversatie-nederlands-spreken {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-conversatie-nederlands-spreken {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #0f172a;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-conversatie-nederlands-spreken:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

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

.disclaimer-content-conversatie-nederlands-spreken {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-conversatie-nederlands-spreken {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

.related-header-conversatie-nederlands-spreken {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.related-subtitle-conversatie-nederlands-spreken {
  color: #64748b;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-conversatie-nederlands-spreken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.related-card-conversatie-nederlands-spreken {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-conversatie-nederlands-spreken:hover {
  background: #f1f5f9;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.related-card-title-conversatie-nederlands-spreken {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
}

.related-card-text-conversatie-nederlands-spreken {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-conversatie-nederlands-spreken {
  color: #06b6d4;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.related-link-conversatie-nederlands-spreken:hover {
  color: #0891b2;
}

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

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

  .intro-section-conversatie-nederlands-spreken,
  .techniques-section-conversatie-nederlands-spreken,
  .practice-section-conversatie-nederlands-spreken,
  .conclusion-section-conversatie-nederlands-spreken,
  .related-section-conversatie-nederlands-spreken {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .foundations-section-conversatie-nederlands-spreken,
  .patterns-section-conversatie-nederlands-spreken,
  .advanced-section-conversatie-nederlands-spreken {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-conversatie-nederlands-spreken {
    padding: 6rem 0;
  }

  .intro-section-conversatie-nederlands-spreken,
  .techniques-section-conversatie-nederlands-spreken,
  .practice-section-conversatie-nederlands-spreken,
  .conclusion-section-conversatie-nederlands-spreken,
  .related-section-conversatie-nederlands-spreken {
    padding: 6rem 0;
  }

  .foundations-section-conversatie-nederlands-spreken,
  .patterns-section-conversatie-nederlands-spreken,
  .advanced-section-conversatie-nederlands-spreken {
    padding: 6rem 0;
  }
}

.main-nederlands-schrijven-grammatica-stijl {
  width: 100%;
  background: #ffffff;
}

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

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

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

.hero-text-wrapper-nederlands-schrijven-grammatica-stijl {
  flex: 1 1 45%;
  min-width: 300px;
}

.hero-title-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.meta-badge-nederlands-schrijven-grammatica-stijl {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-nederlands-schrijven-grammatica-stijl i {
  font-size: 0.875rem;
}

.hero-image-wrapper-nederlands-schrijven-grammatica-stijl {
  flex: 1 1 55%;
  min-width: 280px;
}

.hero-image-nederlands-schrijven-grammatica-stijl {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-nederlands-schrijven-grammatica-stijl {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-nederlands-schrijven-grammatica-stijl {
  color: #06b6d4;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlands-schrijven-grammatica-stijl:hover {
  color: #0891b2;
  text-decoration: underline;
}

.breadcrumb-separator-nederlands-schrijven-grammatica-stijl,
.breadcrumb-current-nederlands-schrijven-grammatica-stijl {
  color: #94a3b8;
}

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

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

.intro-text-block-nederlands-schrijven-grammatica-stijl {
  flex: 1 1 50%;
  min-width: 300px;
}

.intro-title-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-image-block-nederlands-schrijven-grammatica-stijl {
  flex: 1 1 50%;
  min-width: 280px;
}

.intro-image-nederlands-schrijven-grammatica-stijl {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fundamentals-section-nederlands-schrijven-grammatica-stijl {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.section-header-nederlands-schrijven-grammatica-stijl {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-nederlands-schrijven-grammatica-stijl {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.fundamentals-title-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.fundamentals-subtitle-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.fundamentals-steps-nederlands-schrijven-grammatica-stijl {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fundamentals-step-nederlands-schrijven-grammatica-stijl {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.fundamentals-step-number-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #06b6d4;
  flex-shrink: 0;
  min-width: 60px;
}

.fundamentals-step-content-nederlands-schrijven-grammatica-stijl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fundamentals-step-title-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.fundamentals-step-text-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #64748b;
}

.spelling-section-nederlands-schrijven-grammatica-stijl {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.spelling-wrapper-nederlands-schrijven-grammatica-stijl {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.spelling-text-block-nederlands-schrijven-grammatica-stijl {
  flex: 1 1 50%;
  min-width: 300px;
}

.spelling-title-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.spelling-description-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.spelling-image-block-nederlands-schrijven-grammatica-stijl {
  flex: 1 1 50%;
  min-width: 280px;
}

.spelling-image-nederlands-schrijven-grammatica-stijl {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.style-section-nederlands-schrijven-grammatica-stijl {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.style-title-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.style-cards-nederlands-schrijven-grammatica-stijl {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.style-card-nederlands-schrijven-grammatica-stijl {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.style-card-nederlands-schrijven-grammatica-stijl:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.style-card-icon-nederlands-schrijven-grammatica-stijl {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 10px;
  font-size: 1.5rem;
}

.style-card-title-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.style-card-text-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #64748b;
}

.common-errors-section-nederlands-schrijven-grammatica-stijl {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.common-errors-wrapper-nederlands-schrijven-grammatica-stijl {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.common-errors-image-block-nederlands-schrijven-grammatica-stijl {
  flex: 1 1 50%;
  min-width: 280px;
}

.common-errors-image-nederlands-schrijven-grammatica-stijl {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.common-errors-text-block-nederlands-schrijven-grammatica-stijl {
  flex: 1 1 50%;
  min-width: 300px;
}

.common-errors-title-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.common-errors-quote-nederlands-schrijven-grammatica-stijl {
  padding: 1.5rem 2rem;
  border-left: 4px solid #06b6d4;
  background: #f1f5f9;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.quote-text-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.quote-author-nederlands-schrijven-grammatica-stijl {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.common-errors-subheading-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.common-errors-text-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.conclusion-content-nederlands-schrijven-grammatica-stijl {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.conclusion-text-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-cta-button-nederlands-schrijven-grammatica-stijl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #06b6d4;
  color: #000000;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.conclusion-cta-button-nederlands-schrijven-grammatica-stijl:hover {
  background: #0891b2;
  transform: translateY(-2px);
}

.related-section-nederlands-schrijven-grammatica-stijl {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

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

.related-title-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.related-cards-nederlands-schrijven-grammatica-stijl {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.related-card-nederlands-schrijven-grammatica-stijl {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.related-card-nederlands-schrijven-grammatica-stijl:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-card-content-nederlands-schrijven-grammatica-stijl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.related-card-title-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.related-card-text-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #64748b;
}

.related-card-link-nederlands-schrijven-grammatica-stijl {
  color: #06b6d4;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-card-link-nederlands-schrijven-grammatica-stijl:hover {
  color: #0891b2;
  text-decoration: underline;
}

.disclaimer-section-nederlands-schrijven-grammatica-stijl {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-nederlands-schrijven-grammatica-stijl {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-schrijven-grammatica-stijl {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-nederlands-schrijven-grammatica-stijl,
  .intro-wrapper-nederlands-schrijven-grammatica-stijl,
  .spelling-wrapper-nederlands-schrijven-grammatica-stijl,
  .common-errors-wrapper-nederlands-schrijven-grammatica-stijl {
    flex-direction: column;
  }

  .hero-text-wrapper-nederlands-schrijven-grammatica-stijl,
  .hero-image-wrapper-nederlands-schrijven-grammatica-stijl,
  .intro-text-block-nederlands-schrijven-grammatica-stijl,
  .intro-image-block-nederlands-schrijven-grammatica-stijl,
  .spelling-text-block-nederlands-schrijven-grammatica-stijl,
  .spelling-image-block-nederlands-schrijven-grammatica-stijl,
  .common-errors-image-block-nederlands-schrijven-grammatica-stijl,
  .common-errors-text-block-nederlands-schrijven-grammatica-stijl {
    flex: 1 1 100%;
    max-width: none;
  }

  .style-card-nederlands-schrijven-grammatica-stijl {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-nederlands-schrijven-grammatica-stijl {
    flex: 1 1 100%;
    max-width: none;
  }

  .fundamentals-step-nederlands-schrijven-grammatica-stijl {
    flex-direction: column;
  }

  .fundamentals-step-number-nederlands-schrijven-grammatica-stijl {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-meta-nederlands-schrijven-grammatica-stijl {
    flex-direction: column;
    gap: 0.75rem;
  }

  .breadcrumbs-nederlands-schrijven-grammatica-stijl {
    font-size: 0.75rem;
  }
}

:root {
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #334155;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(30, 41, 59, 0.4);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  --color-primary: #06b6d4;
  --color-primary-hover: #0891b2;
  --color-secondary: #0ea5e9;
  --color-tertiary: #10b981;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.dutch-learning-foundation-about {
  width: 100%;
}

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

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

.hero-welcome-text-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-welcome-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-welcome-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  line-height: 1.6;
}

.hero-welcome-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.hero-stats-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: 2rem;
}

.stat-card-about {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

@media (min-width: 768px) {
  .hero-welcome-about {
    padding: 5rem 0;
  }
  
  .hero-welcome-content-about {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  
  .hero-welcome-text-about {
    flex: 1;
  }
  
  .hero-welcome-image-about {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .hero-welcome-about {
    padding: 6rem 0;
  }
}

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

.methodology-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.methodology-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.methodology-description-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.learning-step-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learning-step-about:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.step-number-about {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

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

.step-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .methodology-section-about {
    padding: 5rem 0;
  }
  
  .learning-step-about {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .step-number-about {
    min-width: 80px;
    flex-shrink: 0;
  }
}

.expertise-features-about {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.expertise-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

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

.expertise-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.features-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.feature-card-about {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card-about:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.feature-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.feature-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.feature-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .expertise-features-about {
    padding: 5rem 0;
  }
  
  .feature-card-about {
    flex: 1 1 300px;
  }
}

.vision-quote-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.quote-container-about {
  max-width: 900px;
  margin: 0 auto;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.quote-text-about {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quote-author-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  font-style: normal;
  font-weight: 500;
}

@media (min-width: 768px) {
  .vision-quote-about {
    padding: 5rem 0;
  }
}

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

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

.impact-text-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.impact-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
}

.impact-description-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.8;
}

.impact-highlights-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item-about {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-icon-about {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.highlight-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-primary);
  line-height: 1.6;
  font-weight: 500;
}

.impact-visual-about {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .impact-section-about {
    padding: 5rem 0;
  }
  
  .impact-content-about {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  
  .impact-text-about {
    flex: 1;
  }
  
  .impact-visual-about {
    flex: 1;
  }
}

.commitment-disclaimer-about {
  background: var(--color-bg-light-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-about {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-heading-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

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

.disclaimer-icon-about {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-light-secondary);
  line-height: 1.8;
  text-align: left;
}

@media (min-width: 768px) {
  .commitment-disclaimer-about {
    padding: 4rem 0;
  }
}

.privacy-portal {
  font-family: var(--font-primary);
  background: var(--color-bg-light-primary);
  color: var(--color-text-light-primary);
  overflow-x: hidden;
}

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

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

.privacy-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.privacy-hero-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 700px;
}

.privacy-updated-date {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 1rem;
}

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

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.privacy-section-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-section-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.privacy-section-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy-list-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  position: relative;
  padding-left: 0.75rem;
}

.privacy-list-item::before {
  content: "";
  position: absolute;
  left: -1rem;
  color: var(--color-primary);
  font-weight: bold;
}

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

.privacy-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.privacy-contact-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.privacy-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.privacy-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 600px;
}

.privacy-contact-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.privacy-contact-item strong {
  color: #0f172a;
  font-weight: 600;
}

@media (min-width: 768px) {
  .privacy-hero-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .privacy-content-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .privacy-contact-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .privacy-content {
    gap: 3.5rem;
  }

  .privacy-section-block {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .privacy-hero-section {
    padding: 6rem 0;
  }

  .privacy-content-section {
    padding: 6rem 0;
  }

  .privacy-contact-section {
    padding: 6rem 0;
  }

  .privacy-content {
    gap: 4rem;
  }

  .privacy-section-block {
    gap: 1.5rem;
  }
}

.thank-page {
  width: 100%;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4rem, 12vw, 6rem);
  height: clamp(4rem, 12vw, 6rem);
  background: rgba(6, 182, 212, 0.15);
  border-radius: 50%;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.thank-icon i {
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--color-primary);
}

.thank-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
}

.thank-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-primary);
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.25);
}

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

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .thank-icon {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .thank-content {
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3rem;
  }
}

  .error-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  
  .error-section {
    width: 100%;
    background: var(--color-bg-dark-primary);
    padding: clamp(2rem, 8vw, 4rem) 0;
    overflow: hidden;
    position: relative;
  }

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

  .error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .error-inner {
    text-align: center;
    max-width: 600px;
    width: 100%;
  }

  
  .error-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
  }

  .error-decoration-1 {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    top: -100px;
    left: -100px;
  }

  .error-decoration-2 {
    width: 250px;
    height: 250px;
    background: var(--color-secondary);
    bottom: -80px;
    right: -80px;
  }

  
  .error-code-wrapper {
    position: relative;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .error-code {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -2px;
    margin: 0;
    text-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
  }

  .error-icon {
    width: clamp(3rem, 8vw, 5rem);
    height: clamp(3rem, 8vw, 5rem);
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--color-primary);
    animation: float 3s ease-in-out infinite;
  }

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

  
  .error-title {
    color: var(--color-text-dark-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    line-height: 1.2;
  }

  .error-description {
    color: var(--color-text-dark-secondary);
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    line-height: 1.6;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .error-subtext {
    color: var(--color-text-dark-muted);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.6;
    margin: 0 0 clamp(2rem, 5vw, 2.5rem) 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .btn {
    display: inline-block;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.75rem, 4vw, 2.5rem);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: clamp(2rem, 5vw, 3rem);
  }

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

  .btn-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(6, 182, 212, 0.2);
  }

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

  
  .error-suggestions {
    margin-top: clamp(2rem, 5vw, 3rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(30, 41, 59, 0.4);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
  }

  .suggestions-title {
    color: var(--color-text-dark-primary);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 700;
    margin: 0 0 clamp(1rem, 2vw, 1.25rem) 0;
  }

  .suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }

  .suggestions-list li {
    color: var(--color-text-dark-secondary);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .suggestions-list i {
    color: var(--color-primary);
    font-size: clamp(0.875rem, 1.5vw, 1.05rem);
    flex-shrink: 0;
    margin-top: 2px;
  }

  
  @media (min-width: 768px) {
    .error-section {
      padding: clamp(3rem, 8vw, 5rem) 0;
    }

    .error-decoration-1 {
      width: 400px;
      height: 400px;
      top: -150px;
      left: -150px;
    }

    .error-decoration-2 {
      width: 350px;
      height: 350px;
      bottom: -100px;
      right: -100px;
    }

    .error-code-wrapper {
      margin-bottom: 2.5rem;
    }

    .error-suggestions {
      margin-top: 2.5rem;
    }
  }

  
  @media (min-width: 1024px) {
    .error-section {
      padding: 6rem 0;
      min-height: 100vh;
    }

    .error-decoration-1 {
      width: 500px;
      height: 500px;
      top: -200px;
      left: -200px;
    }

    .error-decoration-2 {
      width: 450px;
      height: 450px;
      bottom: -150px;
      right: -150px;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(6, 182, 212, 0.3);
    }
  }

  
  @media (min-width: 1440px) {
    .error-code {
      font-size: 8rem;
    }

    .error-title {
      font-size: 2.75rem;
    }
  }

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

    .btn,
    .btn-primary {
      transition: none;
    }
  }