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

:root {
  
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #64748b;
  
  
  --color-primary: #3b82f6;
  --color-primary-hover: #60a5fa;
  --color-secondary: #06b6d4;
  --color-tertiary: #10b981;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

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

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

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h4 {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

h5, h6 {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
}

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

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

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

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

section {
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

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

.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-secondary {
  background: var(--color-secondary);
  color: #ffffff;
}

.btn-secondary:hover {
  background: #0891b2;
  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: rgba(59, 130, 246, 0.1);
  border-color: var(--color-primary-hover);
}

input, textarea, select {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: var(--space-md);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

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

.flex {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
}

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

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

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

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
}

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

.icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-lg {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-xl {
  width: 3.5rem;
  height: 3.5rem;
}

i[class*="fas"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
  
  .hidden-desktop {
    display: none;
  }
}

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

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

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

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

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

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

.px-md { padding: 0 var(--space-md); }
.py-md { padding: var(--space-md) 0; }
.p-lg { padding: var(--space-lg); }

.accent-line {
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 2px;
}

.accent-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(59, 130, 246, 0.2);
  margin: var(--space-xl) 0;
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  border-radius: var(--radius-md);
  font-size: clamp(0.75rem, 0.8vw, 0.875rem);
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

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

ul, ol {
  list-style: none;
}

.list-styled li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: var(--space-sm);
}

.list-styled li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1440px) {
  .container {
    max-width: 1024px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 768px;
  }
  
  section {
    padding: clamp(2rem, 5vw, 4rem) 0;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
  }
  
  section {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }
  
  .flex:not(.flex-col) {
    flex-direction: column;
  }
  
  .hidden-mobile {
    display: none !important;
  }
  
  .hidden-desktop {
    display: block !important;
  }
}

@media (max-width: 480px) {
  section {
    padding: clamp(1rem, 3vw, 1.5rem) 0;
  }
  
  .btn {
    width: 100%;
  }
  
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media print {
  body {
    background: white;
    color: black;
  }
  
  .no-print {
    display: none !important;
  }
}
:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #64748b;
  --color-primary: #3b82f6;
  --color-primary-hover: #60a5fa;
  --color-secondary: #06b6d4;
  --color-tertiary: #10b981;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-primary);
}

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

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

.header-taal-hub {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  position: relative;
  z-index: 1000;
}

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

.header-taal-hub-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 300ms ease;
}

.header-taal-hub-brand:hover {
  opacity: 0.8;
}

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

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

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

.header-taal-hub-nav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  transition: all 300ms ease;
  position: relative;
  white-space: nowrap;
}

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

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

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

.header-taal-hub-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #0f172a;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  transition: all 300ms ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

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

.header-taal-hub-cta-button:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

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

.header-taal-hub-mobile-toggle:hover {
  background: rgba(59, 130, 246, 0.1);
}

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

.header-taal-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-secondary);
  border-left: 1px solid rgba(59, 130, 246, 0.15);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms ease;
  z-index: 999;
  overflow-y: auto;
}

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

.header-taal-hub-mobile-header {
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-taal-hub-mobile-close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.header-taal-hub-mobile-close:hover {
  background: rgba(59, 130, 246, 0.1);
}

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

.header-taal-hub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  flex: 1;
}

.header-taal-hub-mobile-link {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 300ms ease;
  display: block;
}

.header-taal-hub-mobile-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-text-primary);
  padding-left: clamp(1.25rem, 4vw, 2rem);
}

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

.header-taal-hub-mobile-cta {
  margin: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #0f172a;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-align: center;
  transition: all 300ms ease;
  display: block;
  border: none;
}

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

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

.header-taal-hub-mobile-cta:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

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

  .header-taal-hub-logo-img {
    width: 44px;
    height: 44px;
  }

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

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

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

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

  .header-taal-hub-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body.header-taal-hub-menu-open {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-taal-hub-nav-link,
  .header-taal-hub-nav-link::after,
  .header-taal-hub-cta-button,
  .header-taal-hub-mobile-toggle,
  .header-taal-hub-mobile-menu,
  .header-taal-hub-mobile-link {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

    .language-academy {
width: 100%;
}

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

.hero-glow-primary {
position: absolute;
top: -100px;
left: -150px;
width: 400px;
height: 400px;
background: rgba(59, 130, 246, 0.08);
border-radius: 50%;
filter: blur(100px);
z-index: 1;
pointer-events: none;
}

.hero-glow-secondary {
position: absolute;
top: 20%;
right: -100px;
width: 350px;
height: 350px;
background: rgba(6, 182, 212, 0.06);
border-radius: 50%;
filter: blur(90px);
z-index: 1;
pointer-events: none;
}

.hero-gradient-mesh {
position: absolute;
bottom: -50px;
left: 10%;
width: 500px;
height: 500px;
background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
filter: blur(80px);
z-index: 1;
pointer-events: none;
}

.hero-accent-shape-1 {
position: absolute;
top: 15%;
right: 5%;
width: 200px;
height: 200px;
background: rgba(139, 92, 246, 0.04);
border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
z-index: 2;
pointer-events: none;
}

.hero-accent-shape-2 {
position: absolute;
bottom: 10%;
left: 5%;
width: 180px;
height: 180px;
background: rgba(34, 211, 238, 0.05);
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
z-index: 1;
pointer-events: none;
}

.hero-floating-element {
position: absolute;
top: 30%;
left: 8%;
width: 120px;
height: 80px;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(59, 130, 246, 0.1);
border-radius: 15px;
transform: rotate(-12deg);
z-index: 2;
pointer-events: none;
}

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

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

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

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

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

.hero-subtitle {
color: #bfdbfe;
font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
line-height: 1.7;
margin-bottom: 2rem;
max-width: 550px;
}

.hero-cta-group {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 2.5rem;
}

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

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

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

.hero-stat-label {
display: block;
font-size: 0.875rem;
color: #94a3b8;
font-weight: 500;
}

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
font-weight: 600;
padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
border-radius: var(--radius-md);
border: 2px solid transparent;
cursor: pointer;
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
text-align: center;
white-space: nowrap;
gap: var(--space-sm);
text-decoration: none;
}

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

.btn-primary:hover {
background: #60a5fa;
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
background: transparent;
color: #ffffff;
border-color: #ffffff;
}

.btn-secondary:hover {
background: rgba(255, 255, 255, 0.08);
border-color: #bfdbfe;
transform: translateY(-3px);
}

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

.hero-image-block {
flex: 1 1 100%;
max-width: none;
min-height: 300px;
}
}

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

.why-glow-accent-1 {
position: absolute;
top: 50%;
right: -120px;
width: 380px;
height: 380px;
background: rgba(59, 130, 246, 0.07);
border-radius: 50%;
filter: blur(100px);
z-index: 1;
pointer-events: none;
}

.why-glow-accent-2 {
position: absolute;
bottom: -80px;
left: 5%;
width: 300px;
height: 300px;
background: rgba(34, 211, 238, 0.06);
border-radius: 50%;
filter: blur(80px);
z-index: 1;
pointer-events: none;
}

.why-shape-decorative {
position: absolute;
top: 20%;
left: 3%;
width: 150px;
height: 150px;
background: rgba(139, 92, 246, 0.05);
border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
z-index: 2;
pointer-events: none;
}

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

.why-tag {
display: inline-block;
padding: 0.375rem 1rem;
background: rgba(59, 130, 246, 0.15);
color: #60a5fa;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 600;
margin-bottom: 1rem;
}

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

.why-subtitle {
color: #bfdbfe;
font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
max-width: 600px;
margin: 0 auto;
}

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

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

.why-feature-card {
flex: 1 1 280px;
max-width: 380px;
display: flex;
flex-direction: column;
gap: 1rem;
padding: clamp(1.5rem, 3vw, 2rem);
background: rgba(59, 130, 246, 0.08);
border: 1px solid rgba(59, 130, 246, 0.2);
border-radius: var(--radius-lg);
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.why-feature-card:hover {
transform: translateY(-6px);
border-color: rgba(59, 130, 246, 0.4);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.why-feature-icon {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(59, 130, 246, 0.15);
border-radius: var(--radius-md);
color: #60a5fa;
font-size: 1.5rem;
}

.why-feature-title {
color: #ffffff;
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
font-weight: 600;
}

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

.why-image-block {
flex: 1 1 350px;
max-width: 450px;
min-height: 400px;
}

.why-image {
width: 100%;
height: auto;
border-radius: 12px;
object-fit: cover;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

.why-features {
flex: 1 1 100%;
}

.why-image-block {
flex: 1 1 100%;
max-width: none;
min-height: 300px;
}
}

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

.learning-path-glow-1 {
position: absolute;
top: -100px;
right: -150px;
width: 400px;
height: 400px;
background: rgba(6, 182, 212, 0.07);
border-radius: 50%;
filter: blur(100px);
z-index: 1;
pointer-events: none;
}

.learning-path-glow-2 {
position: absolute;
bottom: 10%;
left: -80px;
width: 350px;
height: 350px;
background: rgba(59, 130, 246, 0.06);
border-radius: 50%;
filter: blur(80px);
z-index: 1;
pointer-events: none;
}

.learning-path-line-accent {
position: absolute;
top: 20%;
left: 15%;
width: 200px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.25), transparent);
z-index: 2;
pointer-events: none;
}

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

