
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&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(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;

  --color-text-light-primary: #ffffff;
  --color-text-light-secondary: #cbd5e1;
  --color-text-light-muted: #94a3b8;
  --color-text-dark-primary: #0f172a;
  --color-text-dark-secondary: #374151;
  --color-text-dark-muted: #64748b;

  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #06b6d4;
  --color-accent-warm: #f59e0b;
  --color-success: #10b981;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  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.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

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

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

.btn-accent {
  background: var(--color-accent-warm);
  color: #ffffff;
  border-color: var(--color-accent-warm);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

label {
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

input,
textarea,
select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) var(--space-md);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

.flex {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
}

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

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

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

.card {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
}

.card-light {
  background: var(--color-bg-card-light);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
}

.card-light:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.5rem, 6vw, 3.5rem);
  height: clamp(2.5rem, 6vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  flex-shrink: 0;
}

.icon-secondary {
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-secondary);
}

.icon-accent {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent-warm);
}

.badge {
  display: inline-block;
  padding: clamp(0.25rem, 1vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-primary-light);
  border-radius: var(--radius-md);
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-secondary {
  background: rgba(6, 182, 212, 0.2);
  color: var(--color-secondary);
}

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

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

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

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

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

.mb-0 {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

  .flex {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

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

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

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

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

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

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

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@supports (font-variation-settings: normal) {
  body {
    font-variation-settings: "wght" 400;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-variation-settings: "wght" 700;
  }

  strong,
  .font-bold {
    font-variation-settings: "wght" 700;
  }
}
.header-learn-forge {
    position: static;
    width: 100%;
    background: var(--color-bg-dark-primary);
    border-bottom: 1px solid var(--color-bg-dark-secondary);
    z-index: 100;
  }

  .header-learn-forge-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: clamp(4rem, 10vw, 5.5rem);
    gap: 2rem;
  }

  .header-learn-forge-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 300ms ease;
  }

  .header-learn-forge-brand:hover {
    transform: translateY(-2px);
  }

  .header-learn-forge-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .header-learn-forge-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 3vw, 1.375rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
  }

  .header-learn-forge-desktop-nav {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex: 1;
    justify-content: flex-end;
  }

  .header-learn-forge-nav-link {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 500;
    color: var(--color-text-light-secondary);
    text-decoration: none;
    transition: color 300ms ease, text-shadow 300ms ease;
    position: relative;
  }

  .header-learn-forge-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 300ms ease;
  }

  .header-learn-forge-nav-link:hover {
    color: var(--color-text-light-primary);
  }

  .header-learn-forge-nav-link:hover::after {
    width: 100%;
  }

  .header-learn-forge-cta-button {
    display: none;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-learn-forge-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  }

  .header-learn-forge-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--color-text-light-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 300ms ease;
    flex-shrink: 0;
  }

  .header-learn-forge-mobile-toggle:hover {
    color: var(--color-primary);
  }

  .header-learn-forge-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--color-bg-dark-secondary);
    display: flex;
    flex-direction: column;
    padding-top: clamp(4rem, 10vw, 5.5rem);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }

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

  .header-learn-forge-mobile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 5vw, 2rem);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-bg-dark-tertiary);
    padding-bottom: 1.5rem;
  }

  .header-learn-forge-mobile-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-light-primary);
  }

  .header-learn-forge-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--color-text-light-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 300ms ease;
  }

  .header-learn-forge-mobile-close:hover {
    color: var(--color-primary);
  }

  .header-learn-forge-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 clamp(1rem, 5vw, 2rem);
    flex: 1;
    overflow-y: auto;
  }

  .header-learn-forge-mobile-link {
    display: block;
    padding: 1rem 1rem;
    background: var(--color-bg-dark-tertiary);
    color: var(--color-text-light-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    transition: all 300ms ease;
  }

  .header-learn-forge-mobile-link:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateX(4px);
  }

  .header-learn-forge-mobile-cta {
    display: block;
    margin: 2rem clamp(1rem, 5vw, 2rem);
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-learn-forge-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  }

  @media (min-width: 768px) {
    .header-learn-forge-mobile-toggle {
      display: none;
    }

    .header-learn-forge-mobile-menu {
      display: none;
    }

    .header-learn-forge-desktop-nav {
      display: flex;
    }

    .header-learn-forge-cta-button {
      display: inline-block;
    }
  }

  @media (max-width: 767px) {
    .header-learn-forge-desktop-nav {
      display: none !important;
    }

    .header-learn-forge-cta-button {
      display: none !important;
    }
  }

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

    .header-learn-forge-desktop-nav {
      gap: 2.5rem;
    }

    .header-learn-forge-nav-link {
      font-size: 1rem;
    }

    .header-learn-forge-cta-button {
      padding: 0.875rem 1.75rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .header-learn-forge-brand,
    .header-learn-forge-nav-link,
    .header-learn-forge-cta-button,
    .header-learn-forge-mobile-toggle,
    .header-learn-forge-mobile-menu,
    .header-learn-forge-mobile-link {
      transition: none !important;
    }
  }

    .dutch-exam-hub {
  width: 100%;
}

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

