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

:root {
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #334155;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #94a3b8;
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #10b981;
  --color-secondary-hover: #059669;
  --color-accent: #f59e0b;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Merriweather', serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

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

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

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

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

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

.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: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.btn i {
  font-size: 1.2em;
}

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

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

label {
  font-weight: 600;
  font-size: 0.95rem;
}

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

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

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

.form-submit-btn {
  align-self: flex-start;
}

.contact-form-submit {
  align-self: flex-start;
}

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

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

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

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

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

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

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

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

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

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

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

.opacity-75 {
  opacity: 0.75;
}

.opacity-50 {
  opacity: 0.5;
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

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

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

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

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

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

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

.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 cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Merriweather:wght@400;700&display=swap');

.header-taal-portal {
  background: var(--color-bg-dark-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: static;
  z-index: 50;
  width: 100%;
}

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

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

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

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

.header-taal-portal-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

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

.header-taal-portal-nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 300ms ease;
  position: relative;
}

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

.header-taal-portal-nav-link:hover {
  color: #ffffff;
}

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

.header-taal-portal-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #0f172a;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 300ms ease;
  cursor: pointer;
  border: none;
}

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

.header-taal-portal-cta-button:active {
  transform: translateY(0);
}

.header-taal-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 1rem;
  flex-shrink: 0;
  transition: opacity 300ms ease;
}

.header-taal-portal-mobile-toggle:hover {
  opacity: 0.7;
}

.header-taal-portal-toggle-line {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: all 300ms ease;
}

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

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

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

.header-taal-portal-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-dark-secondary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 300ms ease;
  z-index: 40;
  padding-top: clamp(4rem, 10vw, 5.5rem);
  overflow-y: auto;
}

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

.header-taal-portal-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.header-taal-portal-mobile-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.header-taal-portal-mobile-close {
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 300ms ease;
}

.header-taal-portal-mobile-close:hover {
  color: #ffffff;
}

.header-taal-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 clamp(1rem, 4vw, 2rem);
  flex: 1;
}

.header-taal-portal-mobile-link {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 300ms ease;
}

.header-taal-portal-mobile-link:hover {
  color: #ffffff;
}

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

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