.learning-path-tag {
display: inline-block;
padding: 0.375rem 1rem;
background: rgba(6, 182, 212, 0.15);
color: #22d3ee;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 600;
margin-bottom: 1rem;
}

.learning-path-title {
color: #ffffff;
font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
font-weight: 700;
}

.learning-path-steps {
position: relative;
z-index: 10;
display: flex;
flex-direction: column;
gap: 1.5rem;
max-width: 900px;
margin: 0 auto;
}

.learning-path-step {
display: flex;
align-items: flex-start;
gap: 2rem;
padding: clamp(1.5rem, 3vw, 2rem);
background: rgba(59, 130, 246, 0.06);
border: 1px solid rgba(59, 130, 246, 0.15);
border-radius: var(--radius-lg);
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.learning-path-step:hover {
background: rgba(59, 130, 246, 0.1);
border-color: rgba(59, 130, 246, 0.3);
transform: translateX(8px);
}

.learning-path-step-number {
font-size: clamp(2.5rem, 5vw, 3.5rem);
font-weight: 800;
color: #3b82f6;
line-height: 1;
flex-shrink: 0;
min-width: 80px;
}

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

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

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

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

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

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

.featured-glow-top {
position: absolute;
top: -100px;
left: 10%;
width: 400px;
height: 400px;
background: rgba(59, 130, 246, 0.08);
border-radius: 50%;
filter: blur(100px);
z-index: 1;
pointer-events: none;
}

.featured-shape-accent {
position: absolute;
top: 30%;
right: -80px;
width: 250px;
height: 250px;
background: rgba(34, 211, 238, 0.05);
border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
z-index: 2;
pointer-events: none;
}

.featured-glow-corner {
position: absolute;
bottom: -50px;
right: 5%;
width: 300px;
height: 300px;
background: rgba(139, 92, 246, 0.06);
border-radius: 50%;
filter: blur(80px);
z-index: 1;
pointer-events: none;
}

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

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

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

.featured-subtitle {
color: #bfdbfe;
font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
max-width: 600px;
margin: 0 auto;
}

.featured-cards {
position: relative;
z-index: 10;
display: flex;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2rem);
margin-bottom: 2.5rem;
}

.featured-card {
flex: 1 1 300px;
max-width: 400px;
display: flex;
flex-direction: column;
gap: 1rem;
padding: clamp(1.25rem, 3vw, 2rem);
background: rgba(59, 130, 246, 0.08);
border: 1px solid rgba(59, 130, 246, 0.2);
border-radius: var(--radius-lg);
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
overflow: hidden;
}

.featured-card:hover {
transform: translateY(-8px);
border-color: rgba(59, 130, 246, 0.4);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.featured-card-image {
width: 100%;
height: 220px;
object-fit: cover;
border-radius: 8px;
}

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

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

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

.featured-card-link {
color: #60a5fa;
font-size: 0.9375rem;
font-weight: 600;
text-decoration: none;
transition: all 300ms ease;
}

.featured-card-link:hover {
color: #93c5fd;
}

.featured-cta {
position: relative;
z-index: 10;
text-align: center;
padding: clamp(2rem, 4vw, 3rem);
background: rgba(59, 130, 246, 0.1);
border-radius: var(--radius-lg);
border: 1px solid rgba(59, 130, 246, 0.2);
}

.featured-cta-text {
color: #bfdbfe;
font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
margin-bottom: 1.5rem;
}

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

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

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

.approach-glow-1 {
position: absolute;
top: -50px;
right: -120px;
width: 400px;
height: 400px;
background: rgba(34, 211, 238, 0.07);
border-radius: 50%;
filter: blur(100px);
z-index: 1;
pointer-events: none;
}

.approach-glow-2 {
position: absolute;
bottom: 10%;
left: -100px;
width: 350px;
height: 350px;
background: rgba(59, 130, 246, 0.06);
border-radius: 50%;
filter: blur(80px);
z-index: 1;
pointer-events: none;
}

.approach-shape-1 {
position: absolute;
top: 25%;
left: 3%;
width: 160px;
height: 160px;
background: rgba(139, 92, 246, 0.05);
border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%;
z-index: 2;
pointer-events: none;
}

.approach-shape-2 {
position: absolute;
bottom: 20%;
right: 5%;
width: 140px;
height: 140px;
background: rgba(6, 182, 212, 0.04);
border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
z-index: 2;
pointer-events: none;
}

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

.approach-text-block {
flex: 1 1 350px;
max-width: 550px;
}

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

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

.approach-description {
color: #bfdbfe;
font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
line-height: 1.7;
margin-bottom: 1.5rem;
}

.approach-quote {
padding: clamp(1.5rem, 3vw, 2rem);
border-left: 4px solid #3b82f6;
background: rgba(59, 130, 246, 0.08);
margin: 2rem 0;
border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.approach-quote p {
color: #e2e8f0;
font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
font-style: italic;
margin-bottom: 1rem;
}

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

.approach-benefits {
list-style: none;
margin: 1.5rem 0 0 0;
padding: 0;
}

.approach-benefit-item {
color: #cbd5e1;
font-size: 0.9375rem;
line-height: 1.6;
padding-left: 1.75rem;
position: relative;
margin-bottom: 1rem;
}

.approach-benefit-item::before {
content: '';
position: absolute;
left: 0;
color: #3b82f6;
font-weight: bold;
font-size: 1.125rem;
}

.approach-image-block {
flex: 1 1 350px;
max-width: 450px;
min-height: 400px;
}

.approach-image {
width: 100%;
height: auto;
border-radius: 12px;
object-fit: cover;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

.approach-text-block {
flex: 1 1 100%;
max-width: none;
}

.approach-image-block {
flex: 1 1 100%;
max-width: none;
min-height: 300px;
}
}

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

.testimonial-glow-1 {
position: absolute;
top: -80px;
left: 10%;
width: 380px;
height: 380px;
background: rgba(59, 130, 246, 0.08);
border-radius: 50%;
filter: blur(100px);
z-index: 1;
pointer-events: none;
}

.testimonial-glow-2 {
position: absolute;
bottom: -60px;
right: 5%;
width: 320px;
height: 320px;
background: rgba(34, 211, 238, 0.06);
border-radius: 50%;
filter: blur(80px);
z-index: 1;
pointer-events: none;
}

.testimonial-accent-line {
position: absolute;
top: 20%;
left: 20%;
width: 250px;
height: 2px;
background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.2), transparent);
z-index: 2;
pointer-events: none;
}

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

.testimonial-quote-block {
flex: 1 1 350px;
max-width: 500px;
}

.testimonial-featured-quote {
padding: clamp(2rem, 4vw, 2.5rem);
border-left: 5px solid #3b82f6;
background: rgba(59, 130, 246, 0.1);
border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
margin: 0;
}

.testimonial-featured-quote p {
color: #ffffff;
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
font-style: italic;
margin-bottom: 1.5rem;
line-height: 1.6;
}

.testimonial-featured-quote cite {
color: #bfdbfe;
font-size: 0.9375rem;
font-style: normal;
font-weight: 500;
}

.testimonial-info {
flex: 1 1 350px;
max-width: 500px;
}

.testimonial-title {
color: #ffffff;
font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
font-weight: 700;
margin-bottom: 1rem;
}

.testimonial-description {
color: #cbd5e1;
font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
line-height: 1.7;
margin-bottom: 2rem;
}

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

.testimonial-metric {
flex: 1 1 140px;
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.testimonial-metric-number {
display: block;
font-size: clamp(1.75rem, 3vw, 2.25rem);
font-weight: 800;
color: #3b82f6;
line-height: 1;
}

.testimonial-metric-label {
display: block;
font-size: 0.875rem;
color: #94a3b8;
font-weight: 500;
}

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

.testimonial-quote-block,
.testimonial-info {
flex: 1 1 100%;
max-width: none;
}
}

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

.faq-glow-accent {
position: absolute;
top: 50%;
right: -150px;
width: 400px;
height: 400px;
background: rgba(6, 182, 212, 0.07);
border-radius: 50%;
filter: blur(100px);
z-index: 1;
pointer-events: none;
}

.faq-shape-decorative {
position: absolute;
bottom: 10%;
left: 5%;
width: 180px;
height: 180px;
background: rgba(139, 92, 246, 0.05);
border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
z-index: 2;
pointer-events: none;
}

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

