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

:root {
  
  
  
  --color-bg-hero: #0a0f1e;
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-accent-dark: #1e293b;
  --color-bg-card-light: #ffffff;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  
  
  --color-text-light: #ffffff;
  --color-text-dark: #0f172a;
  --color-text-secondary-dark: #94a3b8;
  --color-text-secondary-light: #64748b;
  --color-text-muted-light: #9ca3af;
  
  
  --color-primary: #ff6b35;
  --color-primary-hover: #e55a28;
  --color-primary-light: #ffe5d5;
  
  
  --color-secondary: #004e89;
  --color-secondary-hover: #003d6b;
  --color-secondary-light: #d4e4f7;
  
  
  --color-tertiary: #2d6a4f;
  --color-tertiary-light: #d8f3dc;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'DM Serif Display', serif;
  
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.5rem;
  
  
  --line-tight: 1.2;
  --line-normal: 1.5;
  --line-relaxed: 1.75;
  
  
  --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;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--line-normal);
  color: var(--color-text-dark);
  background: var(--color-bg-primary);
  overflow-x: hidden;
}

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

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

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

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
  font-weight: 600;
}

p {
  line-height: var(--line-relaxed);
}

small {
  font-size: var(--text-sm);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-base);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  font-family: var(--font-primary);
  white-space: nowrap;
}

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

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

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

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

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

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

.btn-small {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

.btn-large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
}

.card {
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  overflow: hidden;
}

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

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

.card-dark {
  background: var(--color-bg-accent-dark);
  color: var(--color-text-light);
  box-shadow: var(--shadow-md);
}

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.badge-secondary {
  background: var(--color-secondary-light);
  color: var(--color-secondary);
}

.badge-tertiary {
  background: var(--color-tertiary-light);
  color: var(--color-tertiary);
}

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

.section-sm {
  padding: var(--space-2xl) 0;
}

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

.section-light {
  background: var(--color-bg-primary);
  color: var(--color-text-dark);
}

.section-light-alt {
  background: var(--color-bg-secondary);
  color: var(--color-text-dark);
}

.section-dark {
  background: var(--color-bg-hero);
  color: var(--color-text-light);
}

.section-dark-alt {
  background: var(--color-bg-accent-dark);
  color: var(--color-text-light);
}