@media (min-width: 768px) {
  .header-taal-portal-desktop-nav {
    display: flex;
  }

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

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

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

@media (min-width: 1024px) {
  .header-taal-portal-nav-link {
    font-size: 1rem;
  }

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

    .language-hub-index {
  width: 100%;
}

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

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

.hero-gradient-mesh-index {
  position: absolute;
  top: 20%;
  right: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-index {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.hero-corner-orb-index {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 120px;
  height: 120px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-line-index {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.hero-subtitle-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.7;
}

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

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

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

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

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

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

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

.about-shape-left-index {
  position: absolute;
  top: 50%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.about-glow-right-index {
  position: absolute;
  bottom: 10%;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.about-accent-bottom-index {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-float-panel-index {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 150px;
  height: 100px;
  background: rgba(59, 130, 246, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

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

.about-text-block-index {
  flex: 1 1 350px;
}

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

.about-description-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text-index {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-features-list-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-feature-item-index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #334155;
}

.about-feature-item-index i {
  color: #3b82f6;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-feature-text-index {
  font-size: 0.95rem;
  line-height: 1.5;
}

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

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

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

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

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

.method-accent-right-index {
  position: absolute;
  bottom: 15%;
  right: 2%;
  width: 180px;
  height: 180px;
  background: rgba(34, 211, 238, 0.03);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.method-line-bottom-index {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

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

.methodology-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

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

.methodology-step-title-index {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

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

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

.features-shape-top-index {
  position: absolute;
  top: -80px;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 40% 60% 70% 30% / 60% 40% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.features-glow-left-index {
  position: absolute;
  left: -50px;
  top: 50%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.features-accent-right-index {
  position: absolute;
  right: 2%;
  bottom: 10%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.04);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.features-line-accent-index {
  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;
}

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

.features-tag-index {
  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: 500;
  margin-bottom: 1rem;
}

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

.features-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

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

.features-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-card-index:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.features-card-icon-index {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  color: #60a5fa;
  font-size: 1.5rem;
}

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

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

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

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

.featured-shape-index {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.04);
  border-radius: 50% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.featured-corner-element-index {
  position: absolute;
  top: 50%;
  left: -50px;
  width: 120px;
  height: 120px;
  background: rgba(59, 130, 246, 0.03);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.featured-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

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

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

.featured-card-title-index {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

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

.featured-card-link-index {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #3b82f6;
  text-decoration: none;
  transition: color 300ms ease-in-out;
  align-self: flex-start;
}

.featured-card-link-index:hover {
  color: #2563eb;
}

.featured-cta-index {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: clamp(2rem, 3vw, 3rem);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.featured-cta-text-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

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

.testimonial-glow-index {
  position: absolute;
  top: -50px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.testimonial-accent-right-index {
  position: absolute;
  top: 30%;
  right: 2%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.testimonial-quote-index {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.testimonial-text-index {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author-index {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

.testimonial-benefits-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.testimonial-benefit-item-index {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e2e8f0;
}

.testimonial-benefit-item-index i {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-benefit-text-index {
  font-size: 0.9375rem;
  font-weight: 500;
}

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

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

.contact-shape-accent-index {
  position: absolute;
  bottom: 20%;
  left: 2%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 60% 40% 30% 70% / 40% 60% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

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

.contact-float-panel-index {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 140px;
  height: 100px;
  background: rgba(34, 211, 238, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 10px;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
}

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

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

.contact-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-form-wrapper-index {
  flex: 1 1 350px;
}

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

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

.contact-label-index {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
}

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: #1e293b;
  transition: all 300ms ease-in-out;
}

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

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

.contact-submit-index {
  width: 100%;
  padding: 1rem 2rem;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.contact-submit-index:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

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

.contact-info-wrapper-index {
  flex: 1 1 350px;
}

.contact-info-block-index {
  background: #ffffff;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.contact-info-title-index {
  font-size: clamp(1.25rem, 1.5vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.contact-faq-item-index {
  margin-bottom: 1.5rem;
}

.contact-faq-item-index:last-child {
  margin-bottom: 0;
}

.contact-faq-question-index {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-faq-answer-index {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
}

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

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

.cookie-banner-text-index {
  color: #cbd5e1;
  margin: 0;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  max-width: 500px;
  text-align: center;
}

.cookie-banner-link-index {
  color: #60a5fa;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}

.cookie-banner-link-index:hover {
  color: #38bdf8;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  border: none;
  white-space: nowrap;
}

.cookie-btn-accept-index {
  background: #3b82f6;
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

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

.cookie-btn-decline-index:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #e2e8f0;
}

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

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

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

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

  .hero-stats-index {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .testimonial-benefits-index {
    flex-direction: column;
    gap: 1rem;
  }

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

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

@media (max-width: 480px) {
  .hero-cta-group-index {
    flex-direction: column;
  }

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

  .methodology-step-index {
    flex-direction: column;
    gap: 1rem;
  }

  .featured-card-image-index {
    height: 150px;
  }

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

  .cookie-banner-buttons-index {
    order: 2;
    flex-basis: 100%;
    width: 100%;
  }

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

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

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

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

  .footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
    filter: blur(70px);
    z-index: 1;
    pointer-events: none;
  }

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

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

  
  .footer-about {
    display: block;
  }

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

  .footer-about-text {
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.7;
    color: var(--color-text-dark-secondary);
    max-width: 380px;
  }

  
  .footer-navigation {
    display: block;
  }

  .footer-nav-title {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
  }

  .footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.25rem, 3vw, 1.75rem);
  }

  .footer-nav-link {
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    color: var(--color-text-dark-secondary);
    text-decoration: none;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

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

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

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

  
  .footer-contact {
    display: block;
  }

  .footer-contact-title {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
  }

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

  .footer-contact-item {
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    line-height: 1.6;
    color: var(--color-text-dark-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer-contact-label {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

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

  
  .footer-legal {
    display: block;
  }

  .footer-legal-title {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
  }

  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .footer-legal-link {
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    color: var(--color-text-dark-muted);
    text-decoration: none;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
  }

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

  
  .footer-copyright {
    display: block;
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid var(--color-bg-dark-secondary);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

  .footer-copyright-text {
    font-size: clamp(0.8rem, 0.9vw, 0.875rem);
    color: var(--color-text-dark-muted);
    text-align: center;
  }

  
  @media (min-width: 768px) {
    .footer-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2.5rem, 5vw, 4rem);
    }

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

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

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

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

    .footer-copyright {
      grid-column: 1 / -1;
      grid-row: 4 / 5;
    }

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

    .footer-legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

  
  @media (min-width: 1024px) {
    .footer-content {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: clamp(2.5rem, 4vw, 3rem);
    }

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

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

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

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

    .footer-copyright {
      grid-column: 1 / -1;
      grid-row: 2 / 3;
    }

    .footer-nav-links {
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-contact-item {
      gap: 0.375rem;
    }

    .footer-legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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

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

.main.category-page-dutch-language-learning {
  font-family: var(--font-primary);
  color: var(--color-text-light-primary);
}

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

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

.hero-decoration-shape-dutch {
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-accent-dutch {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.hero-title-dutch-learning {
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-dutch-learning {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

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

.stat-label-dutch {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-cta-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

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

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

.posts-header-dutch {
  text-align: center;
  margin-bottom: 3rem;
}

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

.posts-title-dutch-learning {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.card-dutch-learning:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #bfdbfe;
}

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

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

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

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

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

.meta-badge-dutch i {
  font-size: 0.9em;
}

.card-link-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.card-link-dutch:hover {
  color: #2563eb;
  gap: 0.75rem;
}

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

.learning-path-header-dutch {
  text-align: center;
  margin-bottom: 3.5rem;
}

.learning-path-title-dutch {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.learning-steps-dutch {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-item-dutch {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  transition: all 0.3s ease;
}

.step-item-dutch:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.step-number-dutch {
  font-size: 3rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
}

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

.step-title-dutch {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.step-text-dutch {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

.benefits-section-dutch {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.benefits-decoration-left-dutch {
  position: absolute;
  top: 10%;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.benefits-decoration-right-dutch {
  position: absolute;
  bottom: -20%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.benefits-title-dutch {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-intro-dutch {
  font-size: 1.05rem;
  color: #64748b;
}

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

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

.benefit-card-dutch:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon-dutch {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.benefit-card-title-dutch {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.benefit-card-text-dutch {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

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

.cta-title-dutch {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.cta-buttons-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

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

.cta-buttons-dutch .btn-primary:hover {
  background: #2563eb;
}

.cta-buttons-dutch .btn-outline-dark {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-buttons-dutch .btn-outline-dark:hover {
  background: #ffffff;
  color: #0f172a;
}

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

  .hero-cta-dutch .btn {
    width: 100%;
    max-width: 280px;
  }

  .step-item-dutch {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

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

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

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

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

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

@media (min-width: 769px) and (max-width: 1023px) {
  .hero-stats-dutch {
    gap: 1.5rem;
  }

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

  .posts-grid-dutch-learning {
    gap: 1.5rem;
  }

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

  .benefits-grid-dutch {
    gap: 1.5rem;
  }

  .benefit-card-dutch {
    flex: 1 1 220px;
    max-width: 280px;
  }
}

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

.main-nederlands-grammatica-basis {
  width: 100%;
  font-family: var(--font-primary);
  line-height: 1.6;
}

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

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

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

.breadcrumb-link-nederlands-grammatica-basis {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s 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-content-nederlands-grammatica-basis {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-nederlands-grammatica-basis {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-image-wrapper-nederlands-grammatica-basis {
  flex: 1 1 300px;
  max-width: 50%;
}

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

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

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

.meta-badge-nederlands-grammatica-basis {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #93c5fd;
}

.meta-badge-nederlands-grammatica-basis i {
  color: #60a5fa;
}

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

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

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

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

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

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

  .hero-image-wrapper-nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-nederlands-grammatica-basis {
    gap: 1.5rem;
  }
}

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

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

.introduction-text-nederlands-grammatica-basis {
  flex: 1 1 300px;
  max-width: 50%;
}

.introduction-image-wrapper-nederlands-grammatica-basis {
  flex: 1 1 300px;
  max-width: 50%;
}

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

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

.introduction-image-nederlands-grammatica-basis {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

.fundamentals-step-nederlands-grammatica-basis:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

.fundamentals-step-title-nederlands-grammatica-basis {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

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

@media (max-width: 768px) {
  .fundamentals-step-nederlands-grammatica-basis {
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

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

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

.practical-text-nederlands-grammatica-basis {
  flex: 1 1 300px;
  max-width: 50%;
}

.practical-image-wrapper-Nederlands-grammatica-basis {
  flex: 1 1 300px;
  max-width: 50%;
}

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

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

.practical-highlights-nederlands-grammatica-basis {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item-nederlands-grammatica-basis {
  padding: 1rem;
  background: #f1f5f9;
  border-left: 4px solid #3b82f6;
  border-radius: 4px;
}

.highlight-title-nederlands-grammatica-basis {
  color: #1e293b;
  font-size: 0.95rem;
}

.highlight-text-nederlands-grammatica-basis {
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.practical-image-nederlands-grammatica-basis {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .practical-image-wrapper-Nederlands-grammatica-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

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

.features-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: all 0.3s ease;
}

.features-card-nederlands-grammatica-basis:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.features-card-icon-nederlands-grammatica-basis {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 12px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.features-card-title-nederlands-grammatica-basis {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.features-card-text-nederlands-grammatica-basis {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

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

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

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

.deepdive-image-wrapper-nederlands-grammatica-basis {
  flex: 1 1 300px;
  max-width: 50%;
}

.deepdive-text-nederlands-grammatica-basis {
  flex: 1 1 300px;
  max-width: 50%;
}

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

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

.deepdive-image-nederlands-grammatica-basis {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-quote-nederlands-grammatica-basis {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #f1f5f9;
  margin: 2rem 0;
  border-radius: 4px;
}

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

.quote-attribution-nederlands-grammatica-basis {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

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

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

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

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

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

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

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

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

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

.cta-box-nederlands-grammatica-basis .btn {
  background: #ffffff;
  color: #3b82f6;
}

.cta-box-nederlands-grammatica-basis .btn:hover {
  background: #f0f9ff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.disclaimer-content-nederlands-grammatica-basis {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #f8fafc;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-nederlands-grammatica-basis {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-grammatica-basis {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

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

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

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

.related-subtitle-nederlands-grammatica-basis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  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 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.related-card-nederlands-grammatica-basis:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
}

.related-card-image-nederlands-grammatica-basis {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

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

.related-card-title-nederlands-grammatica-basis {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.related-card-text-nederlands-grammatica-basis {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-nederlands-grammatica-basis {
  display: inline-block;
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-nederlands-grammatica-basis:hover {
  color: #93c5fd;
  transform: translateX(4px);
}

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

.main-nederlandse-uitspraak-luisteren {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-section-nederlandse-uitspraak-luisteren {
  background: #0f172a;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

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

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

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

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

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

.hero-meta-badges-nederlandse-uitspraak-luisteren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.meta-badge-nederlandse-uitspraak-luisteren i {
  color: #3b82f6;
  font-size: 1rem;
}

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

.breadcrumbs-nederlandse-uitspraak-luisteren {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-nederlandse-uitspraak-luisteren {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-nederlandse-uitspraak-luisteren:hover {
  color: #93c5fd;
}

.breadcrumb-separator-nederlandse-uitspraak-luisteren {
  color: #64748b;
  margin: 0 0.25rem;
}

.breadcrumb-current-nederlandse-uitspraak-luisteren {
  color: #94a3b8;
}

.intro-section-nederlandse-uitspraak-luisteren {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.intro-text-wrapper-nederlandse-uitspraak-luisteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-wrapper-nederlandse-uitspraak-luisteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-nederlandse-uitspraak-luisteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-text-nederlandse-uitspraak-luisteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.fundamentals-section-nederlandse-uitspraak-luisteren {
  background: #1e293b;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.section-tag-nederlandse-uitspraak-luisteren {
  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: 500;
  margin-bottom: 1rem;
}

.fundamentals-title-nederlandse-uitspraak-luisteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.fundamentals-steps-nederlandse-uitspraak-luisteren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fundamentals-step-nederlandse-uitspraak-luisteren {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

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

.fundamentals-step-content-nederlandse-uitspraak-luisteren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fundamentals-step-title-nederlandse-uitspraak-luisteren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.fundamentals-step-text-nederlandse-uitspraak-luisteren {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.practice-section-nederlandse-uitspraak-luisteren {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.practice-text-block-nederlandse-uitspraak-luisteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-block-nederlandse-uitspraak-luisteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-nederlandse-uitspraak-luisteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.practice-text-nederlandse-uitspraak-luisteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.practice-list-nederlandse-uitspraak-luisteren {
  list-style: none;
  padding: 0;
  margin: 0;
}

.practice-list-item-nederlandse-uitspraak-luisteren {
  padding: 1rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid #3b82f6;
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.practice-list-item-nederlandse-uitspraak-luisteren strong {
  color: #0f172a;
  font-weight: 600;
}

.practice-image-nederlandse-uitspraak-luisteren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.resources-section-nederlandse-uitspraak-luisteren {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.resources-header-nederlandse-uitspraak-luisteren {
  text-align: center;
  margin-bottom: 3rem;
}

.resources-title-nederlandse-uitspraak-luisteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.resources-subtitle-nederlandse-uitspraak-luisteren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.resources-cards-nederlandse-uitspraak-luisteren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.resources-card-nederlandse-uitspraak-luisteren {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resources-card-nederlandse-uitspraak-luisteren:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.resources-card-icon-nederlandse-uitspraak-luisteren {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 12px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.resources-card-title-nederlandse-uitspraak-luisteren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.resources-card-text-nederlandse-uitspraak-luisteren {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.advanced-section-nederlandse-uitspraak-luisteren {
  background: #0f172a;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

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

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

.advanced-title-nederlandse-uitspraak-luisteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.advanced-text-nederlandse-uitspraak-luisteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.advanced-image-nederlandse-uitspraak-luisteren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

.quote-author-nederlandse-uitspraak-luisteren {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
}

.tracking-section-nederlandse-uitspraak-luisteren {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.tracking-header-nederlandse-uitspraak-luisteren {
  text-align: center;
  margin-bottom: 3rem;
}

.tracking-title-nederlandse-uitspraak-luisteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tracking-subtitle-nederlandse-uitspraak-luisteren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.tracking-text-block-nederlandse-uitspraak-luisteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.tracking-image-block-nederlandse-uitspraak-luisteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.tracking-text-nederlandse-uitspraak-luisteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tracking-list-nederlandse-uitspraak-luisteren {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tracking-list-item-nederlandse-uitspraak-luisteren {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid #3b82f6;
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.tracking-image-nederlandse-uitspraak-luisteren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.conclusion-section-nederlandse-uitspraak-luisteren {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.conclusion-content-nederlandse-uitspraak-luisteren {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-nederlandse-uitspraak-luisteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

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

.cta-box-nederlandse-uitspraak-luisteren {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 3rem;
}

.cta-title-nederlandse-uitspraak-luisteren {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text-nederlandse-uitspraak-luisteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.cta-box-nederlandse-uitspraak-luisteren .btn {
  background: #ffffff;
  color: #3b82f6;
  font-weight: 600;
  margin-top: 1rem;
}

.cta-box-nederlandse-uitspraak-luisteren .btn:hover {
  background: #f1f5f9;
}

.disclaimer-section-nederlandse-uitspraak-luisteren {
  background: #1e293b;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.disclaimer-content-nederlandse-uitspraak-luisteren {
  max-width: 900px;
  margin: 0 auto;
}

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

.disclaimer-text-nederlandse-uitspraak-luisteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.related-section-nederlandse-uitspraak-luisteren {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.related-title-nederlandse-uitspraak-luisteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-nederlandse-uitspraak-luisteren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-nederlandse-uitspraak-luisteren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.related-card-nederlandse-uitspraak-luisteren {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.related-card-nederlandse-uitspraak-luisteren:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.12);
}

.related-card-title-nederlandse-uitspraak-luisteren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.related-card-text-nederlandse-uitspraak-luisteren {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-nederlandse-uitspraak-luisteren {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.related-card-link-nederlandse-uitspraak-luisteren:hover {
  color: #2563eb;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-nederlandse-uitspraak-luisteren,
  .intro-content-nederlandse-uitspraak-luisteren,
  .practice-content-wrapper-nederlandse-uitspraak-luisteren,
  .advanced-content-wrapper-nederlandse-uitspraak-luisteren,
  .tracking-content-wrapper-nederlandse-uitspraak-luisteren {
    flex-direction: column;
  }

  .hero-text-wrapper-nederlandse-uitspraak-luisteren,
  .hero-image-wrapper-nederlandse-uitspraak-luisteren,
  .intro-text-wrapper-nederlandse-uitspraak-luisteren,
  .intro-image-wrapper-nederlandse-uitspraak-luisteren,
  .practice-text-block-nederlandse-uitspraak-luisteren,
  .practice-image-block-nederlandse-uitspraak-luisteren,
  .advanced-image-block-nederlandse-uitspraak-luisteren,
  .advanced-text-block-nederlandse-uitspraak-luisteren,
  .tracking-text-block-nederlandse-uitspraak-luisteren,
  .tracking-image-block-nederlandse-uitspraak-luisteren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .resources-card-nederlandse-uitspraak-luisteren,
  .related-card-nederlandse-uitspraak-luisteren {
    flex: 1 1 100%;
    max-width: none;
  }

  .fundamentals-step-nederlandse-uitspraak-luisteren {
    flex-direction: column;
    text-align: center;
  }

  .fundamentals-step-number-nederlandse-uitspraak-luisteren {
    min-width: auto;
  }
}

@media (min-width: 768px) {
  .hero-section-nederlandse-uitspraak-luisteren,
  .intro-section-nederlandse-uitspraak-luisteren,
  .practice-section-nederlandse-uitspraak-luisteren,
  .fundamentals-section-nederlandse-uitspraak-luisteren,
  .advanced-section-nederlandse-uitspraak-luisteren,
  .tracking-section-nederlandse-uitspraak-luisteren,
  .conclusion-section-nederlandse-uitspraak-luisteren,
  .resources-section-nederlandse-uitspraak-luisteren,
  .disclaimer-section-nederlandse-uitspraak-luisteren,
  .related-section-nederlandse-uitspraak-luisteren {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

.main-nederlandse-schrijfvaardigheid {
  width: 100%;
  background: #ffffff;
}

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

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

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

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

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

.breadcrumb-separator-nederlandse-schrijfvaardigheid {
  color: #475569;
  margin: 0 0.25rem;
}

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

.hero-content-nederlandse-schrijfvaardigheid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.article-meta-nederlandse-schrijfvaardigheid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.meta-badge-nederlandse-schrijfvaardigheid i {
  color: #3b82f6;
  font-size: 1rem;
}

.hero-image-nederlandse-schrijfvaardigheid {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-top: 1.5rem;
}

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

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

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

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

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

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

.introduction-image-nederlandse-schrijfvaardigheid {
  flex: 1 1 50%;
  max-width: 50%;
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

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

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

.section-header-nederlandse-schrijfvaardigheid {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

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

.structure-text-nederlandse-schrijfvaardigheid {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-subheading-nederlandse-schrijfvaardigheid {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  color: #1e293b;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

.structure-subheading-nederlandse-schrijfvaardigheid:first-child {
  margin-top: 0;
}

.structure-paragraph-nederlandse-schrijfvaardigheid {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.structure-image-nederlandse-schrijfvaardigheid {
  flex: 1 1 50%;
  max-width: 50%;
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .structure-text-nederlandse-schrijfvaardigheid,
  .structure-image-nederlandse-schrijfvaardigheid {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.techniques-section-nederlandse-schrijfvaardigheid .section-header-nederlandse-schrijfvaardigheid {
  color: #ffffff;
}

.techniques-section-nederlandse-schrijfvaardigheid .section-tag-nederlandse-schrijfvaardigheid {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.techniques-section-nederlandse-schrijfvaardigheid .section-title-nederlandse-schrijfvaardigheid {
  color: #ffffff;
}

.techniques-section-nederlandse-schrijfvaardigheid .section-subtitle-nederlandse-schrijfvaardigheid {
  color: #cbd5e1;
}

.techniques-steps-nederlandse-schrijfvaardigheid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.techniques-step-nederlandse-schrijfvaardigheid {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  align-items: flex-start;
}

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

.techniques-step-content-nederlandse-schrijfvaardigheid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.techniques-step-text-nederlandse-schrijfvaardigheid {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.techniques-image-nederlandse-schrijfvaardigheid {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-top: 2rem;
}

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

  .techniques-step-number-nederlandse-schrijfvaardigheid {
    min-width: auto;
  }
}

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

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

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

.clarity-image-nederlandse-schrijfvaardigheid {
  flex: 1 1 50%;
  max-width: 50%;
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.clarity-text-nederlandse-schrijfvaardigheid {
  flex: 1 1 50%;
  max-width: 50%;
}

.clarity-heading-nederlandse-schrijfvaardigheid {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.clarity-paragraph-nederlandse-schrijfvaardigheid {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

  .clarity-image-nederlandse-schrijfvaardigheid,
  .clarity-text-nederlandse-schrijfvaardigheid {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.audience-card-nederlandse-schrijfvaardigheid {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card-nederlandse-schrijfvaardigheid:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.audience-card-icon-nederlandse-schrijfvaardigheid {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 10px;
  font-size: 1.5rem;
}

.audience-card-title-nederlandse-schrijfvaardigheid {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
}

.audience-card-text-nederlandse-schrijfvaardigheid {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

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

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

.common-text-nederlandse-schrijfvaardigheid {
  flex: 1 1 50%;
  max-width: 50%;
}

.common-heading-nederlandse-schrijfvaardigheid {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.featured-quote-nederlandse-schrijfvaardigheid {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #f0f9ff;
  margin: 2rem 0;
  font-style: italic;
  border-radius: 4px;
}

.quote-text-nederlandse-schrijfvaardigheid {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-nederlandse-schrijfvaardigheid {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

.common-paragraph-nederlandse-schrijfvaardigheid {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.common-image-nederlandse-schrijfvaardigheid {
  flex: 1 1 50%;
  max-width: 50%;
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .common-text-nederlandse-schrijfvaardigheid,
  .common-image-nederlandse-schrijfvaardigheid {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.practical-section-nederlandse-schrijfvaardigheid .section-header-nederlandse-schrijfvaardigheid {
  color: #ffffff;
}

.practical-section-nederlandse-schrijfvaardigheid .section-tag-nederlandse-schrijfvaardigheid {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.practical-section-nederlandse-schrijfvaardigheid .section-title-nederlandse-schrijfvaardigheid {
  color: #ffffff;
}

.practical-steps-nederlandse-schrijfvaardigheid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practical-step-nederlandse-schrijfvaardigheid {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  align-items: flex-start;
}

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

.practical-step-content-nederlandse-schrijfvaardigheid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.practical-step-text-nederlandse-schrijfvaardigheid {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

  .practical-step-number-nederlandse-schrijfvaardigheid {
    min-width: auto;
  }
}

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

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

.conclusion-content-nederlandse-schrijfvaardigheid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-heading-nederlandse-schrijfvaardigheid {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
}

.conclusion-paragraph-nederlandse-schrijfvaardigheid {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.cta-box-nederlandse-schrijfvaardigheid {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-box-title-nederlandse-schrijfvaardigheid {
  font-size: clamp(1.375rem, 3vw + 0.5rem, 1.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-box-text-nederlandse-schrijfvaardigheid {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #dbeafe;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-box-nederlandse-schrijfvaardigheid .btn {
  background: #ffffff;
  color: #3b82f6;
  font-weight: 600;
}

.cta-box-nederlandse-schrijfvaardigheid .btn:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
}

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

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

.disclaimer-content-nederlandse-schrijfvaardigheid {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-nederlandse-schrijfvaardigheid {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #92400e;
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-nederlandse-schrijfvaardigheid {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: #78350f;
  line-height: 1.7;
}

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

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

.related-title-nederlandse-schrijfvaardigheid {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
}

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

.related-cards-nederlandse-schrijfvaardigheid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2rem;
}

.related-card-nederlandse-schrijfvaardigheid {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.related-card-title-nederlandse-schrijfvaardigheid {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

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

.related-card-link-nederlandse-schrijfvaardigheid {
  display: inline-block;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-nederlandse-schrijfvaardigheid:hover {
  color: #2563eb;
}

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

@media (min-width: 768px) {
  .section-header-nederlandse-schrijfvaardigheid {
    text-align: center;
  }
}

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

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

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

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

.breadcrumb-link-nederlands-zakelijke-conversatie {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.breadcrumb-link-nederlands-zakelijke-conversatie:hover {
  color: #3b82f6;
}

.breadcrumb-separator-nederlands-zakelijke-conversatie {
  color: #cbd5e1;
}

.breadcrumb-current-nederlands-zakelijke-conversatie {
  color: #64748b;
  font-weight: 500;
}

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

.hero-text-wrapper-nederlands-zakelijke-conversatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.article-meta-nederlands-zakelijke-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-nederlands-zakelijke-conversatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-nederlands-zakelijke-conversatie i {
  font-size: 0.9em;
}

.hero-stats-nederlands-zakelijke-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 1.5rem;
}

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

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

.stat-label-nederlands-zakelijke-conversatie {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  font-weight: 500;
}

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

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

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

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

  .hero-stats-nederlands-zakelijke-conversatie {
    gap: 2rem;
  }
}

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

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

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

.introduction-text-nederlands-zakelijke-conversatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.introduction-description-nederlands-zakelijke-conversatie {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #1e293b;
  line-height: 1.7;
  font-weight: 500;
}

.introduction-text-nederlands-zakelijke-conversatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
}

.introduction-image-wrapper-nederlands-zakelijke-conversatie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.introduction-image-nederlands-zakelijke-conversatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

  .introduction-text-nederlands-zakelijke-conversatie,
  .introduction-image-wrapper-nederlands-zakelijke-conversatie {
    flex: 1 1 100%;
  }
}

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

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

.process-header-nederlands-zakelijke-conversatie {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.process-tag-nederlands-zakelijke-conversatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.process-subtitle-nederlands-zakelijke-conversatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.process-step-nederlands-zakelijke-conversatie {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

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

.process-step-title-Nederlands-zakelijke-conversatie {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.process-step-text-nederlands-zakelijke-conversatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: #475569;
}

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

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

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

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

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

.techniques-text-nederlands-zakelijke-conversatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.techniques-title-nederlands-zakelijke-conversatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.techniques-description-nederlands-zakelijke-conversatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.techniques-list-nederlands-zakelijke-conversatie {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.technique-item-nederlands-zakelijke-conversatie {
  padding-left: 1.5rem;
  border-left: 3px solid #3b82f6;
}

.technique-name-nederlands-zakelijke-conversatie {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.technique-explanation-nederlands-zakelijke-conversatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.techniques-image-wrapper-nederlands-zakelijke-conversatie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.techniques-image-nederlands-zakelijke-conversatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

  .techniques-text-nederlands-zakelijke-conversatie,
  .techniques-image-wrapper-nederlands-zakelijke-conversatie {
    flex: 1 1 100%;
  }
}

.featured-quote-nederlands-zakelijke-conversatie {
  background: #0f172a;
  color: #ffffff;
  padding: clamp(2rem, 5vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  margin: clamp(2rem, 5vw, 4rem) 0;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

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

.quote-author-nederlands-zakelijke-conversatie {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

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

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

.scenarios-header-nederlands-zakelijke-conversatie {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.scenarios-tag-nederlands-zakelijke-conversatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.scenarios-subtitle-nederlands-zakelijke-conversatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.scenarios-wrapper-nederlands-zakelijke-conversatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.scenarios-wrapper-nederlands-zakelijke-conversatie:nth-child(even) {
  flex-direction: row-reverse;
}

.scenario-left-nederlands-zakelijke-conversatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.scenario-right-nederlands-zakelijke-conversatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.scenario-heading-nederlands-zakelijke-conversatie {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.scenario-text-nederlands-zakelijke-conversatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
}

.scenario-image-wrapper-nederlands-zakelijke-conversatie,
.scenario-image-wrapper-netherlands-zakelijke-conversatie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scenario-image-nederlands-zakelijke-conversatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .scenarios-wrapper-nederlands-zakelijke-conversatie {
    flex-direction: column;
  }

  .scenarios-wrapper-nederlands-zakelijke-conversatie:nth-child(even) {
    flex-direction: column;
  }

  .scenario-left-nederlands-zakelijke-conversatie,
  .scenario-right-nederlands-zakelijke-conversatie,
  .scenario-image-wrapper-nederlands-zakelijke-conversatie,
  .scenario-image-wrapper-netherlands-zakelijke-conversatie {
    flex: 1 1 100%;
  }
}

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

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

.challenges-header-nederlands-zakelijke-conversatie {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.challenges-title-nederlands-zakelijke-conversatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

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

.challenges-card-nederlands-zakelijke-conversatie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenges-card-nederlands-zakelijke-conversatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.challenges-card-icon-nederlands-zakelijke-conversatie {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 10px;
  font-size: 1.5rem;
}

.challenges-card-title-nederlands-zakelijke-conversatie {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  font-weight: 600;
  color: #0f172a;
}

.challenges-card-text-nederlands-zakelijke-conversatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .challenges-card-nederlands-zakelijke-conversatie {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.tips-header-nederlands-zakelijke-conversatie {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.tips-title-nederlands-zakelijke-conversatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.tips-wrapper-nederlands-zakelijke-conversatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.tips-image-wrapper-nederlands-zakelijke-conversatie {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tips-image-nederlands-zakelijke-conversatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.tips-list-wrapper-nederlands-zakelijke-conversatie {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
}

.tips-list-nederlands-zakelijke-conversatie {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.tip-item-nederlands-zakelijke-conversatie {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.tip-number-nederlands-zakelijke-conversatie {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.tip-content-nederlands-zakelijke-conversatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tip-title-nederlands-zakelijke-conversatie {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
}

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

@media (max-width: 768px) {
  .tips-wrapper-nederlands-zakelijke-conversatie {
    flex-direction: column;
  }

  .tips-image-wrapper-nederlands-zakelijke-conversatie,
  .tips-list-wrapper-nederlands-zakelijke-conversatie {
    flex: 1 1 100%;
  }
}

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

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

.conclusion-content-nederlands-zakelijke-conversatie {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.conclusion-text-nederlands-zakelijke-conversatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  text-align: left;
}

.conclusion-cta-nederlands-zakelijke-conversatie {
  text-align: center;
  margin-top: 1rem;
}

.conclusion-cta-nederlands-zakelijke-conversatie .btn {
  margin: 0;
}

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

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

.related-header-nederlands-zakelijke-conversatie {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

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

.related-subtitle-nederlands-zakelijke-conversatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  line-height: 1.6;
}

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

.related-card-nederlands-zakelijke-conversatie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.related-card-title-nederlands-zakelijke-conversatie {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-description-nederlands-zakelijke-conversatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-nederlands-zakelijke-conversatie {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
}

.related-card-link-nederlands-zakelijke-conversatie:hover {
  color: #2563eb;
}

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

.disclaimer-section-nederlands-zakelijke-conversatie {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  margin-top: clamp(2rem, 5vw, 4rem);
}

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

.disclaimer-content-nederlands-zakelijke-conversatie {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

@media (min-width: 768px) {
  .process-step-title-Nederlands-zakelijke-conversatie {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .process-step-title-Nederlands-zakelijke-conversatie {
    font-size: 1.25rem;
  }
}

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

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

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

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

.hero-text-block-nederlands-woordenschat-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

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

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

.breadcrumbs-nederlands-woordenschat-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb-link-nederlands-woordenschat-opbouwen {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlands-woordenschat-opbouwen:hover {
  color: #3b82f6;
}

.breadcrumb-separator-nederlands-woordenschat-opbouwen {
  color: #64748b;
}

.breadcrumb-current-nederlands-woordenschat-opbouwen {
  color: #3b82f6;
  font-weight: 600;
}

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

.meta-badge-nederlands-woordenschat-opbouwen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.meta-badge-nederlands-woordenschat-opbouwen i {
  color: #3b82f6;
  font-size: 1rem;
}

.hero-stats-nederlands-woordenschat-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
}

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

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

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

.hero-image-block-nederlands-woordenschat-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-image-nederlands-woordenschat-opbouwen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-content-nederlands-woordenschat-opbouwen {
    flex-direction: column;
  }
  
  .hero-text-block-nederlands-woordenschat-opbouwen,
  .hero-image-block-nederlands-woordenschat-opbouwen {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .hero-stats-nederlands-woordenschat-opbouwen {
    gap: 1.5rem;
  }
}

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

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

.intro-text-block-nederlands-woordenschat-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.intro-title-nederlands-woordenschat-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.intro-text-secundair-nederlands-woordenschat-opbouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.intro-image-block-nederlands-woordenschat-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.intro-image-nederlands-woordenschat-opbouwen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .intro-wrapper-nederlands-woordenschat-opbouwen {
    flex-direction: column;
  }
  
  .intro-text-block-nederlands-woordenschat-opbouwen,
  .intro-image-block-nederlands-woordenschat-opbouwen {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

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

.method-title-nederlands-woordenschat-opbouwen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.method-subtitle-nederlands-woordenschat-opbouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.methods-grid-nederlands-woordenschat-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.method-card-nederlands-woordenschat-opbouwen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card-nederlands-woordenschat-opbouwen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.method-card-icon-nederlands-woordenschat-opbouwen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 10px;
  font-size: 1.5rem;
}

.method-card-title-nederlands-woordenschat-opbouwen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.method-card-text-nederlands-woordenschat-opbouwen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

.progression-wrapper-nederlands-woordenschat-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.progression-text-block-nederlands-woordenschat-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.progression-title-nederlands-woordenschat-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.progression-description-nederlands-woordenschat-opbouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.progression-steps-nederlands-woordenschat-opbouwen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-nederlands-woordenschat-opbouwen {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #3b82f6;
}

.step-level-nederlands-woordenschat-opbouwen {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3b82f6;
  min-width: 80px;
  line-height: 1;
}

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

.step-title-nederlands-woordenschat-opbouwen {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
}

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

.progression-image-block-nederlands-woordenschat-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.progression-image-nederlands-woordenschat-opbouwen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .progression-wrapper-nederlands-woordenschat-opbouwen {
    flex-direction: column;
  }
  
  .progression-text-block-nederlands-woordenschat-opbouwen,
  .progression-image-block-nederlands-woordenschat-opbouwen {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.practical-header-nederlands-woordenschat-opbouwen {
  text-align: center;
  margin-bottom: 3rem;
}

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

.practical-title-nederlands-woordenschat-opbouwen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
}

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

.practical-text-block-nederlands-woordenschat-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.practical-intro-nederlands-woordenschat-opbouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.practical-example-nederlands-woordenschat-opbouwen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.example-item-nederlands-woordenschat-opbouwen {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.example-title-nederlands-woordenschat-opbouwen {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.example-text-nederlands-woordenschat-opbouwen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

.example-text-nederlands-woordenschat-opbouwen strong {
  color: #0f172a;
  font-weight: 600;
}

.practical-image-block-nederlands-woordenschat-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.practical-image-nederlands-woordenschat-opbouwen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .practical-wrapper-nederlands-woordenschat-opbouwen {
    flex-direction: column;
  }
  
  .practical-text-block-nederlands-woordenschat-opbouwen,
  .practical-image-block-nederlands-woordenschat-opbouwen {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.resources-header-nederlands-woordenschat-opbouwen {
  text-align: center;
  margin-bottom: 3rem;
}

.resources-title-nederlands-woordenschat-opbouwen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.resources-subtitle-nederlands-woordenschat-opbouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.resources-text-block-nederlands-woordenschat-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.resources-intro-nederlands-woordenschat-opbouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.resources-categories-nederlands-woordenschat-opbouwen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.resource-category-nederlands-woordenschat-opbouwen {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.category-title-nederlands-woordenschat-opbouwen {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

.category-list-nederlands-woordenschat-opbouwen li {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.category-list-nederlands-woordenschat-opbouwen li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 600;
}

.resources-image-block-nederlands-woordenschat-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.resources-image-nederlands-woordenschat-opbouwen {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .resources-wrapper-nederlands-woordenschat-opbouwen {
    flex-direction: column;
  }
  
  .resources-text-block-nederlands-woordenschat-opbouwen,
  .resources-image-block-nederlands-woordenschat-opbouwen {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.cta-box-nederlands-woordenschat-opbouwen {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
}

.cta-title-nederlands-woordenschat-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-text-nederlands-woordenschat-opbouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.cta-button-nederlands-woordenschat-opbouwen:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

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

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

.disclaimer-title-nederlands-woordenschat-opbouwen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-woordenschat-opbouwen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

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

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

.related-title-nederlands-woordenschat-opbouwen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.related-cards-nederlands-woordenschat-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-nederlands-woordenschat-opbouwen {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.related-card-image-nederlands-woordenschat-opbouwen {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-nederlands-woordenschat-opbouwen {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-nederlands-woordenschat-opbouwen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.related-card-link-nederlands-woordenschat-opbouwen:hover {
  gap: 0.75rem;
}

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

@media (min-width: 768px) {
  .method-section-nederlands-woordenschat-opbouwen {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .progression-section-nederlands-woordenschat-opbouwen {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .practical-section-nederlands-woordenschat-opbouwen {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .resources-section-nederlands-woordenschat-opbouwen {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .cta-section-nederlands-woordenschat-opbouwen {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-nederlands-woordenschat-opbouwen {
    padding: 6rem 0;
  }
  
  .intro-section-nederlands-woordenschat-opbouwen {
    padding: 6rem 0;
  }
  
  .method-section-nederlands-woordenschat-opbouwen {
    padding: 7rem 0;
  }
  
  .progression-section-nederlands-woordenschat-opbouwen {
    padding: 7rem 0;
  }
  
  .practical-section-nederlands-woordenschat-opbouwen {
    padding: 7rem 0;
  }
  
  .resources-section-nederlands-woordenschat-opbouwen {
    padding: 7rem 0;
  }
  
  .cta-section-nederlands-woordenschat-opbouwen {
    padding: 6rem 0;
  }
  
  .disclaimer-section-nederlands-woordenschat-opbouwen {
    padding: 5rem 0;
  }
  
  .related-section-nederlands-woordenschat-opbouwen {
    padding: 7rem 0;
  }
}

:root {
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #334155;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #94a3b8;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #10b981;
  --color-secondary-hover: #059669;
  --color-accent: #f59e0b;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Merriweather', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
}

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

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

.dutch-learning-about {
  width: 100%;
}

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

section {
  width: 100%;
}

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

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

.foundation-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.foundation-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
}

.foundation-description-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  max-width: 750px;
}

.foundation-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0 0;
}

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

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

.methodology-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.methodology-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.methodology-subtitle-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 650px;
  margin: 0 auto;
}

.methodology-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  margin-top: clamp(2rem, 3vw, 3rem);
}

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

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

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

.methodology-step-title-about {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.methodology-step-text-about {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.6;
  color: var(--color-text-light-secondary);
}

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

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

.expertise-intro-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expertise-intro-text-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  max-width: 800px;
}

.expertise-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.expertise-card-about:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
}

.expertise-card-icon-about {
  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: var(--color-primary);
  font-size: 1.5rem;
}

.expertise-card-title-about {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.expertise-card-text-about {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
  color: var(--color-text-dark-secondary);
}

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

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

.commitment-text-block-about {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.commitment-heading-about {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
}

.commitment-paragraph-about {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.commitment-highlights-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.commitment-highlight-about {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-icon-about {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.875rem;
}

.highlight-text-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.commitment-image-about {
  flex: 1 1 380px;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.impact-quote-section-about {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.impact-quote-content-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.featured-quote-about {
  padding: clamp(2rem, 3vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: transparent;
  max-width: 800px;
}

.quote-text-about {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-style: italic;
  color: var(--color-text-dark-primary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quote-author-about {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: var(--color-text-dark-secondary);
  font-style: normal;
}

.disclaimer-section-about {
  background: var(--color-bg-light-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.disclaimer-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-top: 0.5rem;
}

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

  .commitment-text-block-about,
  .commitment-image-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .methodology-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .methodology-step-number-about {
    text-align: center;
  }

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

@media (max-width: 1024px) {
  .expertise-card-about {
    flex: 1 1 45%;
  }
}

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

.learning-docs {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-light-primary);
  color: var(--color-text-light-primary);
}

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

.privacy-hero-section .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.privacy-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.privacy-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.privacy-content-section {
  width: 100%;
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.privacy-content-section .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

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

.privacy-section-block {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.privacy-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-light-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding-left: clamp(1.5rem, 3vw, 2rem);
}

.privacy-section-list li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section-list li::marker {
  color: var(--color-primary);
}

.privacy-contact-section {
  width: 100%;
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.privacy-contact-section .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.privacy-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.privacy-contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-light-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
}

.privacy-contact-details {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.privacy-contact-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
}

.privacy-contact-item strong {
  font-weight: 600;
  color: var(--color-text-light-primary);
}

@media (min-width: 768px) {
  .privacy-hero-section {
    padding: 5rem 0;
  }

  .privacy-content-section {
    padding: 5rem 0;
  }

  .privacy-contact-section {
    padding: 5rem 0;
  }
}

@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: 3rem;
  }
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.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);
  padding: clamp(1.5rem, 5vw, 3rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4rem, 12vw, 6rem);
  height: clamp(4rem, 12vw, 6rem);
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.thank-icon i {
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--color-secondary);
}

.thank-section h1 {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-subtitle {
  color: var(--color-secondary);
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.thank-message {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  margin-top: clamp(0.5rem, 2vw, 1.5rem);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 8rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
    padding: clamp(2rem, 6vw, 4rem);
  }

  .thank-icon {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }

  .thank-section h1 {
    font-size: clamp(2.25rem, 5vw + 1rem, 3.5rem);
  }

  .thank-subtitle {
    font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  }

  .thank-message {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  }

  .thank-next-steps {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: 2.5rem;
    padding: 3rem;
  }

  .thank-icon {
    margin-bottom: 1.5rem;
  }

  .thank-section h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 3.5rem);
  }

  .thank-subtitle {
    font-size: 1.25rem;
  }

  .thank-message {
    font-size: 1.125rem;
  }

  .thank-next-steps {
    font-size: 1.125rem;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3rem;
    padding: 4rem;
  }

  .thank-icon {
    margin-bottom: 2rem;
  }

  .thank-section h1 {
    font-size: 3.5rem;
  }

  .thank-subtitle {
    font-size: 1.5rem;
  }

  .thank-message,
  .thank-next-steps {
    font-size: 1.125rem;
  }
}

html {
  scroll-behavior: smooth;
}

.thank-icon {
  user-select: none;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  background: var(--color-bg-dark-primary);
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-lg) 0;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.error-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.error-code {
  font-size: clamp(3rem, 12vw + 1rem, 6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
  margin: 0;
  text-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.error-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3rem, 8vw, 5rem);
  height: clamp(3rem, 8vw, 5rem);
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid var(--color-primary);
  animation: pulse-border 2s ease-in-out infinite;
}

.error-icon i {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-primary);
}

.error-title {
  font-size: clamp(1.5rem, 5vw + 0.5rem, 2.75rem);
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtitle {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.error-suggestions {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  max-width: 600px;
}

.suggestions-label {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-dark-primary);
  font-weight: 600;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.suggestions-list li {
  font-size: clamp(0.8125rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list i {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  flex-shrink: 0;
}

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

@keyframes pulse-border {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
  }
}

@media (min-width: 768px) {
  .error-visual {
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
  }

  .error-code {
    text-shadow: 0 6px 25px rgba(59, 130, 246, 0.35);
  }

  .error-suggestions {
    margin-top: clamp(2.5rem, 6vw, 4rem);
    padding: clamp(2rem, 5vw, 3rem);
  }

  .suggestions-list {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-xl) 0;
  }

  .error-content {
    gap: clamp(2rem, 5vw, 4rem);
  }

  .error-visual {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .btn-primary {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
  }

  .btn-primary:hover {
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.45);
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: var(--space-2xl) 0;
  }
}