.faq-tag {
display: inline-block;
padding: 0.375rem 1rem;
background: rgba(59, 130, 246, 0.15);
color: #60a5fa;
border-radius: 20px;
font-size: 0.875rem;
font-weight: 600;
margin-bottom: 1rem;
}

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

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

.faq-questions {
flex: 1 1 350px;
max-width: 600px;
}

.faq-item {
margin-bottom: 1.5rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.faq-item:last-child {
border-bottom: none;
}

.faq-question {
color: #ffffff;
font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
font-weight: 600;
margin-bottom: 0.75rem;
cursor: pointer;
transition: color 300ms ease;
}

.faq-question:hover {
color: #60a5fa;
}

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

.faq-benefits {
flex: 1 1 350px;
max-width: 500px;
padding: clamp(1.5rem, 3vw, 2rem);
background: rgba(59, 130, 246, 0.08);
border: 1px solid rgba(59, 130, 246, 0.15);
border-radius: var(--radius-lg);
}

.faq-benefits-title {
color: #ffffff;
font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
font-weight: 700;
margin-bottom: 1.5rem;
}

.faq-benefits-list {
list-style: none;
padding: 0;
margin: 0;
}

.faq-benefits-item {
color: #cbd5e1;
font-size: 0.9375rem;
line-height: 1.8;
padding-left: 1.75rem;
position: relative;
margin-bottom: 1rem;
}

.faq-benefits-item::before {
content: '';
position: absolute;
left: 0;
color: #3b82f6;
font-weight: bold;
font-size: 1.125rem;
}

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

.faq-questions,
.faq-benefits {
flex: 1 1 100%;
max-width: none;
}
}

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

.contact-glow-1 {
position: absolute;
top: -80px;
left: 5%;
width: 400px;
height: 400px;
background: rgba(59, 130, 246, 0.08);
border-radius: 50%;
filter: blur(100px);
z-index: 1;
pointer-events: none;
}

.contact-glow-2 {
position: absolute;
bottom: -60px;
right: 8%;
width: 350px;
height: 350px;
background: rgba(34, 211, 238, 0.07);
border-radius: 50%;
filter: blur(90px);
z-index: 1;
pointer-events: none;
}

.contact-shape-accent {
position: absolute;
top: 30%;
right: 5%;
width: 200px;
height: 200px;
background: rgba(139, 92, 246, 0.05);
border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%;
z-index: 2;
pointer-events: none;
}

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

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

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

.contact-subtitle {
color: #bfdbfe;
font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
max-width: 600px;
margin: 0 auto;
}

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

.contact-form-wrapper {
flex: 1 1 350px;
max-width: 500px;
}

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

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

.contact-label {
color: #e2e8f0;
font-size: 0.875rem;
font-weight: 600;
}

.contact-input,
.contact-textarea {
width: 100%;
padding: clamp(0.75rem, 2vw, 1rem);
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(59, 130, 246, 0.3);
border-radius: var(--radius-md);
color: #ffffff;
font-size: 1rem;
font-family: var(--font-primary);
transition: all 300ms ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
color: #64748b;
}

.contact-input:focus,
.contact-textarea:focus {
outline: none;
border-color: #3b82f6;
background: rgba(59, 130, 246, 0.12);
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.contact-submit-btn {
width: 100%;
padding: clamp(0.875rem, 2vw, 1.125rem);
background: #3b82f6;
color: #0c1929;
border: none;
border-radius: var(--radius-md);
font-size: 1rem;
font-weight: 700;
cursor: pointer;
transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-submit-btn:hover {
background: #60a5fa;
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

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

.contact-privacy-link {
color: #60a5fa;
text-decoration: none;
transition: color 300ms ease;
}

.contact-privacy-link:hover {
color: #93c5fd;
text-decoration: underline;
}

.contact-info-block {
flex: 1 1 350px;
max-width: 450px;
padding: clamp(1.5rem, 3vw, 2rem);
background: rgba(59, 130, 246, 0.08);
border: 1px solid rgba(59, 130, 246, 0.15);
border-radius: var(--radius-lg);
}

.contact-info-title {
color: #ffffff;
font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
font-weight: 700;
margin-bottom: 1rem;
}

.contact-info-text {
color: #cbd5e1;
font-size: 0.9375rem;
line-height: 1.6;
margin-bottom: 1.5rem;
}

.contact-info-items {
display: flex;
flex-direction: column;
gap: 1.25rem;
}

.contact-info-item {
display: flex;
gap: 1rem;
align-items: flex-start;
}

.contact-info-icon {
font-size: 1.5rem;
flex-shrink: 0;
}

.contact-info-item-title {
color: #ffffff;
font-size: 0.9375rem;
font-weight: 600;
margin-bottom: 0.25rem;
}

.contact-info-item-text {
color: #cbd5e1;
font-size: 0.875rem;
line-height: 1.5;
}

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

.contact-form-wrapper,
.contact-info-block {
flex: 1 1 100%;
max-width: none;
}
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 9999;
padding: clamp(1rem, 3vw, 1.5rem);
background: #0c1929;
border-top: 1px solid rgba(59, 130, 246, 0.2);
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: clamp(1rem, 2vw, 1.5rem);
box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner-text {
color: #bfdbfe;
font-size: 0.875rem;
text-align: center;
flex: 1 1 200px;
min-width: 200px;
}

.cookie-banner-buttons {
display: flex;
flex-wrap: wrap;
gap: 1rem;
align-items: center;
flex: 0 1 auto;
}

.cookie-btn-accept,
.cookie-btn-decline {
padding: 0.625rem 1.25rem;
border: none;
border-radius: var(--radius-sm);
font-size: 0.875rem;
font-weight: 600;
cursor: pointer;
transition: all 300ms ease;
white-space: nowrap;
}

.cookie-btn-accept {
background: #3b82f6;
color: #0c1929;
}

.cookie-btn-accept:hover {
background: #60a5fa;
transform: translateY(-1px);
}

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

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

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

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

.cookie-banner-buttons {
flex: 1 1 100%;
justify-content: center;
}

.cookie-btn-accept,
.cookie-btn-decline {
flex: 1 1 auto;
min-width: 100px;
}
}

@media (max-width: 480px) {
.cookie-banner {
padding: 1rem;
gap: 0.75rem;
}

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

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

    .footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

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

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

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

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

.footer-about-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #bfdbfe;
  margin: 0;
  max-width: 450px;
}

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

.footer-nav-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #bfdbfe;
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.footer-nav-link:hover {
  color: #60a5fa;
}

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

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

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

.footer-contact-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.footer-contact-item {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #bfdbfe;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  font-weight: 500;
  color: #e0e7ff;
  display: block;
}

.footer-contact-value {
  color: #bfdbfe;
  display: block;
}

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

.footer-legal-title {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.footer-legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-legal-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #bfdbfe;
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.footer-legal-link:hover {
  color: #60a5fa;
}

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

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

.footer-bottom {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(59, 130, 246, 0.08);
}

.footer-copyright {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.875rem);
  color: #64748b;
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 6vw, 4rem);
    grid-template-areas:
      "about about"
      "nav contact"
      "legal legal"
      "bottom bottom";
  }

  .footer-about {
    grid-area: about;
  }

  .footer-navigation {
    grid-area: nav;
  }

  .footer-contact {
    grid-area: contact;
  }

  .footer-legal {
    grid-area: legal;
  }

  .footer-bottom {
    grid-area: bottom;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(2.5rem, 6vw, 4rem);
    grid-template-areas:
      "about nav contact legal"
      "bottom bottom bottom bottom";
  }

  .footer-about {
    grid-column: 1 / 2;
  }

  .footer-navigation {
    grid-column: 2 / 3;
  }

  .footer-contact {
    grid-column: 3 / 4;
  }

  .footer-legal {
    grid-column: 4 / 5;
  }
}

.footer-nav-link:focus-visible,
.footer-legal-link:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

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

  .footer-nav-link::after,
  .footer-legal-link::after {
    transition: none;
  }
}
    

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

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

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