.section-accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.px-sm {
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.px-md {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.px-lg {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.py-sm {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.py-md {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.py-lg {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

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

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

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

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

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

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.text-medium {
  font-weight: 500;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

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

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

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

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

  .btn {
    width: 100%;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-base) ease-in;
}

.animate-slide-up {
  animation: slideUp var(--transition-base) ease-out;
}

.animate-slide-down {
  animation: slideDown var(--transition-base) ease-out;
}

.animate-slide-left {
  animation: slideLeft var(--transition-base) ease-out;
}

.animate-slide-right {
  animation: slideRight var(--transition-base) ease-out;
}

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

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

.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 print {
  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }

  .no-print {
    display: none;
  }
}
.vocab-hub {
  width: 100%;
  overflow: hidden;
}

.vocab-hub h1,
.vocab-hub h2,
.vocab-hub h3,
.vocab-hub h4,
.vocab-hub h5,
.vocab-hub h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.vocab-hub p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.hero-text-index {
  flex: 1 1 100%;
  max-width: 600px;
}

@media (min-width: 768px) {
  .hero-text-index {
    flex: 1 1 45%;
  }
}

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.75;
}

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

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

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

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

.stat-item-index {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #ff6b35;
  line-height: 1;
}

.stat-label-index {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.hero-image-index {
  flex: 1 1 100%;
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .hero-image-index {
    flex: 1 1 45%;
    min-height: 400px;
    max-height: 500px;
  }
}

.hero-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.testimonials-header-index {
  text-align: center;
}

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1.125rem;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonials-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.testimonials-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

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

.testimonial-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.testimonial-quote-index {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1.125rem);
  color: #334155;
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}

.quote-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-style: normal;
}

.author-name-index {
  color: #0f172a;
  font-weight: 600;
  font-size: 0.95rem;
}

.author-detail-index {
  color: #94a3b8;
  font-size: 0.85rem;
}

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

.features-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.features-header-index {
  text-align: center;
}

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

.features-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

.features-steps-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.step-item-index {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-number-index {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #ff6b35;
  line-height: 1;
  flex-shrink: 0;
  width: auto;
}

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

.step-title-index {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  color: #0f172a;
  font-weight: 700;
  margin: 0;
}

.step-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

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

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

.benefits-header-index {
  text-align: center;
}

.benefits-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.benefits-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

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

.benefit-item-index {
  flex: 1 1 250px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.benefit-item-index:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.benefit-icon-index {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  font-size: 1.5rem;
}

.benefit-text-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-title-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #0f172a;
  font-weight: 700;
  margin: 0;
}

.benefit-desc-index {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

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

.about-text-index {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .about-text-index {
    flex: 1 1 45%;
    max-width: 100%;
  }
}

.about-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.about-intro-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #475569;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.75;
}

.about-body-index {
  font-size: clamp(0.9rem, 1.3vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.about-cta-index {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.about-image-index {
  flex: 1 1 100%;
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .about-image-index {
    flex: 1 1 45%;
    min-height: 350px;
    max-height: 450px;
  }
}

.about-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.featured-header-index {
  text-align: center;
}

.featured-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

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

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

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

.featured-card-index:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.card-image-index {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

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

.card-title-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.card-desc-index {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.card-link-index {
  color: #ff6b35;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: auto;
}

.card-link-index:hover {
  color: #e55a28;
}

.featured-footer-index {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

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

.faq-header-index {
  text-align: center;
}

.faq-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.faq-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

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

.faq-item-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #ff6b35;
}

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

.faq-answer-index {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

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

.cta-content-index {
  display: flex;
  justify-content: center;
}

.cta-box-index {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a28 100%);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  max-width: 600px;
  width: 100%;
}

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

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.btn-large-index {
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
}

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

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

.cookie-banner-text {
  color: #e2e8f0;
  margin: 0;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  line-height: 1.5;
  flex: 1 1 auto;
  min-width: 200px;
}

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

.cookie-btn-accept {
  padding: 0.5rem 1.25rem;
  background: #ff6b35;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
  background: #e55a28;
}

.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
}

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

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

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

  .step-item-index {
    max-width: 100%;
  }

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

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

  .cookie-banner-buttons {
    order: 2;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-stats-index {
    gap: 1rem;
    width: 100%;
  }

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

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

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

  .step-item-index {
    flex-direction: column;
    text-align: center;
  }

  .step-number-index {
    font-size: 2.5rem;
  }

  .benefit-item-index {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon-index {
    margin: 0 auto;
  }

  .faq-list-index {
    gap: 1rem;
  }

  .faq-item-index {
    padding: 1rem;
  }
}

    .footer {
  background: var(--color-bg-accent-dark);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.footer-content {
  display: block;
}

.footer-about,
.footer-navigation,
.footer-contact,
.footer-legal,
.footer-copyright {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-about:last-child {
  margin-bottom: 0;
}

.footer h3 {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: 0.3px;
}

.footer p {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: var(--line-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.footer-about p {
  max-width: 380px;
  color: var(--color-text-secondary-dark);
}

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

.footer-link {
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  transition: color var(--transition-base);
  display: inline-block;
}

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

.footer-contact-info {
  display: block;
}

.footer-contact-info p {
  color: var(--color-text-secondary-dark);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
}

.footer-contact-info strong {
  color: var(--color-text-light);
  font-weight: 600;
}

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

.footer-copyright p {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  margin: 0;
}

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

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

  .footer-navigation {
    flex: 0 1 150px;
  }

  .footer-contact {
    flex: 0 1 220px;
  }

  .footer-legal {
    flex: 0 1 150px;
  }

  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (max-width: 767px) {
  .footer-content {
    display: block;
  }

  .footer-about,
  .footer-navigation,
  .footer-contact,
  .footer-legal {
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
  }

  .footer-about p {
    max-width: none;
  }
}
    

.category-page-dutch-vocabulary {
  width: 100%;
  overflow: hidden;
}

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

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

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

.hero-title-dutch-vocabulary {
  color: #0f172a;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle-dutch-vocabulary {
  color: #334155;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  font-weight: 500;
}

.hero-description-dutch-vocabulary {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 800px;
}

.hero-highlight-dutch-vocabulary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-box-dutch-vocabulary {
  background: #f8fafc;
  border-left: 4px solid #ff6b35;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.highlight-text-dutch-vocabulary {
  color: #1e293b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

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

.posts-content-dutch-vocabulary {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.posts-header-dutch-vocabulary {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.posts-title-dutch-vocabulary {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.posts-subtitle-dutch-vocabulary {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

.card-dutch-vocabulary {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 clamp(280px, 45vw, 380px);
  max-width: 450px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.card-dutch-vocabulary:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-image-dutch-vocabulary {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin: -1rem -1rem 0 -1rem;
}

@media (max-width: 480px) {
  .card-image-dutch-vocabulary {
    margin: clamp(-0.5rem, -2vw, -1rem);
  }
}

.card-title-dutch-vocabulary {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.card-description-dutch-vocabulary {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-dutch-vocabulary {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.9rem);
}

.card-reading-time-dutch-vocabulary,
.card-level-dutch-vocabulary,
.card-date-dutch-vocabulary {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-reading-time-dutch-vocabulary i,
.card-level-dutch-vocabulary i,
.card-date-dutch-vocabulary i {
  color: #ff6b35;
  font-size: 0.9em;
}

.card-link-dutch-vocabulary {
  color: #ff6b35;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
  padding: 0.5rem 0;
}

.card-link-dutch-vocabulary:hover {
  color: #e55a28;
  text-decoration: underline;
}

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

.learning-path-content-dutch-vocabulary {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.learning-path-header-dutch-vocabulary {
  text-align: center;
}

.learning-path-title-dutch-vocabulary {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.learning-path-steps-dutch-vocabulary {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.step-item-dutch-vocabulary {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-dutch-vocabulary {
  flex-shrink: 0;
  width: clamp(50px, 10vw, 70px);
  height: clamp(50px, 10vw, 70px);
  background: #ff6b35;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

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

.step-heading-dutch-vocabulary {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
}

.step-text-dutch-vocabulary {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-item-dutch-vocabulary {
    gap: 1rem;
  }
}

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

.tips-content-dutch-vocabulary {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.tips-header-dutch-vocabulary {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tips-title-dutch-vocabulary {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.tips-subtitle-dutch-vocabulary {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.tips-list-dutch-vocabulary {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.tip-item-dutch-vocabulary {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 clamp(250px, 45vw, 320px);
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.tip-item-dutch-vocabulary:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.tip-icon-dutch-vocabulary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffe5d5;
  border-radius: 10px;
  color: #ff6b35;
  font-size: 1.5rem;
}

.tip-text-dutch-vocabulary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-heading-dutch-vocabulary {
  color: #0f172a;
  font-size: clamp(1rem, 2vw + 0.4rem, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
}

.tip-description-dutch-vocabulary {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .card-dutch-vocabulary {
    flex: 1 1 clamp(280px, 90vw, 350px);
  }

  .tip-item-dutch-vocabulary {
    flex: 1 1 clamp(250px, 90vw, 300px);
  }
}

@media (max-width: 768px) {
  .hero-section-dutch-vocabulary {
    padding: 2rem 0;
  }

  .posts-section-dutch-vocabulary {
    padding: 2rem 0;
  }

  .learning-path-section-dutch-vocabulary {
    padding: 2rem 0;
  }

  .tips-section-dutch-vocabulary {
    padding: 2rem 0;
  }

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

  .tip-item-dutch-vocabulary {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

  .tips-list-dutch-vocabulary {
    gap: 1.5rem;
  }

  .step-item-dutch-vocabulary {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-section-dutch-vocabulary {
    padding: 1.5rem 0;
  }

  .posts-grid-dutch-vocabulary {
    gap: 1rem;
  }

  .tips-list-dutch-vocabulary {
    gap: 1rem;
  }

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

  .card-reading-time-dutch-vocabulary,
  .card-level-dutch-vocabulary,
  .card-date-dutch-vocabulary {
    width: 100%;
  }
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.hero-section-dagelijkse-woorden-nederlands {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-dagelijkse-woorden-nederlands {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  flex-wrap: wrap;
}

.breadcrumbs-dagelijkse-woorden-nederlands a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-dagelijkse-woorden-nederlands a:hover {
  color: #e55a28;
  text-decoration: underline;
}

.breadcrumbs-dagelijkse-woorden-nederlands span {
  color: #64748b;
}

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

.hero-text-dagelijkse-woorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-dagelijkse-woorden-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-dagelijkse-woorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-dagelijkse-woorden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-dagelijkse-woorden-nederlands {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
}

.meta-item-dagelijkse-woorden-nederlands i {
  color: #ff6b35;
}

.hero-image-dagelijkse-woorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-dagelijkse-woorden-nederlands {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-dagelijkse-woorden-nederlands {
    flex-direction: column;
  }
  
  .hero-text-dagelijkse-woorden-nederlands,
  .hero-image-dagelijkse-woorden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .breadcrumbs-dagelijkse-woorden-nederlands {
    margin-bottom: 1.5rem;
  }
}

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

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

.intro-text-dagelijkse-woorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-dagelijkse-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-dagelijkse-woorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-dagelijkse-woorden-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-dagelijkse-woorden-nederlands {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-dagelijkse-woorden-nederlands {
    flex-direction: column;
  }
  
  .intro-text-dagelijkse-woorden-nederlands,
  .intro-image-dagelijkse-woorden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.content-one-title-dagelijkse-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-one-paragraph-dagelijkse-woorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-one-highlight-dagelijkse-woorden-nederlands {
  background: #e0f2fe;
  border-left: 4px solid #004e89;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-dagelijkse-woorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #0c3554;
  line-height: 1.6;
  margin: 0;
}

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

.content-one-img-dagelijkse-woorden-nederlands {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-one-wrapper-dagelijkse-woorden-nederlands {
    flex-direction: column;
  }
  
  .content-one-text-dagelijkse-woorden-nederlands,
  .content-one-image-dagelijkse-woorden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.content-two-img-dagelijkse-woorden-nederlands {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

.content-two-title-dagelijkse-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-two-paragraph-dagelijkse-woorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .content-two-wrapper-dagelijkse-woorden-nederlands {
    flex-direction: column;
  }
  
  .content-two-image-dagelijkse-woorden-nederlands,
  .content-two-text-dagelijkse-woorden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.content-three-title-dagelijkse-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-three-paragraph-dagelijkse-woorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-three-highlight-dagelijkse-woorden-nederlands {
  background: #f0fdf4;
  border-left: 4px solid #2d6a4f;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

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

.content-three-img-dagelijkse-woorden-nederlands {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-three-wrapper-dagelijkse-woorden-nederlands {
    flex-direction: column;
  }
  
  .content-three-text-dagelijkse-woorden-nederlands,
  .content-three-image-dagelijkse-woorden-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.learning-section-dagelijkse-woorden-nederlands {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.learning-title-dagelijkse-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.learning-steps-dagelijkse-woorden-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-dagelijkse-woorden-nederlands {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 380px;
  background: #1e293b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #334155;
  transition: all 0.3s ease;
}

.step-card-dagelijkse-woorden-nederlands:hover {
  transform: translateY(-4px);
  border-color: #ff6b35;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.15);
}

.step-number-dagelijkse-woorden-nederlands {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ff6b35;
  line-height: 1;
}

.step-title-dagelijkse-woorden-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-dagelijkse-woorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

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

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

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

.conclusion-title-dagelijkse-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-dagelijkse-woorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.conclusion-cta-dagelijkse-woorden-nederlands {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-button-dagelijkse-woorden-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ff6b35;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  transition: all 0.3s ease;
}

.cta-button-dagelijkse-woorden-nederlands:hover {
  background: #e55a28;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.25);
}

@media (max-width: 768px) {
  .conclusion-content-dagelijkse-woorden-nederlands {
    text-align: left;
  }
  
  .cta-button-dagelijkse-woorden-nederlands {
    width: 100%;
  }
}

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

.disclaimer-content-dagelijkse-woorden-nederlands {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-dagelijkse-woorden-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-dagelijkse-woorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

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

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

.related-title-dagelijkse-woorden-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  text-align: center;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-dagelijkse-woorden-nederlands {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #334155;
  display: flex;
  flex-direction: column;
}

.related-card-dagelijkse-woorden-nederlands:hover {
  transform: translateY(-4px);
  border-color: #ff6b35;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.related-card-img-dagelijkse-woorden-nederlands {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.related-card-title-dagelijkse-woorden-nederlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #ffffff;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.related-card-text-dagelijkse-woorden-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-dagelijkse-woorden-nederlands {
  color: #ff6b35;
  text-decoration: none;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  display: block;
  transition: color 0.3s ease;
}

.related-card-link-dagelijkse-woorden-nederlands:hover {
  color: #e55a28;
  text-decoration: underline;
}

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

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

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

strong {
  font-weight: 600;
  color: inherit;
}

a {
  transition: color 0.3s ease;
}

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

.main-woorden-onthouden-technieken {
  width: 100%;
  overflow-x: hidden;
}

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

.hero-section-woorden-onthouden-technieken {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.hero-text-woorden-onthouden-technieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-woorden-onthouden-technieken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-lead-woorden-onthouden-technieken {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-woorden-onthouden-technieken {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.meta-item-woorden-onthouden-technieken {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: #94a3b8;
}

.meta-item-woorden-onthouden-technieken i {
  color: #ff6b35;
}

.hero-img-woorden-onthouden-technieken {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-woorden-onthouden-technieken {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.8rem, 0.95vw + 0.5rem, 0.95rem);
  flex-wrap: wrap;
}

.breadcrumbs-woorden-onthouden-technieken a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumbs-woorden-onthouden-technieken a:hover {
  color: #ffe5d5;
  text-decoration: underline;
}

.breadcrumbs-woorden-onthouden-technieken span {
  color: #64748b;
}

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

  .hero-text-woorden-onthouden-technieken,
  .hero-image-woorden-onthouden-technieken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-woorden-onthouden-technieken {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-woorden-onthouden-technieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-woorden-onthouden-technieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-woorden-onthouden-technieken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-woorden-onthouden-technieken {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-woorden-onthouden-technieken {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-woorden-onthouden-technieken {
    flex-direction: column;
  }

  .intro-text-woorden-onthouden-technieken,
  .intro-image-woorden-onthouden-technieken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.technique-one-section-woorden-onthouden-technieken {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.technique-one-content-woorden-onthouden-technieken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.technique-one-image-woorden-onthouden-technieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-one-text-woorden-onthouden-technieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-one-title-woorden-onthouden-technieken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.technique-one-paragraph-woorden-onthouden-technieken {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.technique-img-woorden-onthouden-technieken {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .technique-one-content-woorden-onthouden-technieken {
    flex-direction: column;
  }

  .technique-one-image-woorden-onthouden-technieken,
  .technique-one-text-woorden-onthouden-technieken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.technique-two-section-woorden-onthouden-technieken {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.technique-two-content-woorden-onthouden-technieken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.technique-two-text-woorden-onthouden-technieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-two-image-woorden-onthouden-technieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-two-title-woorden-onthouden-technieken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.technique-two-paragraph-woorden-onthouden-technieken {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .technique-two-content-woorden-onthouden-technieken {
    flex-direction: column;
  }

  .technique-two-text-woorden-onthouden-technieken,
  .technique-two-image-woorden-onthouden-technieken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.technique-three-section-woorden-onthouden-technieken {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.technique-three-content-woorden-onthouden-technieken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.technique-three-image-woorden-onthouden-technieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-three-text-woorden-onthouden-technieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-three-title-woorden-onthouden-technieken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.technique-three-paragraph-woorden-onthouden-technieken {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .technique-three-content-woorden-onthouden-technieken {
    flex-direction: column;
  }

  .technique-three-image-woorden-onthouden-technieken,
  .technique-three-text-woorden-onthouden-technieken {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-woorden-onthouden-technieken {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practice-content-woorden-onthouden-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.practice-title-woorden-onthouden-technieken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practice-steps-woorden-onthouden-technieken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.practice-step-woorden-onthouden-technieken {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-number-woorden-onthouden-technieken {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ff6b35;
  flex-shrink: 0;
  line-height: 1;
}

.step-content-woorden-onthouden-technieken {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-woorden-onthouden-technieken {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.25rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-woorden-onthouden-technieken {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .practice-step-woorden-onthouden-technieken {
    flex: 1 1 100%;
  }
}

.key-takeaways-section-woorden-onthouden-technieken {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.key-takeaways-content-woorden-onthouden-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.key-takeaways-title-woorden-onthouden-technieken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.takeaways-list-woorden-onthouden-technieken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.takeaway-item-woorden-onthouden-technieken {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
}

.takeaway-icon-woorden-onthouden-technieken {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 53, 0.15);
  border-radius: 8px;
}

.takeaway-icon-woorden-onthouden-technieken i {
  color: #ff6b35;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.takeaway-heading-woorden-onthouden-technieken {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.takeaway-text-woorden-onthouden-technieken {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #374151;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .takeaway-item-woorden-onthouden-technieken {
    flex: 1 1 100%;
  }
}

.disclaimer-section-woorden-onthouden-technieken {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-woorden-onthouden-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
}

.disclaimer-title-woorden-onthouden-technieken {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.3rem);
  color: #ff6b35;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-woorden-onthouden-technieken {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 0.95rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.related-section-woorden-onthouden-technieken {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.related-title-woorden-onthouden-technieken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-woorden-onthouden-technieken {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  transition: all 250ms ease;
}

.related-card-woorden-onthouden-technieken:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.related-card-image-woorden-onthouden-technieken {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.related-img-woorden-onthouden-technieken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-woorden-onthouden-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-woorden-onthouden-technieken {
  font-size: clamp(1rem, 1.3vw + 0.5rem, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-woorden-onthouden-technieken {
  font-size: clamp(0.85rem, 0.95vw + 0.5rem, 0.95rem);
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-woorden-onthouden-technieken {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: #ff6b35;
  font-weight: 600;
  text-decoration: none;
  transition: all 150ms ease;
  margin-top: 0.5rem;
}

.related-card-link-woorden-onthouden-technieken:hover {
  color: #e55a28;
  gap: 0.75rem;
}

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

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

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

  .intro-title-woorden-onthouden-technieken,
  .technique-one-title-woorden-onthouden-technieken,
  .technique-two-title-woorden-onthouden-technieken,
  .technique-three-title-woorden-onthouden-technieken {
    font-size: 1.25rem;
  }

  .step-number-woorden-onthouden-technieken {
    font-size: 1.75rem;
  }

  .practice-step-woorden-onthouden-technieken {
    flex: 1 1 100%;
  }
}

.main-woorden-praktijk-conversatie {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

.breadcrumbs-woorden-praktijk-conversatie a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-woorden-praktijk-conversatie a:hover {
  color: #ff6b35;
}

.breadcrumbs-woorden-praktijk-conversatie span {
  color: #64748b;
}

.breadcrumbs-woorden-praktijk-conversatie > span:last-child {
  color: #e2e8f0;
  font-weight: 500;
}

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

.hero-text-woorden-praktijk-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-woorden-praktijk-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-badge-woorden-praktijk-conversatie {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  border-radius: 50px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title-woorden-praktijk-conversatie {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

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

.hero-meta-woorden-praktijk-conversatie {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

.meta-item-woorden-praktijk-conversatie {
  display: inline;
}

.meta-separator-woorden-praktijk-conversatie {
  color: #64748b;
}

.hero-img-woorden-praktijk-conversatie {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

  .hero-text-woorden-praktijk-conversatie,
  .hero-image-woorden-praktijk-conversatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-woorden-praktijk-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-woorden-praktijk-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-woorden-praktijk-conversatie {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.intro-paragraph-woorden-praktijk-conversatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-image-woorden-praktijk-conversatie img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

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

.content-one-section-woorden-praktijk-conversatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.content-one-title-woorden-praktijk-conversatie {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.content-one-paragraph-woorden-praktijk-conversatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.content-one-image-woorden-praktijk-conversatie img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

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

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

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

.content-two-image-woorden-praktijk-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.content-two-title-woorden-praktijk-conversatie {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.content-two-image-woorden-praktijk-conversatie img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.phases-container-woorden-praktijk-conversatie {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.phase-woorden-praktijk-conversatie {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.phase-woorden-praktijk-conversatie:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.phase-number-woorden-praktijk-conversatie {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ff6b35;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.phase-title-woorden-praktijk-conversatie {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.phase-text-woorden-praktijk-conversatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.75;
}

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

  .content-two-image-woorden-praktijk-conversatie,
  .content-two-text-woorden-praktijk-conversatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.techniques-header-woorden-praktijk-conversatie {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.techniques-title-woorden-praktijk-conversatie {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

.techniques-cards-woorden-praktijk-conversatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.technique-card-woorden-praktijk-conversatie {
  flex: 1 1 clamp(250px, 30vw, 350px);
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.technique-card-woorden-praktijk-conversatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.card-icon-woorden-praktijk-conversatie {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #ff6b35;
}

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

.card-text-woorden-praktijk-conversatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #374151;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .technique-card-woorden-praktijk-conversatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-woorden-praktijk-conversatie {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-woorden-praktijk-conversatie {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-woorden-praktijk-conversatie {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-author-woorden-praktijk-conversatie {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  font-style: normal;
  font-weight: 500;
}

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

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

.resources-text-woorden-praktijk-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.resources-image-woorden-praktijk-conversatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.resources-title-woorden-praktijk-conversatie {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.resources-paragraph-woorden-praktijk-conversatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.resources-list-woorden-praktijk-conversatie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.resource-item-woorden-praktijk-conversatie {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.resource-item-woorden-praktijk-conversatie:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.resource-name-woorden-praktijk-conversatie {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.resource-desc-woorden-praktijk-conversatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #374151;
  line-height: 1.6;
}

.resources-image-woorden-praktijk-conversatie img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .resources-content-woorden-praktijk-conversatie {
    flex-direction: column;
  }

  .resources-text-woorden-praktijk-conversatie,
  .resources-image-woorden-praktijk-conversatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-woorden-praktijk-conversatie {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-woorden-praktijk-conversatie {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-align: center;
}

.conclusion-paragraph-woorden-praktijk-conversatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: left;
}

.conclusion-highlight-woorden-praktijk-conversatie {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 78, 137, 0.05) 100%);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
  margin-top: 2rem;
}

.highlight-text-woorden-praktijk-conversatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #0f172a;
  line-height: 1.8;
  font-weight: 500;
}

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

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

.related-title-woorden-praktijk-conversatie {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 1rem;
}

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

.related-card-woorden-praktijk-conversatie {
  flex: 1 1 clamp(280px, 30vw, 380px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-card-woorden-praktijk-conversatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  border-color: #ff6b35;
}

.related-card-image-woorden-praktijk-conversatie {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-woorden-praktijk-conversatie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-woorden-praktijk-conversatie:hover .related-card-image-woorden-praktijk-conversatie img {
  transform: scale(1.05);
}

.related-card-content-woorden-praktijk-conversatie {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-woorden-praktijk-conversatie {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  line-height: 1.3;
  font-weight: 600;
}

.related-card-description-woorden-praktijk-conversatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #374151;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-woorden-praktijk-conversatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-card-link-woorden-praktijk-conversatie:hover {
  color: #e55a28;
  text-decoration: underline;
}

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

.disclaimer-section-woorden-praktijk-conversatie {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-woorden-praktijk-conversatie {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #004e89;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.disclaimer-title-woorden-praktijk-conversatie {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-woorden-praktijk-conversatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #334155;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 768px) {
  .hero-section-woorden-praktijk-conversatie {
    padding: 2rem 0;
  }

  .intro-section-woorden-praktijk-conversatie,
  .content-one-section-woorden-praktijk-conversatie,
  .content-two-section-woorden-praktijk-conversatie,
  .techniques-section-woorden-praktijk-conversatie,
  .resources-section-woorden-praktijk-conversatie,
  .conclusion-section-woorden-praktijk-conversatie,
  .related-section-woorden-praktijk-conversatie,
  .disclaimer-section-woorden-praktijk-conversatie {
    padding: 2rem 0;
  }

  .breadcrumbs-woorden-praktijk-conversatie {
    font-size: 0.75rem;
  }
}

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

  .hero-section-woorden-praktijk-conversatie,
  .intro-section-woorden-praktijk-conversatie,
  .content-one-section-woorden-praktijk-conversatie,
  .content-two-section-woorden-praktijk-conversatie,
  .techniques-section-woorden-praktijk-conversatie,
  .resources-section-woorden-praktijk-conversatie,
  .conclusion-section-woorden-praktijk-conversatie,
  .related-section-woorden-praktijk-conversatie,
  .disclaimer-section-woorden-praktijk-conversatie {
    padding: 1.5rem 0;
  }

  .hero-meta-woorden-praktijk-conversatie {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.main-woordgroepen-thematisch-leren {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-woordgroepen-thematisch-leren {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.breadcrumbs-woordgroepen-thematisch-leren {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.breadcrumbs-woordgroepen-thematisch-leren a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-woordgroepen-thematisch-leren a:hover {
  color: #e55a28;
  text-decoration: underline;
}

.breadcrumbs-woordgroepen-thematisch-leren span {
  color: #64748b;
}

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

.hero-text-block-woordgroepen-thematisch-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-woordgroepen-thematisch-leren {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'DM Serif Display', serif;
}

.hero-subtitle-woordgroepen-thematisch-leren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-woordgroepen-thematisch-leren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-woordgroepen-thematisch-leren {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
}

.meta-item-woordgroepen-thematisch-leren i {
  color: #ff6b35;
}

.hero-image-block-woordgroepen-thematisch-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-woordgroepen-thematisch-leren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

@media (max-width: 1024px) {
  .hero-content-woordgroepen-thematisch-leren {
    flex-direction: column;
  }

  .hero-text-block-woordgroepen-thematisch-leren,
  .hero-image-block-woordgroepen-thematisch-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-woordgroepen-thematisch-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-woordgroepen-thematisch-leren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'DM Serif Display', serif;
}

.intro-paragraph-woordgroepen-thematisch-leren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-woordgroepen-thematisch-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-item-woordgroepen-thematisch-leren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .intro-content-woordgroepen-thematisch-leren {
    flex-direction: column;
  }

  .intro-text-woordgroepen-thematisch-leren,
  .intro-image-woordgroepen-thematisch-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.structure-image-woordgroepen-thematisch-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-image-item-woordgroepen-thematisch-leren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.structure-text-woordgroepen-thematisch-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-woordgroepen-thematisch-leren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'DM Serif Display', serif;
}

.structure-paragraph-woordgroepen-thematisch-leren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.structure-list-woordgroepen-thematisch-leren {
  list-style: none;
  padding: 0;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.structure-list-item-woordgroepen-thematisch-leren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.structure-list-item-woordgroepen-thematisch-leren::before {
  content: "";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .structure-content-woordgroepen-thematisch-leren {
    flex-direction: column-reverse;
  }

  .structure-image-woordgroepen-thematisch-leren,
  .structure-text-woordgroepen-thematisch-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-woordgroepen-thematisch-leren {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-header-woordgroepen-thematisch-leren {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.practice-title-woordgroepen-thematisch-leren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-family: 'DM Serif Display', serif;
}

.practice-subtitle-woordgroepen-thematisch-leren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
}

.practice-steps-woordgroepen-thematisch-leren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.step-card-woordgroepen-thematisch-leren {
  flex: 1 1 280px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-card-woordgroepen-thematisch-leren:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-4px);
}

.step-number-woordgroepen-thematisch-leren {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ff6b35;
  line-height: 1;
}

.step-card-content-woordgroepen-thematisch-leren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-woordgroepen-thematisch-leren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #ffffff;
  line-height: 1.3;
  font-family: 'DM Serif Display', serif;
}

.step-text-woordgroepen-thematisch-leren {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.practice-image-woordgroepen-thematisch-leren {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.practice-image-item-woordgroepen-thematisch-leren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.benefits-section-woordgroepen-thematisch-leren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-content-woordgroepen-thematisch-leren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.benefits-image-woordgroepen-thematisch-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-item-woordgroepen-thematisch-leren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefits-text-woordgroepen-thematisch-leren {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-title-woordgroepen-thematisch-leren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-family: 'DM Serif Display', serif;
}

.benefit-item-woordgroepen-thematisch-leren {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.benefit-item-title-woordgroepen-thematisch-leren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.benefit-item-text-woordgroepen-thematisch-leren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .benefits-content-woordgroepen-thematisch-leren {
    flex-direction: column;
  }

  .benefits-image-woordgroepen-thematisch-leren,
  .benefits-text-woordgroepen-thematisch-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.example-section-woordgroepen-thematisch-leren {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.example-header-woordgroepen-thematisch-leren {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.example-title-woordgroepen-thematisch-leren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-family: 'DM Serif Display', serif;
}

.example-subtitle-woordgroepen-thematisch-leren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.example-cards-woordgroepen-thematisch-leren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.example-card-woordgroepen-thematisch-leren {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.example-card-woordgroepen-thematisch-leren:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.example-card-title-woordgroepen-thematisch-leren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 600;
}

.example-card-list-woordgroepen-thematisch-leren {
  list-style: none;
  padding: 0;
  margin: 0;
}

.example-card-list-woordgroepen-thematisch-leren li {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 1rem);
  color: #374151;
  line-height: 1.8;
  padding-left: 1rem;
  position: relative;
}

.example-card-list-woordgroepen-thematisch-leren li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #ff6b35;
}

.example-highlight-woordgroepen-thematisch-leren {
  background: #fff4f0;
  border-left: 4px solid #ff6b35;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
}

.example-highlight-text-woordgroepen-thematisch-leren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #0f172a;
  line-height: 1.7;
}

.conclusion-section-woordgroepen-thematisch-leren {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-woordgroepen-thematisch-leren {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-woordgroepen-thematisch-leren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'DM Serif Display', serif;
}

.conclusion-paragraph-woordgroepen-thematisch-leren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-cta-woordgroepen-thematisch-leren {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.btn-conclusion-woordgroepen-thematisch-leren {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1vw + 0.5rem, 1.125rem) clamp(1.5rem, 3vw, 2rem);
  background: #ff6b35;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  transition: all 0.3s ease;
}

.btn-conclusion-woordgroepen-thematisch-leren:hover {
  background: #e55a28;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.disclaimer-section-woordgroepen-thematisch-leren {
  background: #1e293b;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-woordgroepen-thematisch-leren {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-woordgroepen-thematisch-leren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-woordgroepen-thematisch-leren {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

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

.related-header-woordgroepen-thematisch-leren {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-woordgroepen-thematisch-leren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-family: 'DM Serif Display', serif;
}

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

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

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

.related-card-woordgroepen-thematisch-leren:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.related-card-image-woordgroepen-thematisch-leren {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8fafc;
}

.related-card-img-woordgroepen-thematisch-leren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-woordgroepen-thematisch-leren {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-woordgroepen-thematisch-leren {
  font-size: clamp(0.95rem, 2vw + 0.4rem, 1.15rem);
  color: #0f172a;
  line-height: 1.3;
  font-weight: 600;
}

.related-card-text-woordgroepen-thematisch-leren {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-woordgroepen-thematisch-leren {
  display: inline-flex;
  align-items: center;
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw + 0.4rem, 1rem);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-woordgroepen-thematisch-leren:hover {
  color: #e55a28;
  transform: translateX(4px);
}

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

  .intro-section-woordgroepen-thematisch-leren,
  .structure-section-woordgroepen-thematisch-leren,
  .practice-section-woordgroepen-thematisch-leren,
  .benefits-section-woordgroepen-thematisch-leren,
  .example-section-woordgroepen-thematisch-leren,
  .conclusion-section-woordgroepen-thematisch-leren,
  .related-section-woordgroepen-thematisch-leren {
    padding: clamp(2rem, 5vw, 4rem) 0;
  }

  .hero-title-woordgroepen-thematisch-leren {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }

  .intro-title-woordgroepen-thematisch-leren,
  .structure-title-woordgroepen-thematisch-leren,
  .practice-title-woordgroepen-thematisch-leren,
  .benefits-title-woordgroepen-thematisch-leren,
  .example-title-woordgroepen-thematisch-leren,
  .conclusion-title-woordgroepen-thematisch-leren,
  .related-title-woordgroepen-thematisch-leren {
    font-size: clamp(1.25rem, 3vw, 2rem);
  }

  .step-card-woordgroepen-thematisch-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .example-card-woordgroepen-thematisch-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-woordgroepen-thematisch-leren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-woordgroepen-thematisch-leren {
    font-size: 0.7rem;
  }

  .hero-meta-woordgroepen-thematisch-leren {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-title-woordgroepen-thematisch-leren {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  .practice-steps-woordgroepen-thematisch-leren {
    gap: 1rem;
  }

  .step-number-woordgroepen-thematisch-leren {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
}

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

.dutch-language-journey-about {
  background: var(--color-bg-primary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
}

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

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

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

.hero-vocabulary-header-about {
  text-align: center;
}

.hero-vocabulary-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--line-tight);
  margin-bottom: 1rem;
}

.hero-vocabulary-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  max-width: 600px;
  line-height: var(--line-normal);
}

.hero-vocabulary-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 1rem auto;
}

.hero-stats-vocabulary-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: 2rem;
}

.stat-item-vocabulary-about {
  text-align: center;
  flex: 1 1 140px;
  min-width: 120px;
}

.stat-number-vocabulary-about {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-label-vocabulary-about {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
}

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

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

.foundation-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.section-tag-vocabulary-about {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: rgba(255, 107, 53, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
}

.foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: var(--line-tight);
  margin: 1rem 0;
}

.foundation-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-normal);
}

.foundation-story-about {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
}

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

.foundation-story-text-about:last-child {
  margin-bottom: 0;
}

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

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

.methodology-header-about {
  text-align: center;
}

.methodology-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--line-tight);
  margin-bottom: 1rem;
}

.methodology-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-normal);
}

.approach-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1000px;
  margin: 0 auto;
}

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

.step-number-vocabulary-about {
  flex-shrink: 0;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.step-content-vocabulary-about {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title-vocabulary-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.step-text-vocabulary-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-normal);
}

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

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

.features-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.features-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: var(--line-tight);
  margin-bottom: 1rem;
}

.features-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-normal);
}

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

.feature-card-vocabulary-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

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

.card-icon-vocabulary-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.card-title-vocabulary-about {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  line-height: var(--line-tight);
}

.card-text-vocabulary-about {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-normal);
}

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

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

.impact-header-about {
  text-align: center;
}

.impact-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light);
  line-height: var(--line-tight);
  margin-bottom: 1rem;
}

.impact-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-normal);
}

.featured-quote-vocabulary-about {
  max-width: 800px;
  margin: 2rem auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.quote-text-vocabulary-about {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-light);
  font-style: italic;
  line-height: var(--line-relaxed);
  margin-bottom: 1rem;
}

.quote-author-vocabulary-about {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  font-style: normal;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-about {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-relaxed);
}

@media (min-width: 768px) {
  .process-step-vocabulary-about {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .features-cards-vocabulary-about {
    justify-content: center;
  }

  .feature-card-vocabulary-about {
    flex: 1 1 320px;
  }
}

@media (min-width: 1024px) {
  .hero-stats-vocabulary-about {
    gap: 3rem;
  }

  .approach-steps-about {
    gap: 2.5rem;
  }

  .features-cards-vocabulary-about {
    gap: 2.5rem;
  }
}

.faq-page {
  width: 100%;
  overflow: hidden;
}

.faq-hero {
  background-color: var(--color-bg-hero);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.faq-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 5vw + 0.5rem, var(--text-4xl));
  color: var(--color-text-light);
  line-height: var(--line-tight);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.faq-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-sm), 2vw + 0.25rem, var(--text-lg));
  color: var(--color-text-secondary-dark);
  line-height: var(--line-normal);
  margin: 0;
  font-weight: 300;
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.faq-content__container {
  max-width: 900px;
  margin: 0 auto;
}

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

.faq-item {
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.faq-item__trigger {
  width: 100%;
  padding: var(--space-md);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(var(--text-sm), 1vw + 0.25rem, var(--text-base));
  color: var(--color-text-dark);
  font-weight: 600;
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-item__trigger:hover {
  color: var(--color-primary);
}

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

.faq-item__question {
  flex: 1;
}

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  border-top: 1px solid #e2e8f0;
  animation: slideDown var(--transition-base) ease-out;
}

.faq-item__answer p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(var(--text-sm), 1vw + 0.25rem, var(--text-base));
  color: var(--color-text-secondary-light);
  line-height: var(--line-relaxed);
  font-weight: 400;
}

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

.faq-cta {
  background-color: var(--color-bg-accent-dark);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.faq-cta__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-xl), 4vw + 0.5rem, var(--text-3xl));
  color: var(--color-text-light);
  line-height: var(--line-tight);
  margin: 0 0 var(--space-md) 0;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.faq-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-sm), 1vw + 0.25rem, var(--text-base));
  color: var(--color-text-secondary-dark);
  line-height: var(--line-normal);
  margin: 0 0 var(--space-lg) 0;
  font-weight: 400;
}

.faq-cta__button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: clamp(var(--text-sm), 1vw + 0.25rem, var(--text-base));
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

.faq-cta__button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.faq-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .faq-item__trigger {
    padding: var(--space-lg);
  }

  .faq-item__answer {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  }

  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-4xl) var(--space-lg);
  }

  .faq-content {
    padding: var(--space-4xl) var(--space-lg);
  }

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

  .faq-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-bg-hero);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero-content {
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-light);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-tight);
  font-weight: 700;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: var(--line-normal);
  font-weight: 400;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.services-offerings {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-sm);
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  width: 100%;
}

.service-card {
  background-color: var(--color-bg-card-light);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-dark);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-tight);
  font-weight: 600;
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-relaxed);
  flex-grow: 1;
}

.service-card-link {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  padding: var(--space-xs) 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  width: fit-content;
}

.service-card-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
}

.services-approach {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-sm);
  overflow: hidden;
}

.services-approach-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.services-approach-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-dark);
  margin: 0 0 var(--space-2xl) 0;
  line-height: var(--line-tight);
  text-align: center;
  font-weight: 600;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  width: 100%;
}

.approach-item {
  background-color: var(--color-bg-card-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.approach-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-secondary-light);
  color: var(--color-secondary);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.approach-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.3rem, 1.375rem);
  color: var(--color-text-dark);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-tight);
  font-weight: 600;
}

.approach-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary-light);
  margin: 0;
  line-height: var(--line-relaxed);
}

.services-cta {
  background-color: var(--color-bg-hero);
  padding: var(--space-3xl) var(--space-sm);
  overflow: hidden;
}

.services-cta-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-light);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-tight);
  font-weight: 600;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-relaxed);
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
    min-height: 320px;
  }

  .services-offerings {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .services-approach {
    padding: var(--space-4xl) var(--space-lg);
  }

  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .services-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-4xl) var(--space-lg);
    min-height: 360px;
  }

  .services-offerings {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-approach {
    padding: var(--space-4xl) var(--space-lg);
  }

  .services-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-dark);
  font-family: var(--font-primary);
}

.legal-docs main {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
}

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

.legal-docs-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  line-height: var(--line-tight);
  margin: 0 0 var(--space-sm) 0;
  padding-top: var(--space-xl);
}

.legal-docs .updated {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-dark);
  font-family: var(--font-heading);
  line-height: var(--line-tight);
  margin: var(--space-2xl) 0 var(--space-md) 0;
  padding-top: var(--space-lg);
}

.legal-docs h2:first-of-type {
  margin-top: var(--space-xl);
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark);
  line-height: var(--line-relaxed);
  margin: 0 0 var(--space-md) 0;
}

.legal-docs ul {
  margin: var(--space-md) 0 var(--space-md) var(--space-lg);
  padding: 0;
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-sm);
  list-style-position: outside;
}

.legal-docs strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.contact-section {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  margin: var(--space-3xl) 0 var(--space-2xl) 0;
  border-radius: var(--radius-md);
}

.contact-section h2 {
  margin-top: 0;
  color: var(--color-text-dark);
}

.contact-section p {
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
}

.contact-section p:last-child {
  margin-bottom: 0;
}

.intro-section p {
  color: var(--color-text-dark);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
  .legal-docs main {
    padding: var(--space-xl) var(--space-md);
  }

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

  .legal-docs h1 {
    padding-top: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs main {
    padding: var(--space-2xl) var(--space-lg);
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .legal-docs h1 {
    padding-top: var(--space-3xl);
  }
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-hero {
  background-color: var(--color-bg-primary);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

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

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

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

.thank-icon-wrapper {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-icon {
  width: clamp(60px, 15vw, 120px);
  height: clamp(60px, 15vw, 120px);
  color: var(--color-primary);
  stroke-width: 2;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: var(--line-tight);
  letter-spacing: -0.5px;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-secondary-light);
  margin: 0 0 var(--space-xl) 0;
  line-height: var(--line-relaxed);
  font-weight: 500;
}

.thank-message {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  border-left: 4px solid var(--color-primary);
}

.thank-message p {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-dark);
  line-height: var(--line-relaxed);
  margin: 0 0 var(--space-md) 0;
}

.thank-message p:last-child {
  margin-bottom: 0;
}

.thank-next-steps {
  background-color: var(--color-tertiary-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
  text-align: left;
}

.steps-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-tertiary);
  margin: 0 0 var(--space-md) 0;
  font-weight: 600;
}

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

.steps-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-dark);
  line-height: var(--line-relaxed);
  padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  position: relative;
  margin-bottom: var(--space-sm);
}

.steps-list li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-tertiary);
  font-weight: bold;
  font-size: 1.2em;
}

.steps-list li:last-child {
  margin-bottom: 0;
}

.btn-home {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

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

.btn-home:active {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .thank-hero {
    padding: var(--space-2xl) var(--space-md);
  }

  .thank-message {
    padding: var(--space-xl);
  }

  .thank-next-steps {
    padding: var(--space-xl);
  }
}

@media (min-width: 768px) {
  .thank-hero {
    padding: var(--space-3xl) var(--space-md);
    min-height: 100vh;
  }

  .thank-content {
    padding: var(--space-2xl) 0;
  }

  .thank-message {
    padding: var(--space-xl) var(--space-2xl);
  }

  .thank-next-steps {
    padding: var(--space-xl) var(--space-2xl);
  }

  .steps-list li {
    padding: var(--space-md) 0 var(--space-md) var(--space-lg);
    margin-bottom: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .thank-hero {
    padding: var(--space-4xl) var(--space-lg);
  }

  .thank-content {
    padding: var(--space-3xl) 0;
  }

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

  .thank-lead {
    margin-bottom: var(--space-2xl);
  }

  .btn-home {
    padding: var(--space-md) var(--space-3xl);
    font-size: 1.1rem;
  }

  .btn-home:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 639px) {
  .thank-next-steps {
    text-align: center;
  }

  .thank-next-steps .steps-title {
    text-align: center;
  }

  .steps-list li {
    text-align: center;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .steps-list li:before {
    position: static;
    margin-right: var(--space-xs);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  width: 100%;
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

.error-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.error-code-large {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: var(--line-tight);
  animation: float-up 3s ease-in-out infinite;
}

.error-code-middle {
  animation-delay: 0.1s;
}

@keyframes float-up {
  0%, 100% {
    transform: translateY(0px);
    opacity: 1;
  }
  50% {
    transform: translateY(-15px);
    opacity: 0.8;
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-dark);
  line-height: var(--line-tight);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-secondary);
  line-height: var(--line-normal);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  flex: 1;
  min-width: 120px;
}

.feature-icon {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.feature-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-dark);
  font-weight: 500;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-text-light);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  margin: var(--space-lg) 0;
}

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

.btn-home:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.error-footer {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: var(--line-normal);
  margin-top: var(--space-xl);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width var(--transition-fast);
}

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

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

@media (max-width: 767px) {
  .error-hero {
    padding: var(--space-xl) var(--space-md);
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .error-features {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .feature-item {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .error-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .error-features {
    gap: var(--space-xl);
    padding: var(--space-xl);
  }

  .feature-item {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .error-hero {
    padding: var(--space-4xl) var(--space-xl);
  }

  .error-features {
    gap: var(--space-2xl);
  }

  .error-animation {
    gap: var(--space-xl);
  }

  .btn-home {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-lg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code-large {
    animation: none;
  }

  .btn-home {
    transition: none;
  }

  .footer-link::after {
    transition: none;
  }

  .footer-link {
    transition: none;
  }
}

.contact-page-contactus {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.contact-page-hero {
  background-color: var(--color-bg-hero);
  padding: 4rem 1rem;
  overflow: hidden;
  position: relative;
}

.contact-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background-color: rgba(255, 107, 53, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.contact-page-hero-content {
  position: relative;
  z-index: 1;
}

.contact-page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: var(--line-tight);
}

.contact-page-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--line-relaxed);
  max-width: 600px;
}

@media (min-width: 768px) {
  .contact-page-hero {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-page-hero {
    padding: 8rem 2rem;
  }
}

.contact-page-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-page-main {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-page-main {
    padding: 6rem 2rem;
  }
}

.contact-page-main-content {
  width: 100%;
}

.contact-page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  width: 100%;
}

@media (max-width: 967px) {
  .contact-page-grid {
    gap: 2rem;
  }
}

.contact-page-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 968px) {
  .contact-page-form-wrapper {
    flex: 1 1 45%;
  }
}

.contact-page-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: var(--line-tight);
}

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

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

.contact-page-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-dark);
  text-transform: none;
}

.contact-page-input,
.contact-page-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-secondary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-dark);
  transition: all var(--transition-base);
}

.contact-page-input::placeholder,
.contact-page-textarea::placeholder {
  color: var(--color-text-secondary-light);
}

.contact-page-input:focus,
.contact-page-textarea:focus {
  outline: none;
  background-color: var(--color-bg-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-page-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-page-form-privacy {
  margin-top: 0.5rem;
}

.contact-page-privacy-text {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-text-secondary-light);
  line-height: var(--line-normal);
}

.contact-page-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-page-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-page-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: 0.5rem;
}

.contact-page-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}

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

.contact-page-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 968px) {
  .contact-page-info-wrapper {
    flex: 1 1 45%;
  }
}

.contact-page-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: var(--line-tight);
}

.contact-page-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.contact-page-info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.contact-page-info-content {
  flex: 1;
}

.contact-page-info-label {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-page-info-text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary-light);
  line-height: var(--line-normal);
}

.contact-page-info-text a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-page-info-text a:hover {
  color: var(--color-primary-hover);
}

.contact-page-info-extra {
  background-color: var(--color-bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.contact-page-info-extra-title {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-page-info-extra-text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary-light);
  line-height: var(--line-normal);
  margin-bottom: 0.5rem;
}

.contact-page-info-extra-text:last-of-type {
  margin-bottom: 0;
}

.contact-page-info-extra-text-note {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  color: var(--color-text-secondary-light);
  line-height: var(--line-normal);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  font-style: italic;
}

.contact-page-faq {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-page-faq {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-page-faq {
    padding: 6rem 2rem;
  }
}

.contact-page-faq-content {
  width: 100%;
}

.contact-page-faq-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: var(--line-tight);
  text-align: center;
}

.contact-page-faq-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-light);
  text-align: center;
  margin-bottom: 3rem;
  line-height: var(--line-normal);
}

.contact-page-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .contact-page-faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-page-faq-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.contact-page-faq-item {
  background-color: var(--color-bg-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-page-faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-page-faq-question {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: var(--line-tight);
}

.contact-page-faq-answer {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary-light);
  line-height: var(--line-relaxed);
}

@media (max-width: 600px) {
  .contact-page-hero {
    padding: 3rem 1rem;
  }

  .contact-page-hero h1 {
    margin-bottom: 0.75rem;
  }

  .contact-page-main {
    padding: 2rem 1rem;
  }

  .contact-page-grid {
    gap: 2rem;
  }

  .contact-page-form-title,
  .contact-page-info-title {
    margin-bottom: 1.5rem;
  }

  .contact-page-form {
    gap: 1.25rem;
  }

  .contact-page-info-block {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .contact-page-faq {
    padding: 2.5rem 1rem;
  }

  .contact-page-faq-subtitle {
    margin-bottom: 2rem;
  }

  .contact-page-faq-grid {
    gap: 1.5rem;
  }

  .contact-page-faq-item {
    padding: 1.5rem;
  }
}
.header-vocab-hub {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-bg-primary);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.header-vocab-hub-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.header-vocab-hub-logo-img {
  width: clamp(32px, 5vw, 40px);
  height: clamp(32px, 5vw, 40px);
  object-fit: contain;
}

.header-vocab-hub-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-dark);
  white-space: nowrap;
}

.header-vocab-hub-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.header-vocab-hub-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 500;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

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

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

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

.header-vocab-hub-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-vocab-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.header-vocab-hub-hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header-vocab-hub-mobile-toggle[aria-expanded="true"] .header-vocab-hub-hamburger-line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.header-vocab-hub-mobile-toggle[aria-expanded="true"] .header-vocab-hub-hamburger-line:nth-child(2) {
  opacity: 0;
}

.header-vocab-hub-mobile-toggle[aria-expanded="true"] .header-vocab-hub-hamburger-line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

.header-vocab-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-bg-primary);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transition: right var(--transition-base);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
}

.header-vocab-hub-mobile-menu.open {
  right: 0;
}

.header-vocab-hub-mobile-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--space-xl);
}

.header-vocab-hub-mobile-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-dark);
  cursor: pointer;
  padding: var(--space-xs);
  transition: color var(--transition-fast);
}

.header-vocab-hub-mobile-close:hover {
  color: var(--color-primary);
}

.header-vocab-hub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.header-vocab-hub-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-dark);
  text-decoration: none;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.header-vocab-hub-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
}

.header-vocab-hub-mobile-cta {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  margin-top: auto;
}

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

.header-vocab-hub-mobile-menu::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.header-vocab-hub-mobile-menu.open::before {
 
}

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

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

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

body.menu-open {
  overflow: hidden;
}
.header-vocab-hub-mobile-toggle[aria-expanded="true"]{
  display: none;
}  