.hero-radiance-glow-index {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh-index {
  position: absolute;
  bottom: -50px;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.12) 0%, transparent 65%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-index {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-side-shimmer-index {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 40% 60% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-corner-light-index {
  position: absolute;
  top: 5%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: rgba(34, 197, 94, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

.hero-subtitle-index {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #f1f5f9;
  font-weight: 600;
}

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

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

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

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

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

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.hero-image-block-index {
  flex: 1 1 350px;
  min-height: 400px;
}

.hero-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.features-accent-shape-index {
  position: absolute;
  top: -80px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.features-glow-field-index {
  position: absolute;
  bottom: 5%;
  left: -100px;
  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;
}

.features-corner-element-index {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.features-side-decoration-index {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(245, 158, 11, 0.07);
  border-radius: 60% 40% 50% 50%;
  z-index: 2;
  pointer-events: none;
}

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

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

.features-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.features-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.features-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.features-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-card-index:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.15);
}

.features-card-icon-index {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 12px;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.features-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

.features-card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  flex-grow: 1;
}

.process-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--color-bg-dark-secondary);
}

.process-bg-shape-index {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 40% 60% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

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

.process-detail-line-index {
  position: absolute;
  top: 25%;
  right: 10%;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.process-header-index {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.process-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.process-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.process-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-index:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-primary);
}

.process-step-number-index {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

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

.process-step-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.process-step-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.posts-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #f8fafc;
}

.posts-shape-accent-index {
  position: absolute;
  top: -50px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 50% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.posts-glow-element-index {
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.posts-floating-card-index {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 40% 60% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

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

.posts-header-index {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.posts-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.posts-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.posts-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.posts-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.posts-card-index:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.12);
}

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

.posts-card-content-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.posts-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

.posts-card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  flex-grow: 1;
}

.posts-card-link-index {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease;
  align-self: flex-start;
}

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

.posts-cta-index {
  text-align: center;
}

.quote-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--color-bg-dark-primary);
}

.quote-deco-left-index {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.quote-deco-right-index {
  position: absolute;
  right: -50px;
  bottom: 10%;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 60% 40% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

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

.quote-block-index {
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
}

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

.quote-author-index {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.about-gradient-index {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.about-shape-top-index {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 60% 40% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.about-shape-bottom-index {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.07);
  border-radius: 40% 60% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

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

.about-text-block-index {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.about-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
}

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

.about-points-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.about-point-index {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-point-icon-index {
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 800;
  flex-shrink: 0;
}

.about-point-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

.about-image-block-index {
  flex: 1 1 350px;
  min-height: 400px;
}

.about-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.benefits-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--color-bg-dark-secondary);
}

.benefits-mesh-index {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12) 0%, transparent 65%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.benefits-orb-left-index {
  position: absolute;
  bottom: 5%;
  left: -50px;
  width: 280px;
  height: 280px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-orb-right-index {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.07);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-accent-line-index {
  position: absolute;
  left: 20%;
  top: 0;
  width: 2px;
  height: 150px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.benefits-header-index {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.benefits-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.benefits-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.benefits-item-index {
  flex: 1 1 280px;
  max-width: 300px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-item-index:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.benefits-item-number-index {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
}

.benefits-item-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.benefits-item-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.cta-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

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

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

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

.cta-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.cta-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.contact-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--color-bg-dark-primary);
}

.contact-shape-accent-index {
  position: absolute;
  top: -80px;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 40% 60% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

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

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

.contact-form-wrapper-index {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form-title-index {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 800;
  color: #ffffff;
}

.contact-form-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.5rem);
}

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

.contact-label-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: #e2e8f0;
}

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem) 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 300ms ease;
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.contact-input-index::placeholder,
.contact-textarea-index::placeholder {
  color: #94a3b8;
}

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

.contact-submit-index {
  width: 100%;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) 2rem;
  background: var(--color-primary);
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
}

.contact-submit-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

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

.contact-info-wrapper-index {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-title-index {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 800;
  color: #ffffff;
}

.contact-faq-item-index {
  padding: clamp(1.25rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--color-primary);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-faq-question-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: #f1f5f9;
}

.contact-faq-answer-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.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);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner-text {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  max-width: 500px;
  margin: 0;
  line-height: 1.5;
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  cursor: pointer;
  transition: all 300ms ease;
  font-family: var(--font-body);
}

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

.cookie-btn-accept:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

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

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

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

  .hero-image-block-index {
    min-height: 300px;
  }

  .about-content-index {
    flex-direction: column-reverse;
  }

  .about-image-block-index {
    min-height: 300px;
  }

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

  .contact-form-wrapper-index,
  .contact-info-wrapper-index {
    flex: 1 1 100%;
  }

  .features-card-index,
  .posts-card-index,
  .benefits-item-index {
    flex: 1 1 100%;
    max-width: none;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-text {
    max-width: none;
  }

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

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

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

    :root {
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #334155;
  --color-text-light-primary: #ffffff;
  --color-text-light-secondary: #cbd5e1;
  --color-text-light-muted: #94a3b8;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #06b6d4;
  --color-accent-warm: #f59e0b;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

.footer-about-text {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  line-height: 1.7;
  color: var(--color-text-light-muted);
}

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

.footer-nav-title,
.footer-contact-title,
.footer-legal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: -0.3px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1.5vw, 0.875rem);
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--color-text-light-muted);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

.footer-nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer-nav-link:hover::before {
  width: 100%;
}

.footer-contact-section {
  flex: 1 1 280px;
  min-width: 250px;
}

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

.footer-contact-item {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  line-height: 1.6;
  color: var(--color-text-light-muted);
  margin: 0;
}

.footer-contact-label {
  display: block;
  color: var(--color-text-light-secondary);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.footer-contact-value {
  color: var(--color-text-light-muted);
  word-break: break-word;
}

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

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1.5vw, 0.875rem);
}

.footer-legal-link {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  color: var(--color-text-light-muted);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-warm);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer-legal-link:hover::after {
  width: 100%;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(96, 165, 250, 0.2),
    transparent
  );
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.25vw, 0.8125rem);
  color: var(--color-text-light-muted);
  text-align: center;
  margin: 0;
  letter-spacing: 0.3px;
}

.footer-decoration-glow-1 {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

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

.footer-decoration-accent {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 2;
  pointer-events: none;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .footer-about-section,
  .footer-nav-section,
  .footer-contact-section,
  .footer-legal-section {
    flex: 1 1 100%;
  }

  .footer-nav-links,
  .footer-legal-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
  }

  .footer-decoration-glow-1 {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -150px;
  }

  .footer-decoration-glow-2 {
    width: 180px;
    height: 180px;
    bottom: -100px;
    left: -140px;
  }

  .footer-decoration-accent {
    width: 150px;
    height: 150px;
    right: 2%;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: clamp(2rem, 6vw, 3rem) 0 clamp(1.5rem, 4vw, 2rem) 0;
  }

  .footer-content {
    gap: clamp(1.25rem, 3vw, 2rem);
  }

  .footer-nav-links,
  .footer-legal-links {
    grid-template-columns: 1fr;
    gap: clamp(0.5rem, 1vw, 0.625rem);
  }

  .footer-divider {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .footer-decoration-glow-1,
  .footer-decoration-glow-2,
  .footer-decoration-accent {
    opacity: 0.5;
  }
}

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

.category-page-dutch-exam {
  width: 100%;
}

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

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

.hero-deco-glow-dutch-exam {
  position: absolute;
  top: 5%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-deco-accent-dutch-exam {
  position: absolute;
  bottom: 10%;
  left: 20%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-content-dutch-exam {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero-header-dutch-exam {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
}

.hero-title-dutch-exam {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-dutch-exam {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #cbd5e1;
  line-height: 1.5;
}

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

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

.stat-number-dutch-exam {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  display: block;
}

.stat-label-dutch-exam {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  font-weight: 500;
}

.hero-cta-dutch-exam {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 2rem);
}

.hero-cta-dutch-exam .btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.9rem, 1vw, 1.125rem);
}

.btn-primary {
  background: #3b82f6;
  color: #ffffff;
  border: 2px solid #3b82f6;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-outline:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

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

.posts-header-dutch-exam {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.posts-tag-dutch-exam {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.posts-title-dutch-exam {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

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

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

.card-dutch-exam {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.card-dutch-exam:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

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

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

.card-description-dutch-exam {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.meta-badge-dutch-exam {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

.card-link-dutch-exam {
  display: inline-block;
  margin-top: auto;
  padding: 0.75rem 1.25rem;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}

.card-link-dutch-exam:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .card-dutch-exam {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-dutch-exam {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .stat-item-dutch-exam {
    flex: 1 1 150px;
  }

  .hero-cta-dutch-exam {
    flex-direction: column;
  }

  .hero-cta-dutch-exam .btn {
    width: 100%;
  }
}

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

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

.learning-path-deco-2-dutch-exam {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-header-dutch-exam {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.learning-path-tag-dutch-exam {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.learning-path-title-dutch-exam {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

.learning-path-subtitle-dutch-exam {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.learning-path-steps-dutch-exam {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.learning-path-step-dutch-exam {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.learning-path-step-dutch-exam:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
}

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

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

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

.learning-path-step-text-dutch-exam {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .learning-path-step-dutch-exam {
    flex-direction: column;
  }

  .learning-path-step-number-dutch-exam {
    min-width: auto;
  }
}

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

.resources-deco-glow-dutch-exam {
  position: absolute;
  top: 10%;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.resources-deco-shape-dutch-exam {
  position: absolute;
  bottom: 15%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
  z-index: 1;
  pointer-events: none;
}

.resources-header-dutch-exam {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.resources-tag-dutch-exam {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.2);
  color: #22d3ee;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.resources-title-dutch-exam {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
}

.resources-content-dutch-exam {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

.resources-text-block-dutch-exam {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.resources-intro-dutch-exam,
.resources-benefit-dutch-exam,
.resources-closing-dutch-exam {
  font-size: clamp(0.95rem, 1.2vw, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.resources-quote-dutch-exam {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.75rem, 3vw, 2.25rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  margin: clamp(0.75rem, 2vw, 1.5rem) 0;
  font-style: italic;
}

.resources-quote-text-dutch-exam {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.6;
}

.resources-quote-cite-dutch-exam {
  font-size: clamp(0.8rem, 1vw, 0.9375rem);
  color: #94a3b8;
  font-style: normal;
}

.resources-highlights-dutch-exam {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  min-width: 300px;
}

.resources-highlight-card-dutch-exam {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.resources-highlight-card-dutch-exam:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-3px);
}

.resources-highlight-icon-dutch-exam {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border-radius: 8px;
  font-size: 1.5rem;
}

.resources-highlight-title-dutch-exam {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: #ffffff;
}

.resources-highlight-text-dutch-exam {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.5;
}

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

  .resources-highlights-dutch-exam {
    flex: 1 1 100%;
    min-width: auto;
  }

  .resources-text-block-dutch-exam {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-stats-dutch-exam {
    gap: 1rem;
  }

  .stat-item-dutch-exam {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .learning-path-step-dutch-exam {
    padding: 1rem;
  }

  .card-dutch-exam {
    padding: 1rem;
  }

  .resources-quote-dutch-exam {
    padding: 1.25rem 1.5rem;
  }
}

.main-mondeling-examen-voorbereiding {
  width: 100%;
  background: #ffffff;
}

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

.breadcrumbs-mondeling-examen-voorbereiding {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  color: #64748b;
}

.breadcrumbs-mondeling-examen-voorbereiding a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-mondeling-examen-voorbereiding a:hover {
  color: #2563eb;
  text-decoration: underline;
}

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

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

.hero-text-wrapper-mondeling-examen-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-description-mondeling-examen-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-mondeling-examen-voorbereiding {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-mondeling-examen-voorbereiding {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-mondeling-examen-voorbereiding i {
  font-size: 0.875rem;
}

.hero-stats-mondeling-examen-voorbereiding {
  display: flex;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 2rem;
}

.stat-item-mondeling-examen-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-mondeling-examen-voorbereiding {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  display: block;
  line-height: 1;
}

.stat-label-mondeling-examen-voorbereiding {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-wrapper-mondeling-examen-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-mondeling-examen-voorbereiding {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

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

.intro-text-mondeling-examen-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-mondeling-examen-voorbereiding {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-mondeling-examen-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-image-mondeling-examen-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.technique-section-mondeling-examen-voorbereiding {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-mondeling-examen-voorbereiding {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-mondeling-examen-voorbereiding {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.technique-title-mondeling-examen-voorbereiding {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.technique-subtitle-mondeling-examen-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.techniques-steps-mondeling-examen-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-step-mondeling-examen-voorbereiding {
  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;
}

.technique-step-mondeling-examen-voorbereiding:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.technique-step-number-mondeling-examen-voorbereiding {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.technique-step-content-mondeling-examen-voorbereiding {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.technique-step-title-mondeling-examen-voorbereiding {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.technique-step-text-mondeling-examen-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.6;
}

.strategies-section-mondeling-examen-voorbereiding {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-content-mondeling-examen-voorbereiding {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategies-text-mondeling-examen-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-mondeling-examen-voorbereiding {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.strategies-description-mondeling-examen-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.strategy-card-mondeling-examen-voorbereiding {
  padding: 1.5rem;
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.strategy-card-title-mondeling-examen-voorbereiding {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.strategy-card-text-mondeling-examen-voorbereiding {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.strategies-image-mondeling-examen-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-img-mondeling-examen-voorbereiding {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mindset-section-mondeling-examen-voorbereiding {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mindset-content-mondeling-examen-voorbereiding {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mindset-image-mondeling-examen-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-img-mondeling-examen-voorbereiding {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.mindset-text-mondeling-examen-voorbereiding {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-title-mondeling-examen-voorbereiding {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.mindset-description-mondeling-examen-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.featured-quote-mondeling-examen-voorbereiding {
  padding: 1.75rem 2rem;
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  margin: 2rem 0;
}

.quote-text-mondeling-examen-voorbereiding {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-mondeling-examen-voorbereiding {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
  display: block;
}

.mindset-paragraph-mondeling-examen-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.resources-section-mondeling-examen-voorbereiding {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.resources-title-mondeling-examen-voorbereiding {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.resources-subtitle-mondeling-examen-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.resources-cards-mondeling-examen-voorbereiding {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2.5rem;
  justify-content: center;
}

.resources-card-mondeling-examen-voorbereiding {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.resources-card-mondeling-examen-voorbereiding:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}

.resources-card-icon-mondeling-examen-voorbereiding {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  color: #3b82f6;
  font-size: 1.75rem;
}

.resources-card-title-mondeling-examen-voorbereiding {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.resources-card-text-mondeling-examen-voorbereiding {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

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

.conclusion-content-mondeling-examen-voorbereiding {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-mondeling-examen-voorbereiding {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.conclusion-text-mondeling-examen-voorbereiding {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-emphasis-mondeling-examen-voorbereiding {
  font-size: 1.125rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 2.5rem;
}

.cta-box-mondeling-examen-voorbereiding {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-box-title-mondeling-examen-voorbereiding {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-box-text-mondeling-examen-voorbereiding {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.cta-box-mondeling-examen-voorbereiding .btn {
  background: #ffffff;
  color: #3b82f6;
  font-weight: 600;
}

.cta-box-mondeling-examen-voorbereiding .btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.disclaimer-content-mondeling-examen-voorbereiding {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.75rem;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  border-top: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.disclaimer-title-mondeling-examen-voorbereiding {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-text-mondeling-examen-voorbereiding {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
}

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

.related-header-mondeling-examen-voorbereiding {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-mondeling-examen-voorbereiding {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

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

.related-cards-mondeling-examen-voorbereiding {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-mondeling-examen-voorbereiding {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.related-card-mondeling-examen-voorbereiding:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.related-card-image-mondeling-examen-voorbereiding {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.related-card-image-mondeling-examen-voorbereiding img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-mondeling-examen-voorbereiding:hover .related-card-image-mondeling-examen-voorbereiding img {
  transform: scale(1.05);
}

.related-card-content-mondeling-examen-voorbereiding {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-mondeling-examen-voorbereiding {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-mondeling-examen-voorbereiding {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
  flex: 1;
}

.related-card-arrow-mondeling-examen-voorbereiding {
  color: #3b82f6;
  font-weight: 600;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
}

.btn-primary:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
  .hero-content-mondeling-examen-voorbereiding,
  .intro-content-mondeling-examen-voorbereiding,
  .strategies-content-mondeling-examen-voorbereiding,
  .mindset-content-mondeling-examen-voorbereiding {
    flex-direction: column;
  }

  .hero-text-wrapper-mondeling-examen-voorbereiding,
  .hero-image-wrapper-mondeling-examen-voorbereiding,
  .intro-text-mondeling-examen-voorbereiding,
  .intro-image-mondeling-examen-voorbereiding,
  .strategies-text-mondeling-examen-voorbereiding,
  .strategies-image-mondeling-examen-voorbereiding,
  .mindset-text-mondeling-examen-voorbereiding,
  .mindset-image-mondeling-examen-voorbereiding {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-mondeling-examen-voorbereiding {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-mondeling-examen-voorbereiding {
    text-align: left;
  }

  .technique-step-mondeling-examen-voorbereiding {
    padding: 1.25rem;
    gap: 1rem;
  }

  .technique-step-number-mondeling-examen-voorbereiding {
    min-width: 60px;
  }

  .cta-box-mondeling-examen-voorbereiding {
    padding: 1.75rem;
  }

  .related-card-mondeling-examen-voorbereiding {
    flex: 1 1 100%;
    max-width: none;
  }

  .conclusion-content-mondeling-examen-voorbereiding {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title-mondeling-examen-voorbereiding {
    margin-bottom: 1rem;
  }

  .hero-meta-mondeling-examen-voorbereiding {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-badge-mondeling-examen-voorbereiding {
    width: 100%;
    justify-content: flex-start;
  }

  .technique-step-mondeling-examen-voorbereiding {
    flex-direction: column;
    gap: 0.75rem;
  }

  .technique-step-number-mondeling-examen-voorbereiding {
    min-width: auto;
  }

  .strategy-card-mondeling-examen-voorbereiding {
    padding: 1rem;
  }

  .disclaimer-content-mondeling-examen-voorbereiding {
    padding: 1rem;
  }
}

.main-nederlandse-grammatica-grondbeginselen {
  width: 100%;
}

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

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

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

.breadcrumbs-nederlandse-grammatica-grondbeginselen a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.breadcrumbs-nederlandse-grammatica-grondbeginselen span {
  color: #cbd5e1;
}

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

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

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

.hero-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.article-meta-nederlandse-grammatica-grondbeginselen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-nederlandse-grammatica-grondbeginselen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #38bdf8;
  border-radius: 20px;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  font-weight: 500;
}

.meta-badge-nederlandse-grammatica-grondbeginselen i {
  font-size: 1rem;
}

.hero-image-nederlandse-grammatica-grondbeginselen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

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

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

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

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

.introduction-text-block-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-block-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.introduction-description-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.introduction-image-nederlandse-grammatica-grondbeginselen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .introduction-text-block-nederlandse-grammatica-grondbeginselen,
  .introduction-image-block-nederlandse-grammatica-grondbeginselen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fundamentals-section-nederlandse-grammatica-grondbeginselen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.fundamentals-header-nederlandse-grammatica-grondbeginselen {
  text-align: center;
  margin-bottom: 3rem;
}

.fundamentals-tag-nederlandse-grammatica-grondbeginselen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #38bdf8;
  border-radius: 20px;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fundamentals-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.fundamentals-subtitle-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.fundamentals-steps-nederlandse-grammatica-grondbeginselen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.fundamentals-step-nederlandse-grammatica-grondbeginselen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.fundamentals-step-nederlandse-grammatica-grondbeginselen:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}

.fundamentals-step-number-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #3b82f6;
  flex-shrink: 0;
  min-width: 80px;
}

.fundamentals-step-content-nederlandse-grammatica-grondbeginselen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fundamentals-step-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.fundamentals-step-text-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .fundamentals-step-nederlandse-grammatica-grondbeginselen {
    flex-direction: column;
    align-items: flex-start;
  }

  .fundamentals-step-number-nederlandse-grammatica-grondbeginselen {
    min-width: 60px;
  }
}

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

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

.adjectives-text-block-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.adjectives-image-block-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.adjectives-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.adjectives-description-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.adjectives-highlight-nederlandse-grammatica-grondbeginselen {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #dbeafe;
  border-left: 4px solid #3b82f6;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}

.highlight-text-nederlandse-grammatica-grondbeginselen {
  color: #0f172a;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.6;
}

.adjectives-image-nederlandse-grammatica-grondbeginselen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .adjectives-text-block-nederlandse-grammatica-grondbeginselen,
  .adjectives-image-block-nederlandse-grammatica-grondbeginselen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.tenses-image-block-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.tenses-text-block-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 50%;
  max-width: 50%;
}

.tenses-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.tenses-description-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.tenses-image-nederlandse-grammatica-grondbeginselen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .tenses-image-block-nederlandse-grammatica-grondbeginselen,
  .tenses-text-block-nederlandse-grammatica-grondbeginselen {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.practice-section-nederlandse-grammatica-grondbeginselen {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-header-nederlandse-grammatica-grondbeginselen {
  text-align: center;
  margin-bottom: 3rem;
}

.practice-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.practice-subtitle-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.practice-cards-nederlandse-grammatica-grondbeginselen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.practice-card-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.practice-card-nederlandse-grammatica-grondbeginselen:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.practice-card-number-nederlandse-grammatica-grondbeginselen {
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.practice-card-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.practice-card-text-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.practice-card-example-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.875rem, 0.9vw, 0.95rem);
  color: #38bdf8;
  font-family: 'Courier New', monospace;
  line-height: 1.8;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
  .practice-card-nederlandse-grammatica-grondbeginselen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.quote-section-nederlandse-grammatica-grondbeginselen {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-nederlandse-grammatica-grondbeginselen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-lg);
  text-align: center;
}

.quote-text-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.quote-author-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

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

.tips-header-nederlandse-grammatica-grondbeginselen {
  text-align: center;
  margin-bottom: 3rem;
}

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

.tips-subtitle-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

.tips-subheading-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.tips-list-nederlandse-grammatica-grondbeginselen {
  list-style: none;
  padding: 0;
}

.tips-list-item-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.tips-list-item-nederlandse-grammatica-grondbeginselen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.tips-image-nederlandse-grammatica-grondbeginselen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.conclusion-content-nederlandse-grammatica-grondbeginselen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.conclusion-text-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-nederlandse-grammatica-grondbeginselen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-primary-nederlandse-grammatica-grondbeginselen,
.btn-secondary-nederlandse-grammatica-grondbeginselen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary-nederlandse-grammatica-grondbeginselen {
  background: #3b82f6;
  color: #0f172a;
}

.btn-primary-nederlandse-grammatica-grondbeginselen:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-secondary-nederlandse-grammatica-grondbeginselen {
  background: transparent;
  color: #38bdf8;
  border-color: #38bdf8;
}

.btn-secondary-nederlandse-grammatica-grondbeginselen:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #0ea5e9;
  color: #0ea5e9;
  transform: translateY(-2px);
}

.disclaimer-section-nederlandse-grammatica-grondbeginselen {
  background: #f1f5f9;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-nederlandse-grammatica-grondbeginselen {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #d97706;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

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

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

.related-subtitle-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-nederlandse-grammatica-grondbeginselen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.related-card-nederlandse-grammatica-grondbeginselen:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
  transform: translateY(-6px);
}

.related-card-image-nederlandse-grammatica-grondbeginselen {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-description-nederlandse-grammatica-grondbeginselen {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

@media (max-width: 480px) {
  .hero-content-nederlandse-grammatica-grondbeginselen,
  .introduction-content-nederlandse-grammatica-grondbeginselen,
  .adjectives-content-nederlandse-grammatica-grondbeginselen,
  .tenses-content-nederlandse-grammatica-grondbeginselen,
  .tips-content-nederlandse-grammatica-grondbeginselen {
    gap: 1rem;
  }

  .article-meta-nederlandse-grammatica-grondbeginselen {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.main-nederlands-vocabulaire-uitbreiding {
  width: 100%;
  background: #ffffff;
}

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

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

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

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

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

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

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

.hero-subtitle-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.hero-meta-nederlands-vocabulaire-uitbreiding {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-nederlands-vocabulaire-uitbreiding {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-nederlands-vocabulaire-uitbreiding i {
  font-size: 0.875rem;
}

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

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

.stat-number-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

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

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

.breadcrumbs-nederlands-vocabulaire-uitbreiding a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-nederlands-vocabulaire-uitbreiding a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumbs-nederlands-vocabulaire-uitbreiding span {
  color: #64748b;
}

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

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

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

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

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

.intro-description-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.methods-section-nederlands-vocabulaire-uitbreiding {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-nederlands-vocabulaire-uitbreiding {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-nederlands-vocabulaire-uitbreiding {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.methods-subtitle-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.methods-steps-nederlands-vocabulaire-uitbreiding {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
}

.method-step-nederlands-vocabulaire-uitbreiding {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.method-number-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.method-content-nederlands-vocabulaire-uitbreiding {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.method-text-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

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

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

.practice-title-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.practice-description-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.practice-tips-nederlands-vocabulaire-uitbreiding {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-card-nederlands-vocabulaire-uitbreiding {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #06b6d4;
}

.tip-title-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.tip-text-nederlands-vocabulaire-uitbreiding {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.featured-quote-nederlands-vocabulaire-uitbreiding {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #3b82f6;
  background: #eff6ff;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  font-style: italic;
}

.featured-quote-nederlands-vocabulaire-uitbreiding p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.featured-quote-nederlands-vocabulaire-uitbreiding cite {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
}

.tools-section-nederlands-vocabulaire-uitbreiding {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.tools-grid-nederlands-vocabulaire-uitbreiding {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.tool-card-nederlands-vocabulaire-uitbreiding {
  flex: 1 1 280px;
  max-width: 360px;
  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 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card-nederlands-vocabulaire-uitbreiding:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.tool-icon-nederlands-vocabulaire-uitbreiding {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 8px;
  font-size: 1.5rem;
}

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

.tool-text-nederlands-vocabulaire-uitbreiding {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.strategy-section-nederlands-vocabulaire-uitbreiding {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.strategy-text-block-nederlands-vocabulaire-uitbreiding {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-image-block-nederlands-vocabulaire-uitbreiding {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-title-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.strategy-description-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.conclusion-section-nederlands-vocabulaire-uitbreiding {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-nederlands-vocabulaire-uitbreiding {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

.cta-box-nederlands-vocabulaire-uitbreiding {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-description-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #e0f2fe;
  margin-bottom: 1.5rem;
}

.btn-primary-cta-nederlands-vocabulaire-uitbreiding {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #ffffff;
  color: #3b82f6;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-cta-nederlands-vocabulaire-uitbreiding:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.related-section-nederlands-vocabulaire-uitbreiding {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.related-subtitle-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

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

.related-card-nederlands-vocabulaire-uitbreiding {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.related-card-nederlands-vocabulaire-uitbreiding:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.related-card-image-nederlands-vocabulaire-uitbreiding {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

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

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

.related-card-link-nederlands-vocabulaire-uitbreiding {
  display: inline-block;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-card-link-nederlands-vocabulaire-uitbreiding:hover {
  color: #2563eb;
  text-decoration: underline;
}

.disclaimer-section-nederlands-vocabulaire-uitbreiding {
  background: #f0f9ff;
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-top: 2px solid #e0f2fe;
}

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

.disclaimer-title-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-vocabulaire-uitbreiding {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #0f172a;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-nederlands-vocabulaire-uitbreiding,
  .intro-wrapper-nederlands-vocabulaire-uitbreiding,
  .practice-wrapper-nederlands-vocabulaire-uitbreiding,
  .strategy-wrapper-nederlands-vocabulaire-uitbreiding {
    flex-direction: column;
  }

  .hero-text-block-nederlands-vocabulaire-uitbreiding,
  .hero-image-block-nederlands-vocabulaire-uitbreiding,
  .intro-text-block-nederlands-vocabulaire-uitbreiding,
  .intro-image-block-nederlands-vocabulaire-uitbreiding,
  .practice-text-block-nederlands-vocabulaire-uitbreiding,
  .practice-image-block-nederlands-vocabulaire-uitbreiding,
  .strategy-text-block-nederlands-vocabulaire-uitbreiding,
  .strategy-image-block-Nederlands-vocabulaire-uitbreiding {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-image-block-nederlands-vocabulaire-uitbreiding {
    order: 0;
  }

  .hero-stats-nederlands-vocabulaire-uitbreiding {
    justify-content: flex-start;
  }

  .tool-card-nederlands-vocabulaire-uitbreiding {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-nederlands-vocabulaire-uitbreiding {
    flex: 1 1 100%;
    max-width: none;
  }
}

.main-nederlandse-schrijfvaardigheden {
  width: 100%;
  overflow: hidden;
}

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

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

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

.breadcrumbs-nederlandse-schrijfvaardigheden a {
  color: #60a5fa;
  transition: color 0.3s ease;
}

.breadcrumbs-nederlandse-schrijfvaardigheden a:hover {
  color: #93c5fd;
}

.breadcrumbs-nederlandse-schrijfvaardigheden span {
  color: #475569;
}

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

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

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

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

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

.hero-meta-nederlandse-schrijfvaardigheden {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-nederlandse-schrijfvaardigheden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-nederlandse-schrijfvaardigheden i {
  font-size: 0.875rem;
}

.hero-stats-nederlandse-schrijfvaardigheden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.stat-item-nederlandse-schrijfvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-nederlandse-schrijfvaardigheden {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f59e0b;
  display: block;
  line-height: 1;
}

.stat-label-nederlandse-schrijfvaardigheden {
  font-size: 0.875rem;
  color: #94a3b8;
  display: block;
}

.hero-image-nederlandse-schrijfvaardigheden {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

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

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

  .hero-stats-nederlandse-schrijfvaardigheden {
    gap: 1.5rem;
  }
}

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

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

.introduction-text-nederlandse-schrijfvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-wrapper-nederlandse-schrijfvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-nederlandse-schrijfvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.introduction-description-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.introduction-image-nederlandse-schrijfvaardigheden {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .introduction-content-nederlandse-schrijfvaardigheden {
    flex-direction: column;
  }

  .introduction-text-nederlandse-schrijfvaardigheden,
  .introduction-image-wrapper-nederlandse-schrijfvaardigheden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.fundamentals-content-nederlandse-schrijfvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.fundamentals-text-wrapper-nederlandse-schrijfvaardigheden {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.fundamentals-title-nederlandse-schrijfvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.fundamentals-description-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

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

.fundamentals-card-nederlandse-schrijfvaardigheden {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.fundamentals-card-nederlandse-schrijfvaardigheden:hover {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  transform: translateY(-4px);
}

.fundamentals-card-number-nederlandse-schrijfvaardigheden {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.fundamentals-card-content-nederlandse-schrijfvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.fundamentals-card-text-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .fundamentals-card-nederlandse-schrijfvaardigheden {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.techniques-text-block-nederlandse-schrijfvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-block-nederlandse-schrijfvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-nederlandse-schrijfvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.techniques-intro-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.techniques-list-nederlandse-schrijfvaardigheden {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.techniques-list-item-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.techniques-list-item-nederlandse-schrijfvaardigheden::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.techniques-image-nederlandse-schrijfvaardigheden {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .techniques-wrapper-nederlandse-schrijfvaardigheden {
    flex-direction: column;
  }

  .techniques-text-block-nederlandse-schrijfvaardigheden,
  .techniques-image-block-nederlandse-schrijfvaardigheden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.essay-types-section-nederlandse-schrijfvaardigheden {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.essay-types-header-nederlandse-schrijfvaardigheden {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.essay-types-title-nederlandse-schrijfvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.essay-types-subtitle-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

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

.essay-type-card-nederlandse-schrijfvaardigheden {
  flex: 1 1 280px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.essay-type-card-nederlandse-schrijfvaardigheden:hover {
  border-color: #06b6d4;
  background: rgba(6, 182, 212, 0.1);
}

.essay-type-icon-nederlandse-schrijfvaardigheden {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 12px;
  font-size: 1.75rem;
}

.essay-type-title-nederlandse-schrijfvaardigheden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.essay-type-text-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .essay-type-card-nederlandse-schrijfvaardigheden {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.featured-quote-nederlandse-schrijfvaardigheden {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 8px;
}

.quote-text-nederlandse-schrijfvaardigheden {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  font-style: normal;
  display: block;
}

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

.advanced-content-wrapper-nederlandse-schrijfvaardigheden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.advanced-image-block-nederlandse-schrijfvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-text-block-nederlandse-schrijfvaardigheden {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-image-nederlandse-schrijfvaardigheden {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.advanced-title-nederlandse-schrijfvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.advanced-description-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.advanced-techniques-list-nederlandse-schrijfvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.technique-item-nederlandse-schrijfvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.technique-name-nederlandse-schrijfvaardigheden {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
}

.technique-desc-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

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

  .advanced-image-block-nederlandse-schrijfvaardigheden,
  .advanced-text-block-nederlandse-schrijfvaardigheden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.practice-content-nederlandse-schrijfvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.practice-title-nederlandse-schrijfvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.practice-intro-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.practice-strategies-nederlandse-schrijfvaardigheden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.strategy-card-nederlandse-schrijfvaardigheden {
  flex: 1 1 280px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.strategy-card-nederlandse-schrijfvaardigheden:hover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.strategy-number-nederlandse-schrijfvaardigheden {
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

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

.strategy-text-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategy-card-nederlandse-schrijfvaardigheden {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.conclusion-title-nederlandse-schrijfvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.conclusion-cta-box-nederlandse-schrijfvaardigheden {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 2.5rem;
}

.cta-title-nederlandse-schrijfvaardigheden {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-cta-nederlandse-schrijfvaardigheden {
  background: #ffffff !important;
  color: #3b82f6 !important;
  border-color: #ffffff !important;
  margin-top: 1rem;
  display: inline-block;
}

.btn-cta-nederlandse-schrijfvaardigheden:hover {
  background: #f0f9ff !important;
  transform: translateY(-2px);
}

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

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

.related-title-nederlandse-schrijfvaardigheden {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.related-subtitle-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
}

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

.related-card-link-nederlandse-schrijfvaardigheden {
  text-decoration: none;
  color: inherit;
  flex: 1 1 300px;
  max-width: 380px;
}

.related-card-nederlandse-schrijfvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.related-card-link-nederlandse-schrijfvaardigheden:hover .related-card-nederlandse-schrijfvaardigheden {
  border-color: #06b6d4;
  background: rgba(6, 182, 212, 0.1);
  transform: translateY(-4px);
}

.related-card-image-wrapper-nederlandse-schrijfvaardigheden {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.related-card-content-nederlandse-schrijfvaardigheden {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-nederlandse-schrijfvaardigheden {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.related-card-text-nederlandse-schrijfvaardigheden {
  font-size: clamp(0.8rem, 1vw, 0.9375rem);
  color: #cbd5e1;
  line-height: 1.5;
}

.related-card-meta-nederlandse-schrijfvaardigheden {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-label-nederlandse-schrijfvaardigheden {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

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

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

.disclaimer-box-nederlandse-schrijfvaardigheden {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.disclaimer-title-nederlandse-schrijfvaardigheden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
  .related-card-image-wrapper-nederlandse-schrijfvaardigheden {
    height: 180px;
  }
}

.main-nederlands-examen-teststrategien {
    width: 100%;
    background: #ffffff;
  }

  .main-nederlands-examen-teststrategien section {
    width: 100%;
    overflow: hidden;
  }

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

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

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

  .breadcrumbs-nederlands-examen-teststrategien a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .breadcrumbs-nederlands-examen-teststrategien a:hover {
    color: #38bdf8;
  }

  .breadcrumbs-nederlands-examen-teststrategien span {
    color: #64748b;
  }

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

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

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

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

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

  .hero-meta-nederlands-examen-teststrategien {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .meta-badge-nederlands-examen-teststrategien {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-radius: 20px;
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
    font-weight: 500;
  }

  .meta-badge-nederlands-examen-teststrategien i {
    font-size: 0.875rem;
  }

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

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

  .stat-number-nederlands-examen-teststrategien {
    color: #38bdf8;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
  }

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

  .hero-image-nederlands-examen-teststrategien {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-width: 100%;
  }

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

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

    .hero-stats-nederlands-examen-teststrategien {
      gap: 1.5rem;
    }
  }

  .introduction-section-nederlands-examen-teststrategien {
    background: #f8fafc;
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

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

  .introduction-text-nederlands-examen-teststrategien {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .introduction-image-nederlands-examen-teststrategien {
    flex: 1 1 50%;
    max-width: 50%;
  }

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

  .introduction-description-nederlands-examen-teststrategien {
    color: #374151;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .introduction-image-img-nederlands-examen-teststrategien {
    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-nederlands-examen-teststrategien {
      flex-direction: column;
    }

    .introduction-text-nederlands-examen-teststrategien,
    .introduction-image-nederlands-examen-teststrategien {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .techniques-section-nederlands-examen-teststrategien {
    background: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

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

  .techniques-tag-nederlands-examen-teststrategien {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 20px;
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .techniques-title-nederlands-examen-teststrategien {
    color: #0f172a;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

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

  .techniques-steps-nederlands-examen-teststrategien {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .techniques-step-nederlands-examen-teststrategien {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
  }

  .techniques-step-number-nederlands-examen-teststrategien {
    color: #3b82f6;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
  }

  .techniques-step-content-nederlands-examen-teststrategien {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .techniques-step-title-nederlands-examen-teststrategien {
    color: #0f172a;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.2;
  }

  .techniques-step-text-nederlands-examen-teststrategien {
    color: #475569;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .techniques-step-nederlands-examen-teststrategien {
      flex-direction: column;
      padding: 1rem;
    }
  }

  .practical-section-nederlands-examen-teststrategien {
    background: #0f172a;
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

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

  .practical-text-nederlands-examen-teststrategien {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .practical-image-nederlands-examen-teststrategien {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .practical-title-nederlands-examen-teststrategien {
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .practical-description-nederlands-examen-teststrategien {
    color: #cbd5e1;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .practical-quote-nederlands-examen-teststrategien {
    padding: 2rem 2.5rem;
    border-left: 4px solid #38bdf8;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 8px;
    margin: 2rem 0;
  }

  .practical-quote-text-nederlands-examen-teststrategien {
    color: #ffffff;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .practical-quote-cite-nederlands-examen-teststrategien {
    color: #94a3b8;
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
    font-style: normal;
    display: block;
  }

  .practical-image-img-nederlands-examen-teststrategien {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    max-width: 100%;
  }

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

    .practical-text-nederlands-examen-teststrategien,
    .practical-image-nederlands-examen-teststrategien {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .features-section-nederlands-examen-teststrategien {
    background: #f8fafc;
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .features-header-nederlands-examen-teststrategien {
    text-align: center;
    margin-bottom: 3rem;
  }

  .features-tag-nederlands-examen-teststrategien {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 20px;
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .features-title-nederlands-examen-teststrategien {
    color: #0f172a;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
  }

  .features-cards-nederlands-examen-teststrategien {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .features-card-nederlands-examen-teststrategien {
    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;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .features-card-nederlands-examen-teststrategien:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .features-card-icon-nederlands-examen-teststrategien {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.5rem;
  }

  .features-card-title-nederlands-examen-teststrategien {
    color: #0f172a;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.2;
  }

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

  @media (max-width: 768px) {
    .features-card-nederlands-examen-teststrategien {
      flex: 1 1 100%;
      max-width: none;
    }
  }

  .advanced-section-nederlands-examen-teststrategien {
    background: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

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

  .advanced-image-nederlands-examen-teststrategien {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .advanced-text-nederlands-examen-teststrategien {
    flex: 1 1 50%;
    max-width: 50%;
  }

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

  .advanced-description-nederlands-examen-teststrategien {
    color: #374151;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

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

  @media (max-width: 768px) {
    .advanced-wrapper-nederlands-examen-teststrategien {
      flex-direction: column;
    }

    .advanced-image-nederlands-examen-teststrategien,
    .advanced-text-nederlands-examen-teststrategien {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .conclusion-section-nederlands-examen-teststrategien {
    background: #0f172a;
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

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

  .conclusion-title-nederlands-examen-teststrategien {
    color: #ffffff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
  }

  .conclusion-summary-nederlands-examen-teststrategien {
    margin-bottom: 2rem;
  }

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

  .conclusion-cta-nederlands-examen-teststrategien {
    background: rgba(59, 130, 246, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 2rem;
  }

  .conclusion-cta-title-nederlands-examen-teststrategien {
    color: #38bdf8;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
  }

  .conclusion-cta-text-nederlands-examen-teststrategien {
    color: #cbd5e1;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .btn-conclusion-primary-nederlands-examen-teststrategien {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
    background: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-conclusion-primary-nederlands-examen-teststrategien:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
  }

  .conclusion-checklist-nederlands-examen-teststrategien {
    background: rgba(16, 185, 129, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
  }

  .conclusion-checklist-title-nederlands-examen-teststrategien {
    color: #a7f3d0;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .conclusion-checklist-list-nederlands-examen-teststrategien {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .conclusion-checklist-item-nederlands-examen-teststrategien {
    color: #cbd5e1;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .conclusion-checklist-item-nederlands-examen-teststrategien i {
    color: #10b981;
    font-size: 1rem;
  }

  .disclaimer-section-nederlands-examen-teststrategien {
    background: #f8fafc;
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

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

  .disclaimer-title-nederlands-examen-teststrategien {
    color: #d97706;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
  }

  .disclaimer-text-nederlands-examen-teststrategien {
    color: #6b7280;
    font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
    line-height: 1.6;
  }

  .related-section-nederlands-examen-teststrategien {
    background: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

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

  .related-title-nederlands-examen-teststrategien {
    color: #0f172a;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .related-subtitle-nederlands-examen-teststrategien {
    color: #64748b;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.6;
  }

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

  .related-card-link-nederlands-examen-teststrategien {
    flex: 1 1 280px;
    max-width: 380px;
    text-decoration: none;
  }

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

  .related-card-link-nederlands-examen-teststrategien:hover .related-card-nederlands-examen-teststrategien {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
    transform: translateY(-4px);
  }

  .related-card-image-nederlands-examen-teststrategien {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }

  .related-card-content-nederlands-examen-teststrategien {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: clamp(1rem, 3vw, 1.5rem);
  }

  .related-card-title-nederlands-examen-teststrategien {
    color: #0f172a;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.3;
  }

  .related-card-text-nederlands-examen-teststrategien {
    color: #64748b;
    font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
    line-height: 1.5;
  }

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

  @media (max-width: 768px) {
    .conclusion-cta-nederlands-examen-teststrategien,
    .conclusion-checklist-nederlands-examen-teststrategien {
      padding: 1.5rem;
    }
  }

: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(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  --color-text-light-primary: #ffffff;
  --color-text-light-secondary: #cbd5e1;
  --color-text-light-muted: #94a3b8;
  --color-text-dark-primary: #0f172a;
  --color-text-dark-secondary: #374151;
  --color-text-dark-muted: #64748b;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #06b6d4;
  --color-accent-warm: #f59e0b;
  --color-success: #10b981;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-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;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background: var(--color-bg-light-primary);
}

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

section {
  width: 100%;
}

.language-academy-about {
  width: 100%;
}

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

.hero-learning-about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-learning-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin-bottom: 2rem;
}

.hero-learning-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-light-primary);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-learning-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.hero-learning-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  display: block;
}

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

.stat-item-about {
  flex: 0 1 auto;
  text-align: center;
}

.stat-number-about {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .hero-learning-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .hero-learning-stats-about {
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

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

.foundation-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.foundation-intro-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.foundation-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  max-width: 700px;
}

.foundation-image-about {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .foundation-content-about {
    gap: 4rem;
  }
  
  .foundation-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

.expertise-pathway-about {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.expertise-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.expertise-header-about {
  text-align: center;
  margin-bottom: 2rem;
}

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

.expertise-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.expertise-subtitle-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

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

.expertise-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-step-number-about {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-secondary);
  flex-shrink: 0;
  min-width: 60px;
}

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

.expertise-step-title-about {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.expertise-step-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .expertise-pathway-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .expertise-steps-about {
    gap: 1.75rem;
  }
}

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

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.approach-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  max-width: 700px;
}

.approach-features-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.approach-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.approach-card-icon-about {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

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

.approach-card-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

.approach-image-about {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .approach-philosophy-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .approach-card-about {
    flex: 1 1 300px;
  }
}

.commitment-vision-about {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.commitment-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
}

.commitment-quote-about {
  padding: 2rem;
  border-left: 4px solid var(--color-secondary);
  background: var(--color-bg-dark-secondary);
  border-radius: var(--radius-lg);
}

.commitment-quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-light-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.commitment-quote-author-about {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  font-style: normal;
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .commitment-vision-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

.disclaimer-section-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .disclaimer-section-about {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

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

  .legal-hub {
    width: 100%;
    font-family: var(--font-body);
  }

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

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

  .legal-hub-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .legal-hub-hero-title {
    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;
  }

  .legal-hub-hero-meta {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: var(--color-text-light-secondary);
    line-height: 1.6;
  }

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

  .legal-hub-content-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 5vw, 2rem);
  }

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

  .legal-hub-content-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .legal-hub-content-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 700;
    color: var(--color-text-dark-primary);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-hub-content-block p {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-dark-secondary);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-hub-content-block ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-left: 1.5rem;
  }

  .legal-hub-content-block li {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-dark-secondary);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-hub-content-block li strong {
    color: var(--color-text-dark-primary);
    font-weight: 600;
  }

  .legal-hub-content-block p strong {
    color: var(--color-text-dark-primary);
    font-weight: 600;
  }

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

  .legal-hub-contact-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 5vw, 2rem);
  }

  .legal-hub-contact-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .legal-hub-contact-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 700;
    color: var(--color-text-dark-primary);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-hub-contact-content p {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-dark-secondary);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .legal-hub-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .legal-hub-contact-item strong {
    color: var(--color-text-dark-primary);
    font-weight: 600;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  }

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

    .legal-hub-content-section {
      padding: clamp(4rem, 10vw, 8rem) 0;
    }

    .legal-hub-contact-section {
      padding: clamp(4rem, 10vw, 8rem) 0;
    }
  }

  @media (min-width: 1024px) {
    .legal-hub-hero {
      padding: 6rem 0;
    }

    .legal-hub-content-section {
      padding: 6rem 0;
    }

    .legal-hub-contact-section {
      padding: 6rem 0;
    }
  }

.thank-you-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-dark-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-success);
}

.thank-section h1 {
  color: var(--color-text-light-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-subtitle {
  color: var(--color-secondary);
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-message {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  font-family: var(--font-body);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
  width: 100%;
  max-width: 600px;
  margin: clamp(1rem, 3vw, 2rem) auto 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.feature-item i {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-primary);
}

.feature-item p {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1rem);
  font-family: var(--font-body);
  line-height: 1.5;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feature-item:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  gap: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

@media (min-width: 768px) {
  .thank-section {
    min-height: 100vh;
    padding: 4rem 0;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .thank-icon {
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
  }

  .thank-features {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
  }

  .feature-item {
    padding: clamp(1.5rem, 3vw, 2rem);
  }
}

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

  .thank-content {
    gap: 2.5rem;
  }

  .thank-icon {
    margin-bottom: 1.5rem;
  }

  .thank-features {
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .feature-item {
    padding: 2rem;
  }

  .feature-item:hover {
    transform: translateY(-4px);
  }
}

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

  .thank-content {
    gap: 3rem;
  }

  .thank-features {
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .thank-section {
    min-height: auto;
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .thank-content {
    padding: clamp(1.5rem, 4vw, 2rem);
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .thank-icon i,
  .feature-item,
  .btn {
    transition: none;
  }

  .feature-item:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}

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

.feature-item:focus-within {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-lg);
}

.error-404-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.error-section .container {
  position: relative;
  z-index: 2;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1rem, 4vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw + 1rem, 8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.error-code-accent {
  position: absolute;
  bottom: clamp(-1rem, -3vw, -2rem);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(4rem, 15vw, 8rem);
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-lg);
}

.error-title {
  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: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.error-description {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  margin: 0;
  max-width: 28rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.error-hint {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw + 0.4rem, 1rem);
  color: var(--color-text-light-muted);
  margin: 0;
  max-width: 32rem;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  font-style: italic;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
  background: var(--color-primary);
  color: var(--color-text-dark-primary);
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.5vw + 0.4rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.btn-large {
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.error-decoration {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-primary);
  opacity: 0.3;
  transition: all 0.6s ease;
  animation: float 4s ease-in-out infinite;
}

.error-decoration-top {
  animation-delay: 0s;
}

.error-decoration-bottom {
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(clamp(10px, 3vw, 20px));
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.error-decoration {
  animation: float 4s ease-in-out infinite, pulse-glow 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .error-code-wrapper {
    margin: clamp(1.5rem, 4vw, 3rem) 0;
  }

  .error-content {
    gap: clamp(2rem, 5vw, 4rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .error-code-wrapper {
    margin: clamp(2rem, 5vw, 4rem) 0;
  }

  .btn-primary:hover {
    box-shadow: 0 20px 35px rgba(59, 130, 246, 0.3);
  }
}

@media (min-width: 1440px) {
  .error-content {
    gap: 3rem;
  }

  .error-code-accent {
    bottom: -3rem;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .error-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .error-decoration {
    display: none;
  }

  .error-content {
    gap: 1.5rem;
  }
}

@media (max-width: 360px) {
  .error-code {
    margin-bottom: 1rem;
  }

  .error-content {
    gap: 1rem;
  }

  .error-hint {
    font-size: 0.8125rem;
  }
}

.error-title,
.error-description,
.error-hint {
  word-break: break-word;
}