.hero-gradient-field-dutch {
  position: absolute;
  bottom: -50px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-dutch {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

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

.hero-content-dutch-learning {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-tag-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #38bdf8;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

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

.hero-subtitle-dutch-learning {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 700px;
}

.hero-stats-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

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

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

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

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

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

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

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

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #60a5fa;
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #38bdf8;
  transform: translateY(-2px);
}

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

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

.posts-tag-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

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

.posts-subtitle-dutch {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.card-dutch-learning {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 12px;
  transition: all 0.35s ease;
}

.card-dutch-learning:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

.card-description-dutch-learning {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

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

.card-link-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
  color: #ffffff;
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.card-link-dutch:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

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

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

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

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

.learning-path-tag-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #38bdf8;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.learning-path-title-dutch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.learning-step-dutch {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.75rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.learning-step-dutch:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateX(8px);
}

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

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

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

.learning-step-text-dutch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

.benefits-accent-shape-dutch {
  position: absolute;
  top: 30%;
  left: -120px;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

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

.benefits-tag-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #22d3ee;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.benefits-title-dutch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.benefits-content-dutch {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.benefits-intro-dutch {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.benefits-list-dutch {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.benefits-list-item-dutch {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.7;
  padding-left: 2rem;
  position: relative;
}

.benefits-list-item-dutch::before {
  content: '';
  position: absolute;
  left: 0;
  color: #38bdf8;
  font-weight: bold;
  font-size: 1.25rem;
}

.benefits-list-item-dutch strong {
  color: #ffffff;
  font-weight: 600;
}

.featured-quote-dutch {
  padding: 2.5rem;
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  margin-top: 2.5rem;
}

.featured-quote-dutch p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  font-style: italic;
}

.featured-quote-dutch cite {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #bfdbfe;
  font-style: normal;
}

@media (max-width: 768px) {
  .learning-step-dutch {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .learning-step-number-dutch {
    font-size: 2rem;
  }

  .hero-stats-dutch {
    gap: 1.5rem;
  }

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

  .btn {
    width: 100%;
  }

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

  .hero-ambient-glow-dutch {
    width: 300px;
    height: 300px;
  }

  .hero-gradient-field-dutch {
    width: 350px;
    height: 350px;
  }
}

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

  .stat-number-dutch {
    font-size: 2rem;
  }

  .learning-step-number-dutch {
    font-size: 1.75rem;
    min-width: 60px;
  }

  .learning-step-dutch {
    padding: 1.25rem;
    gap: 1rem;
  }

  .benefits-list-item-dutch {
    padding-left: 1.75rem;
    font-size: 0.9375rem;
  }
}

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

:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.main-nederlands-grammatica-basis {
  width: 100%;
  background: #ffffff;
}

.hero-section-nederlands-grammatica-basis {
  background: #0c1929;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-text-block-nederlands-grammatica-basis {
  flex: 1 1 100%;
  max-width: 55%;
}

@media (max-width: 768px) {
  .hero-text-block-nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.breadcrumb-link-nederlands-grammatica-basis {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-nederlands-grammatica-basis:hover {
  color: #93c5fd;
  text-decoration: underline;
}

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

.breadcrumb-current-nederlands-grammatica-basis {
  color: #cbd5e1;
}

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

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

.article-meta-nederlands-grammatica-basis {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-nederlands-grammatica-basis {
  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-grammatica-basis i {
  color: #3b82f6;
}

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

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

.stat-number-nederlands-grammatica-basis {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #3b82f6;
  display: block;
  line-height: 1;
}

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

.hero-image-block-nederlands-grammatica-basis {
  flex: 1 1 100%;
  max-width: 45%;
  min-width: 0;
}

@media (max-width: 768px) {
  .hero-image-block-nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.introduction-text-nederlands-grammatica-basis {
  flex: 1 1 100%;
  max-width: 55%;
}

@media (max-width: 768px) {
  .introduction-text-nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.introduction-image-block-nederlands-grammatica-basis {
  flex: 1 1 100%;
  max-width: 45%;
}

@media (max-width: 768px) {
  .introduction-image-block-nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-image-nederlands-grammatica-basis {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

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

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

.structure-subtitle-nederlands-grammatica-basis {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.structure-text-nederlands-grammatica-basis {
  flex: 1 1 100%;
  max-width: 55%;
}

@media (max-width: 768px) {
  .structure-text-nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.structure-subheading-nederlands-grammatica-basis {
  color: #1e293b;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

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

.structure-image-block-nederlands-grammatica-basis {
  flex: 1 1 100%;
  max-width: 45%;
}

@media (max-width: 768px) {
  .structure-image-block-nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.structure-image-nederlands-grammatica-basis {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.verbs-section-nederlands-grammatica-basis {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.verbs-content-netherlands-grammatica-basis {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.verbs-image-block-nederlands-grammatica-basis {
  flex: 1 1 100%;
  max-width: 45%;
}

@media (max-width: 768px) {
  .verbs-image-block-nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.verbs-image-nederlands-grammatica-basis {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.verbs-text-block-nederlands-grammatica-basis {
  flex: 1 1 100%;
  max-width: 55%;
}

@media (max-width: 768px) {
  .verbs-text-block-nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.verbs-heading-nederlands-grammatica-basis {
  color: #1e293b;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

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

.verbs-list-nederlands-grammatica-basis {
  list-style: none;
  padding: 0;
  margin: 0;
}

.verbs-list-item-nederlands-grammatica-basis {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.verbs-list-item-nederlands-grammatica-basis::before {
  content: '';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

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

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

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

.sentence-subtitle-nederlands-grammatica-basis {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.sentence-step-nederlands-grammatica-basis {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

.sentence-step-content-nederlands-grammatica-basis {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sentence-step-title-nederlands-grammatica-basis {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

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

@media (max-width: 768px) {
  .sentence-step-nederlands-grammatica-basis {
    padding: 1.5rem;
  }
  
  .sentence-step-number-nederlands-grammatica-basis {
    min-width: 50px;
  }
}

.adjectives-section-nederlands-grammatica-basis {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.adjectives-text-block-nederlands-grammatica-basis {
  flex: 1 1 100%;
  max-width: 55%;
}

@media (max-width: 768px) {
  .adjectives-text-block-nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.adjectives-heading-nederlands-grammatica-basis {
  color: #1e293b;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

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

.adjectives-image-block-nederlands-grammatica-basis {
  flex: 1 1 100%;
  max-width: 45%;
}

@media (max-width: 768px) {
  .adjectives-image-block-nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.adjectives-image-nederlands-grammatica-basis {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

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

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

.prepositions-subtitle-nederlands-grammatica-basis {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.prepositions-cards-nederlands-grammatica-basis {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.prepositions-card-nederlands-grammatica-basis {
  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;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prepositions-card-nederlands-grammatica-basis:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.prepositions-card-icon-nederlands-grammatica-basis {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 10px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

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

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

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

.practice-section-nederlands-grammatica-basis {
  background: #0c1929;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-nederlands-grammatica-basis {
  padding: 2.5rem;
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin-bottom: 3rem;
  border-radius: 8px;
}

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

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

.practice-content-nederlands-grammatica-basis {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practice-text-block-nederlands-grammatica-basis {
  flex: 1 1 100%;
  max-width: 55%;
}

@media (max-width: 768px) {
  .practice-text-block-nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-title-nederlands-grammatica-basis {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

.practice-list-nederlands-grammatica-basis {
  list-style: none;
  padding: 0;
  margin: 0;
}

.practice-list-item-nederlands-grammatica-basis {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.practice-list-item-nederlands-grammatica-basis::before {
  content: '';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.practice-image-block-nederlands-grammatica-basis {
  flex: 1 1 100%;
  max-width: 45%;
}

@media (max-width: 768px) {
  .practice-image-block-nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-image-nederlands-grammatica-basis {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.conclusion-section-nederlands-grammatica-basis {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.conclusion-title-nederlands-grammatica-basis {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.conclusion-cta-box-nederlands-grammatica-basis {
  background: linear-gradient(135deg, #3b82f6, #0284c7);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.cta-box-title-nederlands-grammatica-basis {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.cta-box-text-nederlands-grammatica-basis {
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.btn-primary-nederlands-grammatica-basis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #0284c7;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary-nederlands-grammatica-basis:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: #f0f9ff;
}

.related-posts-section-nederlands-grammatica-basis {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

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

.related-subtitle-nederlands-grammatica-basis {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-nederlands-grammatica-basis {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card-nederlands-grammatica-basis:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.related-card-content-nederlands-grammatica-basis {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.related-card-link-nederlands-grammatica-basis {
  color: #3b82f6;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.related-card-link-nederlands-grammatica-basis:hover {
  color: #60a5fa;
  text-decoration: underline;
}

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

.disclaimer-section-nederlands-grammatica-basis {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-nederlands-grammatica-basis {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f0f9ff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.disclaimer-title-nederlands-grammatica-basis {
  color: #0c1929;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-grammatica-basis {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

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

@media (max-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
  }
  
  .hero-section-nederlands-grammatica-basis,
  .introduction-section-nederlands-grammatica-basis,
  .structure-section-nederlands-grammatica-basis,
  .verbs-section-nederlands-grammatica-basis,
  .sentence-section-nederlands-grammatica-basis,
  .adjectives-section-nederlands-grammatica-basis,
  .prepositions-section-nederlands-grammatica-basis,
  .practice-section-nederlands-grammatica-basis,
  .conclusion-section-nederlands-grammatica-basis,
  .related-posts-section-nederlands-grammatica-basis,
  .disclaimer-section-nederlands-grammatica-basis {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  }
  
  .hero-stats-nederlands-grammatica-basis {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 480px) {
  .breadcrumbs-nederlands-grammatica-basis {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
  
  .hero-stats-nederlands-grammatica-basis {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .stat-number-nederlands-grammatica-basis {
    font-size: 1.75rem;
  }
  
  .stat-label-nederlands-grammatica-basis {
    font-size: 0.75rem;
  }
}

a:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

button:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.main-nederlandse-woordenschat-praktijk {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-nederlandse-woordenschat-praktijk {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-nederlandse-woordenschat-praktijk::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

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

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

.breadcrumbs-nederlandse-woordenschat-praktijk {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlandse-woordenschat-praktijk:hover {
  color: #3b82f6;
}

.breadcrumb-separator-nederlandse-woordenschat-praktijk {
  color: #64748b;
}

.breadcrumb-current-nederlandse-woordenschat-praktijk {
  color: #3b82f6;
  font-weight: 500;
}

.hero-title-nederlandse-woordenschat-praktijk {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-meta-nederlandse-woordenschat-praktijk {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-nederlandse-woordenschat-praktijk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #bfdbfe;
  border-radius: var(--radius-md);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-nederlandse-woordenschat-praktijk i {
  color: #3b82f6;
}

.hero-stats-nederlandse-woordenschat-praktijk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
}

.stat-item-nederlandse-woordenschat-praktijk {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-nederlandse-woordenschat-praktijk {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
  display: block;
}

.stat-label-nederlandse-woordenschat-praktijk {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #bfdbfe;
  opacity: 0.9;
}

.hero-image-wrapper-nederlandse-woordenschat-praktijk {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-featured-image-nederlandse-woordenschat-praktijk {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

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

  .hero-stats-nederlandse-woordenschat-praktijk {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

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

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

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

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

.introduction-paragraph-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.introduction-image-nederlandse-woordenschat-praktijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-nederlandse-woordenschat-praktijk {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

.themes-header-nederlandse-woordenschat-praktijk {
  text-align: center;
  margin-bottom: 3rem;
}

.themes-tag-nederlandse-woordenschat-praktijk {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.themes-title-nederlandse-woordenschat-praktijk {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.themes-cards-nederlandse-woordenschat-praktijk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.themes-card-nederlandse-woordenschat-praktijk {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.themes-card-nederlandse-woordenschat-praktijk:hover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.themes-card-icon-nederlandse-woordenschat-praktijk {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  color: #3b82f6;
  font-size: 1.5rem;
}

.themes-card-title-nederlandse-woordenschat-praktijk {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.themes-card-text-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

.content-section-one-nederlandse-woordenschat-praktijk {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-one-nederlandse-woordenschat-praktijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-nederlandse-woordenschat-praktijk {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-paragraph-one-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vocabulary-list-one-nederlandse-woordenschat-praktijk {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vocab-item-one-nederlandse-woordenschat-praktijk {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid #3b82f6;
  border-radius: 4px;
}

.vocab-word-one-nederlandse-woordenschat-praktijk {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9375rem;
}

.vocab-meaning-one-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  font-size: 0.875rem;
}

.content-highlight-one-nederlandse-woordenschat-praktijk {
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.content-image-one-nederlandse-woordenschat-praktijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-nederlandse-woordenschat-praktijk {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

  .content-text-one-nederlandse-woordenschat-praktijk,
  .content-image-one-nederlandse-woordenschat-praktijk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-nederlandse-woordenschat-praktijk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-nederlandse-woordenschat-praktijk {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-img-two-nederlandse-woordenschat-praktijk {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.content-text-two-nederlandse-woordenschat-praktijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-nederlandse-woordenschat-praktijk {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-paragraph-two-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.situation-blocks-nederlandse-woordenschat-praktijk {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.situation-block-nederlandse-woordenschat-praktijk {
  padding: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
  border-left: 3px solid #3b82f6;
}

.situation-title-nederlandse-woordenschat-praktijk {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.situation-text-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  font-size: 0.875rem;
  line-height: 1.6;
}

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

  .content-image-two-nederlandse-woordenschat-praktijk {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .content-text-two-nederlandse-woordenschat-praktijk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.learning-strategies-nederlandse-woordenschat-praktijk {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-header-nederlandse-woordenschat-praktijk {
  text-align: center;
  margin-bottom: 3rem;
}

.strategies-tag-nederlandse-woordenschat-praktijk {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.strategies-title-nederlandse-woordenschat-praktijk {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.strategies-steps-nederlandse-woordenschat-praktijk {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-step-nederlandse-woordenschat-praktijk {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.strategy-step-nederlandse-woordenschat-praktijk:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: #3b82f6;
}

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

.strategy-content-nederlandse-woordenschat-praktijk {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.strategy-title-nederlandse-woordenschat-praktijk {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.125rem;
}

.strategy-text-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

  .strategy-number-nederlandse-woordenschat-praktijk {
    min-width: auto;
  }
}

.advanced-content-nederlandse-woordenschat-praktijk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.advanced-text-nederlandse-woordenschat-praktijk {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.advanced-paragraph-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-quote-nederlandse-woordenschat-praktijk {
  padding: 2rem;
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

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

.quote-author-nederlandse-woordenschat-praktijk {
  font-size: 0.875rem;
  color: #bfdbfe;
  font-style: normal;
  opacity: 0.8;
}

.advanced-image-nederlandse-woordenschat-praktijk {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-img-nederlandse-woordenschat-praktijk {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .advanced-wrapper-nederlandse-woordenschat-praktijk {
    flex-direction: column;
  }

  .advanced-text-nederlandse-woordenschat-praktijk,
  .advanced-image-nederlandse-woordenschat-praktijk {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-nederlandse-woordenschat-praktijk {
  text-align: center;
}

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

.conclusion-text-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.conclusion-highlights-nederlandse-woordenschat-praktijk {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.highlight-item-nederlandse-woordenschat-praktijk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
}

.highlight-item-nederlandse-woordenschat-praktijk i {
  color: #10b981;
  font-size: 1.25rem;
}

.highlight-text-nederlandse-woordenschat-praktijk {
  margin: 0;
}

.cta-box-nederlandse-woordenschat-praktijk {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-nederlandse-woordenschat-praktijk {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-text-nederlandse-woordenschat-praktijk {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.9375rem, 1vw, 1rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-nederlandse-woordenschat-praktijk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #1e40af;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.9375rem, 1vw, 1rem);
}

.cta-button-nederlandse-woordenschat-praktijk:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.related-posts-nederlandse-woordenschat-praktijk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-nederlandse-woordenschat-praktijk {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
}

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

.related-card-nederlandse-woordenschat-praktijk {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.related-card-nederlandse-woordenschat-praktijk:hover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.related-card-image-nederlandse-woordenschat-praktijk {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.related-card-image-nederlandse-woordenschat-praktijk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-nederlandse-woordenschat-praktijk {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.related-card-link-nederlandse-woordenschat-praktijk {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.related-card-link-nederlandse-woordenschat-praktijk:hover {
  color: #60a5fa;
  gap: 0.5rem;
}

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

.disclaimer-section-nederlandse-woordenschat-praktijk {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-nederlandse-woordenschat-praktijk {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid #3b82f6;
}

.disclaimer-icon-nederlandse-woordenschat-praktijk {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  color: #3b82f6;
  font-size: 1.5rem;
}

.disclaimer-text-wrapper-nederlandse-woordenschat-praktijk {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disclaimer-title-nederlandse-woordenschat-praktijk {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.disclaimer-text-nederlandse-woordenschat-praktijk {
  color: #bfdbfe;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
  }

  .themes-card-nederlandse-woordenschat-praktijk {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-nederlandse-woordenschat-praktijk {
    flex: 1 1 100%;
    max-width: none;
  }

  .strategy-step-nederlandse-woordenschat-praktijk {
    flex-direction: column;
    gap: 1rem;
  }

  .disclaimer-content-nederlandse-woordenschat-praktijk {
    flex-direction: column;
    gap: 1rem;
  }
}

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

  .conclusion-highlights-nederlandse-woordenschat-praktijk {
    flex-direction: column;
    align-items: center;
  }

  .cta-button-nederlandse-woordenschat-praktijk {
    width: 100%;
  }
}

.main-nederlandse-verbtijden-meisteren {
  width: 100%;
}

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

.breadcrumb-link-nederlandse-verbtijden-meisteren {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlandse-verbtijden-meisteren:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumb-separator-nederlandse-verbtijden-meisteren {
  color: #bfdbfe;
}

.breadcrumb-current-nederlandse-verbtijden-meisteren {
  color: #cbd5e1;
}

.hero-section-nederlandse-verbtijden-meisteren {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-nederlandse-verbtijden-meisteren::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content-nederlandse-verbtijden-meisteren {
  position: relative;
  z-index: 1;
}

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

.hero-subtitle-nederlandse-verbtijden-meisteren {
  color: #bfdbfe;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.6;
}

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

.meta-badge-nederlandse-verbtijden-meisteren {
  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.8rem, 1vw, 0.9rem);
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-nederlandse-verbtijden-meisteren i {
  color: #60a5fa;
}

.hero-image-nederlandse-verbtijden-meisteren {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: block;
  margin-top: 2rem;
}

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

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

.intro-text-nederlandse-verbtijden-meisteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlandse-verbtijden-meisteren {
  color: #0f172a;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-nederlandse-verbtijden-meisteren {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-nederlandse-verbtijden-meisteren {
  flex: 1 1 50%;
  max-width: 50%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-nederlandse-verbtijden-meisteren {
    flex-direction: column;
  }
  
  .intro-text-nederlandse-verbtijden-meisteren,
  .intro-image-nederlandse-verbtijden-meisteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fundamentals-section-nederlandse-verbtijden-meisteren {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.fundamentals-section-nederlandse-verbtijden-meisteren::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.fundamentals-content-nederlandse-verbtijden-meisteren {
  position: relative;
  z-index: 1;
}

.fundamentals-title-nederlandse-verbtijden-meisteren {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.2;
}

.fundamentals-grid-nederlandse-verbtijden-meisteren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.fundamentals-card-nederlandse-verbtijden-meisteren {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.fundamentals-card-nederlandse-verbtijden-meisteren:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-4px);
}

.fundamentals-card-icon-nederlandse-verbtijden-meisteren {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 10px;
  font-size: 1.5rem;
}

.fundamentals-card-title-nederlandse-verbtijden-meisteren {
  color: #ffffff;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

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

@media (max-width: 768px) {
  .fundamentals-card-nederlandse-verbtijden-meisteren {
    flex: 1 1 100%;
    min-width: auto;
  }
}

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

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

.detailed-text-nederlandse-verbtijden-meisteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.detailed-title-nederlandse-verbtijden-meisteren {
  color: #0f172a;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.detailed-description-nederlandse-verbtijden-meisteren {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.detailed-highlight-nederlandse-verbtijden-meisteren {
  padding: 2rem;
  background: #f0f9ff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin: 2rem 0;
}

.highlight-text-nederlandse-verbtijden-meisteren {
  color: #1e40af;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.detailed-image-nederlandse-verbtijden-meisteren {
  flex: 1 1 50%;
  max-width: 50%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .detailed-wrapper-nederlandse-verbtijden-meisteren {
    flex-direction: column;
  }
  
  .detailed-text-nederlandse-verbtijden-meisteren,
  .detailed-image-nederlandse-verbtijden-meisteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conjugation-section-nederlandse-verbtijden-meisteren {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conjugation-title-nederlandse-verbtijden-meisteren {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.2;
}

.conjugation-steps-nederlandse-verbtijden-meisteren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conjugation-step-nederlandse-verbtijden-meisteren {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.conjugation-step-number-nederlandse-verbtijden-meisteren {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.conjugation-step-content-nederlandse-verbtijden-meisteren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.conjugation-step-title-nederlandse-verbtijden-meisteren {
  color: #ffffff;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
}

.conjugation-step-text-nederlandse-verbtijden-meisteren {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .conjugation-step-nederlandse-verbtijden-meisteren {
    flex-direction: column;
    gap: 1rem;
  }
  
  .conjugation-step-number-nederlandse-verbtijden-meisteren {
    min-width: auto;
  }
}

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

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

.advanced-image-nederlandse-verbtijden-meisteren {
  flex: 1 1 50%;
  max-width: 50%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.advanced-text-nederlandse-verbtijden-meisteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-title-nederlandse-verbtijden-meisteren {
  color: #0f172a;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.advanced-description-nederlandse-verbtijden-meisteren {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .advanced-wrapper-nederlandse-verbtijden-meisteren {
    flex-direction: column;
  }
  
  .advanced-image-nederlandse-verbtijden-meisteren,
  .advanced-text-nederlandse-verbtijden-meisteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-nederlandse-verbtijden-meisteren {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.practice-content-nederlandse-verbtijden-meisteren {
  position: relative;
  z-index: 1;
}

.practice-title-nederlandse-verbtijden-meisteren {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.practice-intro-nederlandse-verbtijden-meisteren {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.practice-list-nederlandse-verbtijden-meisteren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.practice-item-nederlandse-verbtijden-meisteren {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
}

.practice-item-title-nederlandse-verbtijden-meisteren {
  color: #ffffff;
  font-size: clamp(1.1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.practice-item-text-nederlandse-verbtijden-meisteren {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .practice-item-nederlandse-verbtijden-meisteren {
    flex: 1 1 100%;
    min-width: auto;
  }
}

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

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

.conclusion-title-nederlandse-verbtijden-meisteren {
  color: #0f172a;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-nederlandse-verbtijden-meisteren {
  color: #475569;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.conclusion-highlight-nederlandse-verbtijden-meisteren {
  padding: 2rem;
  background: #f0f9ff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: left;
}

.conclusion-highlight-text-nederlandse-verbtijden-meisteren {
  color: #1e40af;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin: 0;
}

.conclusion-cta-nederlandse-verbtijden-meisteren {
  margin-top: 2.5rem;
}

.cta-button-nederlandse-verbtijden-meisteren {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button-nederlandse-verbtijden-meisteren:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.disclaimer-section-nederlandse-verbtijden-meisteren {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-nederlandse-verbtijden-meisteren {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.disclaimer-title-nederlandse-verbtijden-meisteren {
  color: #1e293b;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.disclaimer-text-nederlandse-verbtijden-meisteren {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.7;
  margin: 0;
}

.related-section-nederlandse-verbtijden-meisteren {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-section-nederlandse-verbtijden-meisteren::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.related-title-nederlandse-verbtijden-meisteren {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.related-cards-nederlandse-verbtijden-meisteren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.related-card-nederlandse-verbtijden-meisteren {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-nederlandse-verbtijden-meisteren:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-4px);
}

.related-card-title-nederlandse-verbtijden-meisteren {
  color: #ffffff;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-nederlandse-verbtijden-meisteren {
  color: #cbd5e1;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-nederlandse-verbtijden-meisteren {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.related-card-link-nederlandse-verbtijden-meisteren:hover {
  color: #93c5fd;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-nederlandse-verbtijden-meisteren {
    flex: 1 1 calc(50% - 1rem);
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .related-card-nederlandse-verbtijden-meisteren {
    flex: 1 1 100%;
    min-width: auto;
  }
  
  .breadcrumbs-nederlandse-verbtijden-meisteren {
    margin-bottom: 1.5rem;
  }
  
  .hero-image-nederlandse-verbtijden-meisteren,
  .intro-image-nederlandse-verbtijden-meisteren,
  .detailed-image-nederlandse-verbtijden-meisteren,
  .advanced-image-nederlandse-verbtijden-meisteren {
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .meta-badge-nederlandse-verbtijden-meisteren {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .conjugation-step-nederlandse-verbtijden-meisteren {
    padding: 1rem;
  }
}

.main-nederlandse-zinsstructuur-gids {
  width: 100%;
  background: #0c1929;
}

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

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

.hero-section-nederlandse-zinsstructuur-gids {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

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

.breadcrumb-link-nederlandse-zinsstructuur-gids {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlandse-zinsstructuur-gids:hover {
  color: #bfdbfe;
}

.breadcrumb-separator-nederlandse-zinsstructuur-gids,
.breadcrumb-current-nederlandse-zinsstructuur-gids {
  color: #94a3b8;
}

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

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

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

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

.hero-meta-Nederlandse-zinsstructuur-gids {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-nederlandse-zinsstructuur-gids {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #bfdbfe;
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-nederlandse-zinsstructuur-gids i {
  color: #3b82f6;
}

.hero-buttons-nederlandse-zinsstructuur-gids {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.hero-featured-image-nederlandse-zinsstructuur-gids {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

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

.intro-section-nederlandse-zinsstructuur-gids {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.intro-text-block-nederlandse-zinsstructuur-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-block-nederlandse-zinsstructuur-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-nederlandse-zinsstructuur-gids {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .intro-text-block-nederlandse-zinsstructuur-gids,
  .intro-image-block-nederlandse-zinsstructuur-gids {
    flex: 1 1 100%;
    max-width: none;
  }
}

.fundamentals-section-nederlandse-zinsstructuur-gids {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-nederlandse-zinsstructuur-gids {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-nederlandse-zinsstructuur-gids {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.fundamentals-subtitle-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.fundamentals-steps-nederlandse-zinsstructuur-gids {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fundamentals-step-nederlandse-zinsstructuur-gids {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

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

.step-content-nederlandse-zinsstructuur-gids {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.step-text-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.patterns-section-nederlandse-zinsstructuur-gids {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.patterns-text-block-nederlandse-zinsstructuur-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.patterns-description-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.patterns-highlight-box-nederlandse-zinsstructuur-gids {
  background: #f0f9ff;
  padding: 1.5rem;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.highlight-text-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #0f172a;
  line-height: 1.6;
}

.patterns-image-block-nederlandse-zinsstructuur-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

.patterns-image-nederlandse-zinsstructuur-gids {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .patterns-wrapper-nederlandse-zinsstructuur-gids {
    flex-direction: column;
  }

  .patterns-text-block-nederlandse-zinsstructuur-gids,
  .patterns-image-block-nederlandse-zinsstructuur-gids {
    flex: 1 1 100%;
    max-width: none;
  }
}

.advanced-section-nederlandse-zinsstructuur-gids {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.advanced-title-nederlandse-zinsstructuur-gids {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.advanced-subtitle-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.advanced-cards-nederlandse-zinsstructuur-gids {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2rem;
}

.advanced-card-nederlandse-zinsstructuur-gids {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.advanced-card-nederlandse-zinsstructuur-gids:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.12);
}

.card-icon-nederlandse-zinsstructuur-gids {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 10px;
  font-size: 1.5rem;
}

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

.card-text-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

.practice-section-nederlandse-zinsstructuur-gids {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.practice-image-block-nederlandse-zinsstructuur-gids {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.practice-image-nederlandse-zinsstructuur-gids {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.practice-text-block-nederlandse-zinsstructuur-gids {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.practice-description-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.practice-list-nederlandse-zinsstructuur-gids {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.practice-list-item-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #334155;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.practice-list-item-nederlandse-zinsstructuur-gids::before {
  content: '';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

@media (max-width: 768px) {
  .practice-wrapper-nederlandse-zinsstructuur-gids {
    flex-direction: column;
  }

  .practice-image-block-nederlandse-zinsstructuur-gids,
  .practice-text-block-nederlandse-zinsstructuur-gids {
    flex: 1 1 100%;
    max-width: none;
    order: unset;
  }
}

.conclusion-section-nederlandse-zinsstructuur-gids {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.conclusion-title-nederlandse-zinsstructuur-gids {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.featured-quote-nederlandse-zinsstructuur-gids {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: 2rem 0;
  border-radius: 8px;
}

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

.quote-author-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #bfdbfe;
  font-style: normal;
}

.conclusion-description-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-nederlandse-zinsstructuur-gids {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-nederlandse-zinsstructuur-gids {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-description-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.cta-box-nederlandse-zinsstructuur-gids .btn {
  background: #ffffff;
  color: #3b82f6;
  margin-top: 0;
}

.cta-box-nederlandse-zinsstructuur-gids .btn:hover {
  background: #f0f9ff;
}

.related-section-nederlandse-zinsstructuur-gids {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

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

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

.related-card-nederlandse-zinsstructuur-gids {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-nederlandse-zinsstructuur-gids:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

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

.related-card-image-nederlandse-zinsstructuur-gids img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-nederlandse-zinsstructuur-gids {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.related-card-description-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.5;
}

.related-card-link-nederlandse-zinsstructuur-gids {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.2s ease;
}

.related-card-link-nederlandse-zinsstructuur-gids:hover {
  color: #1d4ed8;
  gap: 0.75rem;
}

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

.disclaimer-section-nederlandse-zinsstructuur-gids {
  background: #0f172a;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.disclaimer-content-nederlandse-zinsstructuur-gids {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-nederlandse-zinsstructuur-gids {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlandse-zinsstructuur-gids {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #cbd5e1;
  line-height: 1.7;
}

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

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

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

@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .fundamentals-step-nederlandse-zinsstructuur-gids {
    padding: 1.5rem;
  }

  section {
    padding: clamp(4rem, 6vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-nederlandse-zinsstructuur-gids {
    padding: clamp(5rem, 8vw, 6rem) 0;
  }

  section {
    padding: clamp(5rem, 8vw, 6rem) 0;
  }
}

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

  .hero-meta-Nederlandse-zinsstructuur-gids {
    flex-direction: column;
  }

  .meta-badge-nederlandse-zinsstructuur-gids {
    width: 100%;
  }
}

.main-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  background: #0c1929;
}

.hero-section-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0c1929;
  overflow: hidden;
  position: relative;
}

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

.breadcrumbs-geavanceerde-nederlandse-taalstructuur {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
}

.breadcrumb-link-geavanceerde-nederlandse-taalstructuur {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-geavanceerde-nederlandse-taalstructuur:hover {
  color: #bfdbfe;
}

.breadcrumb-separator-geavanceerde-nederlandse-taalstructuur {
  color: #64748b;
}

.breadcrumb-current-geavanceerde-nederlandse-taalstructuur {
  color: #cbd5e1;
}

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

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

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

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

.hero-meta-geavanceerde-nederlandse-taalstructuur {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-badge-geavanceerde-nederlandse-taalstructuur {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.25rem);
  background: rgba(59, 130, 246, 0.15);
  color: #bfdbfe;
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 500;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-geavanceerde-nederlandse-taalstructuur i {
  color: #60a5fa;
}

.hero-stats-geavanceerde-nederlandse-taalstructuur {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2rem) 0;
}

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

.stat-number-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
}

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

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

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

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

  .hero-stats-geavanceerde-nederlandse-taalstructuur {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

.introduction-section-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #162d50;
  overflow: hidden;
}

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

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

.intro-text-block-geavanceerde-nederlandse-taalstructuur {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-description-secondary-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  line-height: 1.8;
}

.intro-image-block-geavanceerde-nederlandse-taalstructuur {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

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

  .intro-text-block-geavanceerde-nederlandse-taalstructuur,
  .intro-image-block-geavanceerde-nederlandse-taalstructuur {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0c1929;
  overflow: hidden;
}

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

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

.content-text-block-one-geavanceerde-nederlandse-taalstructuur {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-text-one-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-highlight-box-geavanceerde-nederlandse-taalstructuur {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-title-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 0.5rem;
}

.highlight-text-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.content-image-block-one-geavanceerde-nederlandse-taalstructuur {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

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

  .content-text-block-one-geavanceerde-nederlandse-taalstructuur,
  .content-image-block-one-geavanceerde-nederlandse-taalstructuur {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #1e3a5f;
  overflow: hidden;
}

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

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

.content-image-block-two-geavanceerde-nederlandse-taalstructuur {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-image-two-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.content-text-block-two-geavanceerde-nederlandse-taalstructuur {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-text-two-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-list-geavanceerde-nederlandse-taalstructuur {
  list-style: none;
  padding: 0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.list-item-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

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

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

  .content-image-block-two-geavanceerde-nederlandse-taalstructuur {
    order: 0;
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-text-block-two-geavanceerde-nederlandse-taalstructuur {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-three-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0c1929;
  overflow: hidden;
}

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

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

.content-text-block-three-geavanceerde-nederlandse-taalstructuur {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-text-three-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.featured-quote-geavanceerde-nederlandse-taalstructuur {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
}

.quote-text-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-style: italic;
  color: #e0e7ff;
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.quote-attribution-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #94a3b8;
  font-style: normal;
}

.content-image-block-three-geavanceerde-nederlandse-taalstructuur {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

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

  .content-text-block-three-geavanceerde-nederlandse-taalstructuur,
  .content-image-block-three-geavanceerde-nederlandse-taalstructuur {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #162d50;
  overflow: hidden;
}

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

.process-header-geavanceerde-nederlandse-taalstructuur {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-geavanceerde-nederlandse-taalstructuur {
  display: inline-block;
  padding: clamp(0.375rem, 1vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

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

.process-subtitle-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-geavanceerde-nederlandse-taalstructuur {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.process-step-geavanceerde-nederlandse-taalstructuur {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  align-items: flex-start;
}

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

.process-step-content-geavanceerde-nederlandse-taalstructuur {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.process-step-title-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.process-step-text-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

  .process-step-number-geavanceerde-nederlandse-taalstructuur {
    min-width: auto;
  }
}

.features-section-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0c1929;
  overflow: hidden;
}

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

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

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

.features-subtitle-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.features-card-geavanceerde-nederlandse-taalstructuur {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.features-card-geavanceerde-nederlandse-taalstructuur:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

.features-card-icon-geavanceerde-nederlandse-taalstructuur {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 10px;
  font-size: 1.5rem;
}

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

.features-card-text-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.conclusion-section-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #1e3a5f;
  overflow: hidden;
}

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

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

.conclusion-text-geavanceerde-nederlandse-taalstructuur {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.conclusion-description-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-cta-geavanceerde-nederlandse-taalstructuur {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-cta-geavanceerde-nederlandse-taalstructuur a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #3b82f6;
  color: #0c1929;
}

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

.btn-secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #bfdbfe;
}

.conclusion-image-geavanceerde-nederlandse-taalstructuur {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .conclusion-content-geavanceerde-nederlandse-taalstructuur {
    flex-direction: column;
  }

  .conclusion-text-geavanceerde-nederlandse-taalstructuur,
  .conclusion-image-geavanceerde-nederlandse-taalstructuur {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-cta-geavanceerde-nederlandse-taalstructuur {
    flex-direction: column;
  }

  .conclusion-cta-geavanceerde-nederlandse-taalstructuur a {
    width: 100%;
  }
}

.disclaimer-section-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0c1929;
  overflow: hidden;
}

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

.disclaimer-box-geavanceerde-nederlandse-taalstructuur {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.disclaimer-title-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 0.75rem;
}

.disclaimer-text-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.related-section-geavanceerde-nederlandse-taalstructuur {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #162d50;
  overflow: hidden;
}

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

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

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

.related-subtitle-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
}

.related-cards-geavanceerde-nederlandse-taalstructuur {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.related-card-geavanceerde-nederlandse-taalstructuur {
  flex: 1 1 300px;
  max-width: 400px;
  display: block;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-geavanceerde-nederlandse-taalstructuur:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.related-card-content-geavanceerde-nederlandse-taalstructuur {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s ease;
}

.related-card-geavanceerde-nederlandse-taalstructuur:hover .related-card-title-geavanceerde-nederlandse-taalstructuur {
  color: #60a5fa;
}

.related-card-description-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.related-card-link-geavanceerde-nederlandse-taalstructuur {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: #60a5fa;
  transition: color 0.3s ease;
}

.related-card-geavanceerde-nederlandse-taalstructuur:hover .related-card-link-geavanceerde-nederlandse-taalstructuur {
  color: #bfdbfe;
}

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

@media (max-width: 480px) {
  .breadcrumbs-geavanceerde-nederlandse-taalstructuur {
    font-size: 0.75rem;
  }

  .meta-badge-geavanceerde-nederlandse-taalstructuur {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

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

  .stat-number-geavanceerde-nederlandse-taalstructuur {
    font-size: 1.5rem;
  }

  .stat-label-geavanceerde-nederlandse-taalstructuur {
    font-size: 0.7rem;
  }
}

:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #64748b;
  --color-primary: #3b82f6;
  --color-primary-hover: #60a5fa;
  --color-secondary: #06b6d4;
  --color-tertiary: #10b981;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

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

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

.grammar-academy-about {
  width: 100%;
}

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

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

.hero-launch-text-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-launch-title-about {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-launch-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

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

.stat-box-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero-launch-visual-about {
  width: 100%;
  height: auto;
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (min-width: 768px) {
  .hero-launch-about {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-launch-about {
    padding: clamp(6rem, 12vw, 8rem) 0;
  }

  .hero-launch-content-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }

  .hero-launch-visual-about {
    max-width: 100%;
  }
}

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

.foundation-journey-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.journey-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-tag-about {
  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;
  width: fit-content;
}

.journey-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

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

.journey-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
}

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

.journey-step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.journey-step-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .foundation-journey-about {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .foundation-journey-about {
    padding: clamp(6rem, 12vw, 8rem) 0;
  }

  .journey-steps-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

.methodology-framework-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.methodology-header-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.methodology-description-about {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.methodology-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.methodology-card-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.methodology-card-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.methodology-card-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .methodology-framework-about {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .methodology-framework-about {
    padding: clamp(6rem, 12vw, 8rem) 0;
  }

  .methodology-cards-about {
    max-width: 100%;
  }
}

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

.commitment-excellence-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.excellence-intro-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
}

.excellence-intro-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.excellence-intro-text-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.excellence-values-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.value-badge-about {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
  flex: 1 1 240px;
  min-width: 200px;
}

.value-icon-about {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.value-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.value-name-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.value-desc-about {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.excellence-quote-about {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-md);
}

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

.quote-author-about {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: normal;
}

@media (min-width: 768px) {
  .commitment-excellence-about {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .excellence-values-about {
    max-width: 800px;
  }
}

@media (min-width: 1024px) {
  .commitment-excellence-about {
    padding: clamp(6rem, 12vw, 8rem) 0;
  }
}

.disclaimer-notice-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-notice-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.disclaimer-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .disclaimer-notice-about {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  .disclaimer-notice-about {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

.story-visual-about {
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  display: block;
}

.approach-visual-about {
  width: 100%;
  height: auto;
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .story-visual-about,
  .approach-visual-about {
    margin: 1.5rem 0;
  }
}

.grammar-legal {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

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

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

.privacy-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.privacy-hero-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-hero-meta {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.privacy-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.privacy-article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-article-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-article-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-article-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  margin-left: 1.5rem;
}

.privacy-article-list-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  list-style: disc;
  display: list-item;
}

.privacy-contact-section {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(191, 219, 254, 0.1);
}

.privacy-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.privacy-contact-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.privacy-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.privacy-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-contact-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-contact-item-label {
  font-weight: 600;
  color: var(--color-text-primary);
  display: inline;
}

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

  .privacy-content-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .privacy-contact-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .privacy-content-wrapper {
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .privacy-hero-section {
    padding: 6rem 0;
  }

  .privacy-content-section {
    padding: 6rem 0;
  }

  .privacy-contact-section {
    padding: 6rem 0;
  }

  .privacy-content-wrapper {
    gap: 4rem;
  }
}

.thank-page {
    width: 100%;
  }

  .thank-section {
    background: var(--color-bg-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;
    padding: 0 clamp(1rem, 4vw, 2rem);
    margin: 0 auto;
  }

  .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);
    animation: scaleInBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .thank-icon i {
    font-size: clamp(40px, 10vw, 60px);
    color: var(--color-tertiary);
  }

  .thank-section h1 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
  }

  .thank-subtitle {
    color: var(--color-secondary);
    font-family: var(--font-primary);
    font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
  }

  .thank-description {
    color: var(--color-text-secondary);
    font-family: var(--font-primary);
    font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    max-width: 600px;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-next-steps {
    color: var(--color-text-secondary);
    font-family: var(--font-primary);
    font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    max-width: 600px;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    font-family: var(--font-primary);
    font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }

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

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

  @keyframes scaleInBounce {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    50% {
      opacity: 1;
      transform: scale(1.1);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @media (min-width: 768px) {
    .thank-section {
      min-height: 100vh;
      padding: 3rem 0;
    }

    .thank-icon {
      margin-bottom: 1.5rem;
    }

    .thank-section h1 {
      letter-spacing: -1px;
    }
  }

  @media (min-width: 1024px) {
    .thank-section {
      padding: 4rem 0;
    }

    .thank-icon {
      margin-bottom: 2rem;
    }
  }

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

.error-404-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  background: var(--color-bg-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  min-height: 100vh;
  gap: clamp(2rem, 4vw, 3rem);
}

.error-decoration {
  position: absolute;
  font-size: clamp(6rem, 15vw, 12rem);
  opacity: 0.08;
  color: var(--color-primary);
  pointer-events: none;
}

.error-decoration-top {
  top: 5%;
  left: 5%;
  animation: float-gentle 6s ease-in-out infinite;
}

.error-decoration-bottom {
  bottom: 10%;
  right: 5%;
  animation: float-gentle 8s ease-in-out infinite reverse;
}

.error-code-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  text-shadow: 0 4px 30px rgba(59, 130, 246, 0.15);
}

.error-underline {
  width: clamp(4rem, 20vw, 8rem);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  border-radius: 2px;
}

.error-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.error-suggestions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-lg);
}

.suggestions-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--color-secondary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.suggestions-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.suggestions-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1.5vw, 0.875rem);
  line-height: 1.5;
}

.suggestions-list i {
  color: var(--color-tertiary);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.5rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: var(--shadow-md);
  margin-top: clamp(0.5rem, 1.5vw, 1rem);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn i {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

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

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-content {
    min-height: auto;
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .error-code-wrapper {
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }

  .error-suggestions {
    padding: clamp(2rem, 3vw, 2.5rem);
  }

  .suggestions-list {
    gap: clamp(1rem, 2vw, 1.25rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-content {
    gap: 3rem;
  }

  .error-code-wrapper {
    margin-bottom: 2rem;
  }

  .error-decoration-top {
    top: 10%;
    left: 10%;
  }

  .error-decoration-bottom {
    bottom: 15%;
    right: 10%;
  }

  .error-suggestions {
    padding: 2.5rem;
  }

  .suggestions-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .suggestions-list li {
    flex: 0 1 auto;
  }
}

@media (min-width: 1440px) {
  .error-code {
    text-shadow: 0 8px 40px rgba(59, 130, 246, 0.2);
  }

  .error-inner {
    gap: 3rem;
  }
}

h1, h2, h3, h4, h5, h6, p, a, li, span {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  .error-section {
    background: var(--color-bg-primary);
  }

  .error-code {
    text-shadow: 0 4px 30px rgba(59, 130, 246, 0.2);
  }
}