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

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

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

a {
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

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

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

.btn-outline {
  background: transparent;
  color: var(--color-text-secondary);
  border: 2px solid rgba(191, 219, 254, 0.3);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
}

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

.card:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 769px) {
  .hide-desktop {
    display: none;
  }
}

ul, ol {
  list-style: none;
}

li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

p a, li a {
  color: var(--color-primary);
  font-weight: 500;
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

p a:hover, li a:hover {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

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

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

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

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

.text-bright {
  color: var(--color-accent-bright);
}

.decoration-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.decoration-line {
  position: absolute;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), transparent);
  opacity: 0.5;
}

.glow-accent {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.glow-cyan {
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.15);
}

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

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

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

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.35);
  }
}

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

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

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

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

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

::selection {
  background: var(--color-primary);
  color: #ffffff;
}

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

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

.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: #ffffff;
    color: #000000;
  }
  
  a {
    color: #0066cc;
  }
}
.header-language-portal {
    background: var(--color-bg-primary);
    padding: 1.25rem 0;
    position: static;
    z-index: 100;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }

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

  .header-language-portal-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    flex-shrink: 0;
  }

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

  .header-language-portal-logo-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
  }

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

  .header-language-portal-nav-link {
    color: #bfdbfe;
    text-decoration: none;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 500;
    transition: color 300ms ease;
    position: relative;
  }

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

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

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

  .header-language-portal-cta-button {
    display: none;
    padding: 0.75rem 1.75rem;
    background: var(--color-primary);
    color: #0c1929;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: clamp(0.875rem, 1vw, 1rem);
    transition: all 300ms ease;
    white-space: nowrap;
  }

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

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

  .header-language-portal-mobile-toggle:hover {
    color: var(--color-primary);
  }

  .header-language-portal-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-primary);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 300ms ease;
    z-index: 99;
    overflow-y: auto;
  }

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

  .header-language-portal-mobile-header {
    display: flex;
    justify-content: flex-end;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }

  .header-language-portal-mobile-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 300ms ease;
  }

  .header-language-portal-mobile-close:hover {
    color: var(--color-primary);
  }

  .header-language-portal-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding: 1rem 0;
  }

  .header-language-portal-mobile-link {
    color: #bfdbfe;
    text-decoration: none;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 300ms ease;
    border-left: 3px solid transparent;
  }

  .header-language-portal-mobile-link:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.1);
    border-left-color: var(--color-primary);
    padding-left: 1.75rem;
  }

  .header-language-portal-mobile-cta {
    margin: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: #0c1929;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 300ms ease;
    display: block;
  }

  .header-language-portal-mobile-cta:active {
    transform: scale(0.98);
  }

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

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

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

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

  @media (max-width: 767px) {
    .header-language-portal-container {
      gap: 1rem;
    }

    .header-language-portal-logo-text {
      display: none;
    }

    .header-language-portal-logo-img {
      width: 36px;
      height: 36px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .header-language-portal-nav-link,
    .header-language-portal-cta-button,
    .header-language-portal-mobile-toggle,
    .header-language-portal-mobile-close,
    .header-language-portal-mobile-link,
    .header-language-portal-mobile-cta,
    .header-language-portal-mobile-menu {
      transition: none;
    }
  }

    .language-academy {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.hero-gradient-field {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-primary {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-shape-secondary {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-accent-orb {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-corner-element {
  position: absolute;
  bottom: 5%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: rgba(96, 165, 250, 0.04);
  border-radius: 50% 30% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

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

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

.hero-stat-label {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
}

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

.features-color-field-left {
  position: absolute;
  top: -50px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-color-field-right {
  position: absolute;
  bottom: 5%;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.features-accent-glow {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.features-shape-element {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(96, 165, 250, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

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

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

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

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

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

.features-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-step:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateX(4px);
}

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

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

.features-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

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

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

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

.benefits-glow-bottom {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.benefits-line-accent {
  position: absolute;
  top: 20%;
  right: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3));
  z-index: 2;
  pointer-events: none;
}

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

.benefits-text-block {
  flex: 1 1 400px;
}

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

.benefits-intro {
  font-size: 1rem;
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.benefits-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefits-list-icon {
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

.benefits-image-block {
  flex: 1 1 350px;
  min-height: 350px;
}

.benefits-image {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .benefits-content {
    flex-direction: column;
  }
  
  .benefits-text-block {
    flex: 1 1 100%;
  }
  
  .benefits-image-block {
    flex: 1 1 100%;
    min-height: 300px;
  }
}

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

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

.featured-shape-decoration {
  position: absolute;
  bottom: 5%;
  right: -50px;
  width: 280px;
  height: 280px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

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

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

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

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

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

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

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

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

.featured-card-number {
  font-size: 2rem;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

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

.featured-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

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

.featured-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #60a5fa;
  font-weight: 500;
  text-decoration: none;
  transition: all 300ms ease;
  margin-top: 0.5rem;
}

.featured-card-link:hover {
  color: #bfdbfe;
  gap: 1rem;
}

.featured-footer {
  position: relative;
  z-index: 10;
  text-align: center;
}

.featured-footer-text {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

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

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

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

.approach-glow-right {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.approach-float-element {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

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

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

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

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

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

.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1);
  border-color: #cbd5e1;
}

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

.approach-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

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

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

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

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

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

.testimonial-accent-shape {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

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

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

.testimonial-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-6px);
}

.testimonial-stars {
  font-size: 1.25rem;
  color: #fbbf24;
  letter-spacing: 0.2em;
}

.testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #cbd5e1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: #94a3b8;
}

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

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

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

.cta-accent-element {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.cta-corner-decoration {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  background: #3b82f6;
  color: #0f172a;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

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

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

.contact-gradient-field {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-element {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

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

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

.contact-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
}

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

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

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

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

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

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 300ms ease;
}

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

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

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

.contact-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.contact-privacy input {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.contact-privacy-label {
  font-size: 0.875rem;
  color: #cbd5e1;
  cursor: pointer;
}

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

.contact-privacy-link:hover {
  color: #bfdbfe;
}

.btn-submit {
  padding: 1rem 2rem;
  background: #3b82f6;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

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

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

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

.contact-info-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
  
  .contact-form-wrapper,
  .contact-info-block {
    flex: 1 1 100%;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1.25rem;
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

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

.cookie-banner-text {
  font-size: 0.875rem;
  color: #cbd5e1;
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: all 300ms ease;
  font-family: var(--font-primary);
}

.cookie-btn-accept {
  background: #3b82f6;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

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

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

.cookie-btn-decline:hover {
  border-color: #cbd5e1;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
  text-decoration: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.btn-secondary {
  background: transparent;
  color: var(--color-text-secondary);
  border: 2px solid rgba(191, 219, 254, 0.3);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}

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

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

.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

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

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

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

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

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

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

.footer-about {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-about-text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
}

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

.footer-nav-title {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9375rem;
}

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

.footer-nav-link {
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  transition: color 300ms ease;
  position: relative;
  display: inline-block;
  width: fit-content;
}

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

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

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

.footer-contact {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-title {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9375rem;
}

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

.footer-contact-item {
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  line-height: 1.5;
}

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

.footer-legal-title {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9375rem;
}

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

.footer-legal-link {
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  transition: color 300ms ease;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-bright);
  transition: width 300ms ease;
}

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

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

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(59, 130, 246, 0.15);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

.footer-copyright {
  font-size: clamp(0.75rem, 0.85vw, 0.875rem);
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  letter-spacing: 0.3px;
}

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

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

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

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

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

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

  .footer-content {
    gap: 3.5rem;
  }

  .footer-about {
    flex: 1 1 300px;
  }

  .footer-about-title {
    font-size: 1.5rem;
  }

  .footer-about-text {
    font-size: 1rem;
  }

  .footer-nav-title,
  .footer-contact-title,
  .footer-legal-title {
    font-size: 1.125rem;
  }

  .footer-nav-link,
  .footer-contact-item,
  .footer-legal-link {
    font-size: 0.9375rem;
  }
}

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

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

.main.category-page-dutch-language-basics {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

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

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

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

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

.hero-deco-shape-2 {
  position: absolute;
  width: 280px;
  height: 250px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 30% 70% 50% 50% / 50% 50% 50% 50%;
  bottom: 100px;
  right: 8%;
  z-index: 2;
  pointer-events: none;
}

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

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

.hero-title-dutch-basics {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

.hero-stats-dutch-basics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2.5rem;
}

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

.stat-number-dutch-basics {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-dutch-basics {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

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

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

.posts-section-dutch-basics {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

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

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

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

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

.card-dutch-basics {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

.card-link-dutch-basics {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.card-link-dutch-basics:hover {
  color: var(--color-secondary);
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .card-dutch-basics {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .posts-grid-dutch-basics {
    justify-content: center;
  }
}

.learning-path-section-dutch-basics {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.learning-deco-shape-1 {
  position: absolute;
  width: 300px;
  height: 350px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  top: 50px;
  right: -80px;
  z-index: 1;
  pointer-events: none;
}

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

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

.learning-tag-dutch-basics {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .learning-step-dutch-basics {
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .learning-step-number-dutch-basics {
    min-width: 50px;
  }
}

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

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

.benefits-deco-shape-2 {
  position: absolute;
  width: 250px;
  height: 300px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 30% 70% / 30% 70% 70% 30%;
  bottom: 50px;
  right: -60px;
  z-index: 1;
  pointer-events: none;
}

.benefits-deco-accent-dot {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.benefits-content-dutch-basics {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.benefits-text-dutch-basics {
  flex: 1 1 300px;
  min-width: 280px;
}

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

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

.benefits-list-dutch-basics {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item-dutch-basics {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.benefit-icon-dutch-basics {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

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

.benefit-title-dutch-basics {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
}

.benefit-description-dutch-basics {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.featured-quote-dutch-basics {
  flex: 1 1 300px;
  min-width: 280px;
  padding: 2.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
}

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

.quote-author-dutch-basics {
  font-size: 0.9375rem;
  color: #94a3b8;
  font-style: normal;
}

@media (max-width: 768px) {
  .benefits-content-dutch-basics {
    flex-direction: column;
    gap: 2rem;
  }
  
  .benefits-text-dutch-basics,
  .featured-quote-dutch-basics {
    flex: 1 1 100%;
  }
}

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

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

.cta-deco-glow-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  bottom: -80px;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.cta-deco-line {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.4), transparent);
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.cta-box-dutch-basics {
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

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

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

.btn-large-dutch-basics {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(2rem, 4vw, 3rem);
}

@media (max-width: 768px) {
  .hero-buttons-dutch-basics {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons-dutch-basics .btn {
    width: 100%;
    justify-content: center;
  }
}

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

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

.main-gesprekken-voeren-nederlands {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  position: relative;
  overflow-x: hidden;
}

.hero-section-gesprekken-voeren-nederlands {
  width: 100%;
  padding: clamp(2rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  position: relative;
  overflow: hidden;
}

.hero-section-gesprekken-voeren-nederlands::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  pointer-events: none;
  z-index: 0;
}

.hero-wrapper-gesprekken-voeren-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content-gesprekken-voeren-nederlands {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-gesprekken-voeren-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle-gesprekken-voeren-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.6;
  font-weight: 400;
}

.hero-image-gesprekken-voeren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-gesprekken-voeren-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
  display: block;
}

.breadcrumbs-gesprekken-voeren-nederlands {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

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

.breadcrumb-link-gesprekken-voeren-nederlands:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.breadcrumb-separator-gesprekken-voeren-nederlands {
  color: #475569;
  margin: 0 0.25rem;
}

.breadcrumb-current-gesprekken-voeren-nederlands {
  color: #cbd5e1;
}

.article-meta-gesprekken-voeren-Nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

.meta-badge-gesprekken-voeren-nederlands i {
  color: #60a5fa;
}

.introduction-section-gesprekken-voeren-nederlands {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.introduction-wrapper-gesprekken-voeren-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-gesprekken-voeren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.introduction-image-gesprekken-voeren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-gesprekken-voeren-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.content-section-one-gesprekken-voeren-nederlands {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

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

.content-text-one-gesprekken-voeren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-title-one-gesprekken-voeren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-paragraph-one-gesprekken-voeren-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.content-highlight-gesprekken-voeren-nederlands {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.highlight-title-gesprekken-voeren-nederlands {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.highlight-list-gesprekken-voeren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.highlight-item-gesprekken-voeren-nederlands {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
}

.highlight-item-gesprekken-voeren-nederlands::before {
  content: '';
  color: #3b82f6;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

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

.content-img-one-gesprekken-voeren-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.content-section-two-gesprekken-voeren-nederlands {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

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

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

.content-img-two-gesprekken-voeren-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.content-text-two-gesprekken-voeren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-title-two-gesprekken-voeren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-paragraph-two-gesprekken-voeren-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

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

.quote-text-gesprekken-voeren-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-gesprekken-voeren-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

.techniques-section-gesprekken-voeren-nederlands {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.techniques-header-gesprekken-voeren-nederlands {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.techniques-title-gesprekken-voeren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

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

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

.techniques-card-gesprekken-voeren-nederlands {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.techniques-card-gesprekken-voeren-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.techniques-card-icon-gesprekken-voeren-nederlands {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.techniques-card-title-gesprekken-voeren-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.techniques-card-text-gesprekken-voeren-nederlands {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

.practical-section-gesprekken-voeren-nederlands {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.practical-wrapper-gesprekken-voeren-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practical-text-gesprekken-voeren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practical-title-gesprekken-voeren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

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

.practical-steps-gesprekken-voeren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practical-step-gesprekken-voeren-nederlands {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border-left: 4px solid #3b82f6;
}

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

.practical-step-content-gesprekken-voeren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practical-step-title-gesprekken-voeren-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.practical-step-text-gesprekken-voeren-nederlands {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.practical-image-gesprekken-voeren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-img-gesprekken-voeren-nederlands {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.conclusion-section-gesprekken-voeren-nederlands {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.conclusion-content-gesprekken-voeren-nederlands {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conclusion-title-gesprekken-voeren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
}

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

.conclusion-tips-gesprekken-voeren-nederlands {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.tips-heading-gesprekken-voeren-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.tips-list-gesprekken-voeren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.tips-item-gesprekken-voeren-nederlands {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.tips-item-gesprekken-voeren-nederlands::before {
  content: '';
  color: #3b82f6;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.conclusion-cta-gesprekken-voeren-nederlands {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-text-gesprekken-voeren-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
}

.cta-button-gesprekken-voeren-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #0f172a;
  font-weight: 600;
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  max-width: fit-content;
  margin: 0 auto;
}

.cta-button-gesprekken-voeren-nederlands:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.disclaimer-section-gesprekken-voeren-nederlands {
  width: 100%;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #0f172a;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-gesprekken-voeren-nederlands {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
}

.disclaimer-title-gesprekken-voeren-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 1rem;
}

.disclaimer-text-gesprekken-voeren-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.related-section-gesprekken-voeren-nederlands {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.related-header-gesprekken-voeren-nederlands {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

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

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

.related-card-gesprekken-voeren-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

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

.related-card-title-gesprekken-voeren-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-gesprekken-voeren-nederlands {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  flex-grow: 1;
}

.related-card-link-gesprekken-voeren-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.related-card-link-gesprekken-voeren-nederlands:hover {
  color: #2563eb;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-wrapper-gesprekken-voeren-nederlands,
  .introduction-wrapper-gesprekken-voeren-nederlands,
  .content-wrapper-one-gesprekken-voeren-nederlands,
  .content-wrapper-two-gesprekken-voeren-nederlands,
  .practical-wrapper-gesprekken-voeren-nederlands {
    flex-direction: column;
  }

  .hero-image-gesprekken-voeren-nederlands,
  .introduction-image-gesprekken-voeren-nederlands,
  .content-image-one-gesprekken-voeren-nederlands,
  .content-image-two-gesprekken-voeren-nederlands,
  .practical-image-gesprekken-voeren-nederlands,
  .content-text-one-gesprekken-voeren-nederlands,
  .introduction-text-gesprekken-voeren-nederlands,
  .content-text-two-gesprekken-voeren-nederlands,
  .practical-text-gesprekken-voeren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .techniques-card-gesprekken-voeren-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }

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

.main-boodschappen-nederlandse-markt {
  width: 100%;
  overflow-x: hidden;
}

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

.hero-section-boodschappen-nederlandse-markt {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

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

.breadcrumb-link-boodschappen-nederlandse-markt {
  color: #60a5fa;
  transition: color 0.2s ease;
}

.breadcrumb-link-boodschappen-nederlandse-markt:hover {
  color: #bfdbfe;
}

.breadcrumb-separator-boodschappen-nederlandse-markt {
  color: #64748b;
}

.breadcrumb-current-boodschappen-nederlandse-markt {
  color: #bfdbfe;
}

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

.hero-text-wrapper-boodschappen-nederlandse-markt {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-image-wrapper-boodschappen-nederlandse-markt {
  flex: 1 1 300px;
  max-width: 50%;
}

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

.hero-subtitle-boodschappen-nederlandse-markt {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #60a5fa;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

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

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

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

.hero-stats-boodschappen-nederlandse-markt {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.stat-number-boodschappen-nederlandse-markt {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-boodschappen-nederlandse-markt {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-boodschappen-nederlandse-markt {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .hero-text-wrapper-boodschappen-nederlandse-markt {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-wrapper-boodschappen-nederlandse-markt {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

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

.intro-content-boodschappen-nederlandse-markt {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-boodschappen-nederlandse-markt {
  flex: 1 1 300px;
  max-width: 50%;
}

.intro-image-boodschappen-nederlandse-markt {
  flex: 1 1 300px;
  max-width: 50%;
}

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

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

.intro-image-asset-boodschappen-nederlandse-markt {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-text-boodschappen-nederlandse-markt {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-boodschappen-nederlandse-markt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.phrases-section-boodschappen-nederlandse-markt {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.phrases-header-boodschappen-nederlandse-markt {
  text-align: center;
  margin-bottom: 3rem;
}

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

.phrases-title-boodschappen-nederlandse-markt {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.phrases-subtitle-boodschappen-nederlandse-markt {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.phrases-grid-boodschappen-nederlandse-markt {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.phrase-card-boodschappen-nederlandse-markt {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.phrase-card-boodschappen-nederlandse-markt:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

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

.phrase-card-title-boodschappen-nederlandse-markt {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 600;
}

.phrase-list-boodschappen-nederlandse-markt {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phrase-item-boodschappen-nederlandse-markt {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.phrase-item-boodschappen-nederlandse-markt strong {
  color: #bfdbfe;
  font-weight: 600;
}

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

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

.scenarios-header-boodschappen-nederlandse-markt {
  text-align: center;
  margin-bottom: 3rem;
}

.scenarios-title-boodschappen-nederlandse-markt {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.scenarios-wrapper-boodschappen-nederlandse-markt {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.scenario-text-boodschappen-nederlandse-markt {
  flex: 1 1 300px;
  max-width: 50%;
}

.scenario-image-boodschappen-nederlandse-markt {
  flex: 1 1 300px;
  max-width: 50%;
}

.scenario-subtitle-boodschappen-nederlandse-markt {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.scenario-subtitle-boodschappen-nederlandse-markt:first-child {
  margin-top: 0;
}

.conversation-boodschappen-nederlandse-markt {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
  margin-bottom: 1.5rem;
}

.dialogue-boodschappen-nederlandse-markt {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.dialogue-boodschappen-nederlandse-markt:last-child {
  margin-bottom: 0;
}

.scenario-image-asset-boodschappen-nederlandse-markt {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .scenario-text-boodschappen-nederlandse-markt {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .scenario-image-boodschappen-nederlandse-markt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.vocabulary-section-boodschappen-nederlandse-markt {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.vocabulary-header-boodschappen-nederlandse-markt {
  text-align: center;
  margin-bottom: 3rem;
}

.vocabulary-title-boodschappen-nederlandse-markt {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.vocabulary-subtitle-boodschappen-nederlandse-markt {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.vocabulary-wrapper-boodschappen-nederlandse-markt {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 3vw, 3rem);
}

.vocab-column-boodschappen-nederlandse-markt {
  flex: 1 1 250px;
  max-width: 350px;
}

.vocab-category-boodschappen-nederlandse-markt {
  font-size: 1.125rem;
  color: #60a5fa;
  font-weight: 600;
  margin-bottom: 1rem;
}

.vocab-list-boodschappen-nederlandse-markt {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vocab-item-boodschappen-nederlandse-markt {
  font-size: 0.9375rem;
  color: #cbd5e1;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.vocab-item-boodschappen-nederlandse-markt strong {
  color: #bfdbfe;
  font-weight: 600;
}

@media (max-width: 768px) {
  .vocab-column-boodschappen-nederlandse-markt {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

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

.tips-steps-boodschappen-nederlandse-markt {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tips-step-boodschappen-nederlandse-markt {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  align-items: flex-start;
}

.tips-step-number-boodschappen-nederlandse-markt {
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.tips-step-content-boodschappen-nederlandse-markt {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tips-step-title-boodschappen-nederlandse-markt {
  font-size: 1.125rem;
  color: #0f172a;
  font-weight: 600;
}

.tips-step-text-boodschappen-nederlandse-markt {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.quote-section-boodschappen-nederlandse-markt {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-boodschappen-nederlandse-markt {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #60a5fa;
  background: rgba(59, 130, 246, 0.1);
}

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

.quote-author-boodschappen-nederlandse-markt {
  font-size: 0.875rem;
  color: #bfdbfe;
  font-style: normal;
}

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

.culture-wrapper-boodschappen-nederlandse-markt {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.culture-image-boodschappen-nederlandse-markt {
  flex: 1 1 300px;
  max-width: 50%;
}

.culture-text-boodschappen-nederlandse-markt {
  flex: 1 1 300px;
  max-width: 50%;
}

.culture-image-asset-boodschappen-nederlandse-markt {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.culture-title-boodschappen-nederlandse-markt {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.culture-paragraph-boodschappen-nederlandse-markt {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.culture-highlight-boodschappen-nederlandse-markt {
  padding: 1.5rem;
  background: #f0fdf4;
  border-radius: 8px;
  border-left: 4px solid #10b981;
  margin-top: 1.5rem;
}

.highlight-text-boodschappen-nederlandse-markt {
  font-size: 0.9375rem;
  color: #166534;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .culture-image-boodschappen-nederlandse-markt {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .culture-text-boodschappen-nederlandse-markt {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.conclusion-text-boodschappen-nederlandse-markt {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.conclusion-highlights-boodschappen-nederlandse-markt {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2.5rem 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-item-boodschappen-nederlandse-markt {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: #cbd5e1;
}

.highlight-item-boodschappen-nederlandse-markt i {
  color: #10b981;
  flex-shrink: 0;
  font-size: 1.125rem;
  margin-top: 0.125rem;
}

.conclusion-cta-boodschappen-nederlandse-markt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  background: #3b82f6;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 1.5rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.conclusion-cta-boodschappen-nederlandse-markt:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

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

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

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

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

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

.related-card-boodschappen-nederlandse-markt {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-content-boodschappen-nederlandse-markt {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  width: 100%;
  transition: all 0.3s ease;
}

.related-card-boodschappen-nederlandse-markt:hover .related-card-content-boodschappen-nederlandse-markt {
  background: #f1f5f9;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

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

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

.related-card-link-boodschappen-nederlandse-markt {
  font-size: 0.875rem;
  color: #3b82f6;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

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

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

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

.disclaimer-title-boodschappen-nederlandse-markt {
  font-size: 1.125rem;
  color: #92400e;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-title-boodschappen-nederlandse-markt i {
  color: #f59e0b;
  font-size: 1.25rem;
}

.disclaimer-text-boodschappen-nederlandse-markt {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #7c2d12;
  line-height: 1.7;
}

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

  .intro-section-boodschappen-nederlandse-markt {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .phrases-section-boodschappen-nederlandse-markt {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .scenarios-section-boodschappen-nederlandse-markt {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .vocabulary-section-boodschappen-nederlandse-markt {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .tips-section-boodschappen-nederlandse-markt {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .quote-section-boodschappen-nederlandse-markt {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .culture-section-boodschappen-nederlandse-markt {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .conclusion-section-boodschappen-nederlandse-markt {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-boodschappen-nederlandse-markt {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-stats-boodschappen-nederlandse-markt {
    gap: 3rem;
  }

  .stat-item-boodschappen-nederlandse-markt {
    flex: 1;
  }

  .vocabulary-wrapper-boodschappen-nederlandse-markt {
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.main-reizen-nederland-uitdrukkingen {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
}

.main-reizen-nederland-uitdrukkingen section {
  width: 100%;
  overflow: hidden;
}

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

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

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

.hero-text-block-reizen-nederland-uitdrukkingen {
  flex: 1 1 400px;
  max-width: 50%;
}

.hero-image-block-reizen-nederland-uitdrukkingen {
  flex: 1 1 400px;
  max-width: 50%;
}

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

.hero-subtitle-reizen-nederland-uitdrukkingen {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-description-reizen-nederland-uitdrukkingen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-image-reizen-nederland-uitdrukkingen {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.hero-stats-reizen-nederland-uitdrukkingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2.5rem;
}

.stat-item-reizen-nederland-uitdrukkingen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-reizen-nederland-uitdrukkingen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-reizen-nederland-uitdrukkingen {
  font-size: 0.875rem;
  color: #bfdbfe;
  font-weight: 500;
}

.breadcrumbs-reizen-nederland-uitdrukkingen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  color: #94a3b8;
}

.breadcrumb-link-reizen-nederland-uitdrukkingen {
  color: var(--color-secondary);
  transition: color 0.3s ease;
}

.breadcrumb-link-reizen-nederland-uitdrukkingen:hover {
  color: var(--color-primary);
}

.breadcrumb-separator-reizen-nederland-uitdrukkingen {
  color: #64748b;
  margin: 0 0.25rem;
}

.breadcrumb-current-reizen-nederland-uitdrukkingen {
  color: #cbd5e1;
}

.article-meta-reizen-nederland-uitdrukkingen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

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

.meta-badge-reizen-nederland-uitdrukkingen i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-text-block-reizen-nederland-uitdrukkingen,
  .hero-image-block-reizen-nederland-uitdrukkingen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-content-reizen-nederland-uitdrukkingen {
    flex-direction: column;
  }
}

.intro-section-reizen-nederland-uitdrukkingen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.intro-wrapper-reizen-nederland-uitdrukkingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.intro-text-reizen-nederland-uitdrukkingen {
  flex: 1 1 400px;
  max-width: 50%;
}

.intro-image-reizen-nederland-uitdrukkingen {
  flex: 1 1 400px;
  max-width: 50%;
}

.intro-title-reizen-nederland-uitdrukkingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-reizen-nederland-uitdrukkingen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-img-reizen-nederland-uitdrukkingen {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

@media (max-width: 768px) {
  .intro-text-reizen-nederland-uitdrukkingen,
  .intro-image-reizen-nederland-uitdrukkingen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-wrapper-reizen-nederland-uitdrukkingen {
    flex-direction: column;
  }
}

.content-section-one-reizen-nederland-uitdrukkingen,
.content-section-two-reizen-nederland-uitdrukkingen,
.content-section-three-reizen-nederland-uitdrukkingen,
.content-section-four-reizen-nederland-uitdrukkingen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.content-section-two-reizen-nederland-uitdrukkingen,
.content-section-four-reizen-nederland-uitdrukkingen {
  background: var(--color-bg-secondary);
}

.section-header-reizen-nederland-uitdrukkingen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-reizen-nederland-uitdrukkingen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-section-title-reizen-nederland-uitdrukkingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-reizen-nederland-uitdrukkingen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.content-wrapper-reizen-nederland-uitdrukkingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.content-text-reizen-nederland-uitdrukkingen {
  flex: 1 1 400px;
  max-width: 50%;
}

.content-image-reizen-nederland-uitdrukkingen {
  flex: 1 1 400px;
  max-width: 50%;
}

.content-subheading-reizen-nederland-uitdrukkingen {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.expression-list-reizen-nederland-uitdrukkingen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.expression-item-reizen-nederland-uitdrukkingen {
  padding: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: 6px;
}

.expression-dutch-reizen-nederland-uitdrukkingen {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.expression-english-reizen-nederland-uitdrukkingen {
  font-size: 0.9375rem;
  color: #94a3b8;
  font-style: italic;
}

.featured-quote-reizen-nederland-uitdrukkingen {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  margin: 2rem 0;
  border-radius: 6px;
}

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

.quote-author-reizen-nederland-uitdrukkingen {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
}

.content-img-reizen-nederland-uitdrukkingen {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

@media (max-width: 768px) {
  .content-text-reizen-nederland-uitdrukkingen,
  .content-image-reizen-nederland-uitdrukkingen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-wrapper-reizen-nederland-uitdrukkingen {
    flex-direction: column;
  }
}

.process-section-reizen-nederland-uitdrukkingen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.process-title-reizen-nederland-uitdrukkingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.2;
}

.process-steps-reizen-nederland-uitdrukkingen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-reizen-nederland-uitdrukkingen {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.process-step-number-reizen-nederland-uitdrukkingen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.process-step-content-reizen-nederland-uitdrukkingen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.process-step-title-reizen-nederland-uitdrukkingen {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.process-step-text-reizen-nederland-uitdrukkingen {
  font-size: 1rem;
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step-reizen-nederland-uitdrukkingen {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .process-step-number-reizen-nederland-uitdrukkingen {
    min-width: auto;
  }
}

.conclusion-section-reizen-nederland-uitdrukkingen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.conclusion-content-reizen-nederland-uitdrukkingen {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.conclusion-title-reizen-nederland-uitdrukkingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-tips-reizen-nederland-uitdrukkingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tip-card-reizen-nederland-uitdrukkingen {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
}

.tip-card-reizen-nederland-uitdrukkingen:hover {
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
}

.tip-card-reizen-nederland-uitdrukkingen i {
  font-size: 2rem;
  color: var(--color-primary);
}

.tip-title-reizen-nederland-uitdrukkingen {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.tip-text-reizen-nederland-uitdrukkingen {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.cta-box-reizen-nederland-uitdrukkingen {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-bright));
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-reizen-nederland-uitdrukkingen {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-description-reizen-nederland-uitdrukkingen {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-reizen-nederland-uitdrukkingen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(2rem, 3vw, 3rem);
  background: #ffffff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-reizen-nederland-uitdrukkingen:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  background: #f1f5f9;
}

@media (max-width: 768px) {
  .conclusion-tips-reizen-nederland-uitdrukkingen {
    flex-direction: column;
  }

  .tip-card-reizen-nederland-uitdrukkingen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-reizen-nederland-uitdrukkingen {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.disclaimer-content-reizen-nederland-uitdrukkingen {
  max-width: 900px;
}

.disclaimer-title-reizen-nederland-uitdrukkingen {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-reizen-nederland-uitdrukkingen {
  font-size: 0.95rem;
  color: #bfdbfe;
  line-height: 1.7;
}

.related-section-reizen-nederland-uitdrukkingen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.related-title-reizen-nederland-uitdrukkingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.2;
}

.related-cards-reizen-nederland-uitdrukkingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.related-card-reizen-nederland-uitdrukkingen {
  flex: 1 1 300px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.15);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.related-card-reizen-nederland-uitdrukkingen:hover {
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.related-card-title-reizen-nederland-uitdrukkingen {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-reizen-nederland-uitdrukkingen {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-reizen-nederland-uitdrukkingen {
  font-size: 0.9375rem;
  color: var(--color-secondary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.related-card-reizen-nederland-uitdrukkingen:hover .related-card-link-reizen-nederland-uitdrukkingen {
  color: var(--color-primary);
}

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

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

  .intro-section-reizen-nederland-uitdrukkingen,
  .content-section-one-reizen-nederland-uitdrukkingen,
  .content-section-two-reizen-nederland-uitdrukkingen,
  .content-section-three-reizen-nederland-uitdrukkingen,
  .content-section-four-reizen-nederland-uitdrukkingen,
  .process-section-reizen-nederland-uitdrukkingen,
  .conclusion-section-reizen-nederland-uitdrukkingen,
  .related-section-reizen-nederland-uitdrukkingen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-reizen-nederland-uitdrukkingen {
    padding: 6rem 0 8rem;
  }

  .intro-section-reizen-nederland-uitdrukkingen,
  .content-section-one-reizen-nederland-uitdrukkingen,
  .content-section-two-reizen-nederland-uitdrukkingen,
  .content-section-three-reizen-nederland-uitdrukkingen,
  .content-section-four-reizen-nederland-uitdrukkingen,
  .process-section-reizen-nederland-uitdrukkingen,
  .conclusion-section-reizen-nederland-uitdrukkingen,
  .related-section-reizen-nederland-uitdrukkingen {
    padding: 8rem 0;
  }
}

.main-reizen-nederland-uitdrukkingen a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.main-reizen-nederland-uitdrukkingen a {
  transition: color 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .main-reizen-nederland-uitdrukkingen * {
    animation: none !important;
    transition: none !important;
  }
}

.main-nederlands-restaurants-eten {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

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

.hero-text-block-nederlands-restaurants-eten {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-image-block-nederlands-restaurants-eten {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.hero-title-nederlands-restaurants-eten {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
}

.hero-subtitle-nederlands-restaurants-eten {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.hero-image-nederlands-restaurants-eten {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  max-height: 400px;
  object-fit: cover;
}

.hero-meta-nederlands-restaurants-eten {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.meta-badge-nederlands-restaurants-eten {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.meta-badge-nederlands-restaurants-eten i {
  color: var(--color-primary);
  font-size: 1rem;
}

.breadcrumbs-nederlands-restaurants-eten {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-nederlands-restaurants-eten {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-nederlands-restaurants-eten:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.breadcrumb-separator-nederlands-restaurants-eten {
  color: var(--color-text-muted);
  margin: 0 0.25rem;
}

.breadcrumb-current-nederlands-restaurants-eten {
  color: var(--color-text-muted);
}

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

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

.intro-content-Nederlands-restaurants-eten {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-block-nederlands-restaurants-eten {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-image-block-nederlands-restaurants-eten {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.intro-heading-nederlands-restaurants-eten {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.intro-paragraph-nederlands-restaurants-eten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.intro-image-nederlands-restaurants-eten {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  max-height: 350px;
  object-fit: cover;
}

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

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

.vocabulary-header-nederlands-restaurants-eten {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-nederlands-restaurants-eten {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.vocabulary-title-nederlands-restaurants-eten {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.vocabulary-subtitle-nederlands-restaurants-eten {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.vocabulary-text-block-nederlands-restaurants-eten {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vocabulary-image-block-nederlands-restaurants-eten {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.vocabulary-subheading-nederlands-restaurants-eten {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.vocabulary-list-nederlands-restaurants-eten {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vocabulary-item-nederlands-restaurants-eten {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
  align-items: flex-start;
}

.vocab-word-nederlands-restaurants-eten {
  font-weight: 600;
  color: var(--color-primary);
  min-width: 150px;
  flex-shrink: 0;
}

.vocab-translation-nederlands-restaurants-eten {
  color: var(--color-text-secondary);
  font-style: italic;
}

.vocabulary-image-nederlands-restaurants-eten {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  max-height: 350px;
  object-fit: cover;
}

.quote-box-nederlands-restaurants-eten {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

.quote-text-nederlands-restaurants-eten {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-nederlands-restaurants-eten {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

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

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

.phrases-header-nederlands-restaurants-eten {
  text-align: center;
  margin-bottom: 3rem;
}

.phrases-title-nederlands-restaurants-eten {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

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

.phrases-card-nederlands-restaurants-eten {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.phrases-card-nederlands-restaurants-eten:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.phrases-card-title-nederlands-restaurants-eten {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.phrases-card-list-nederlands-restaurants-eten {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phrase-item-nederlands-restaurants-eten {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding: 0.5rem 0;
}

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

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

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

.conversation-text-block-nederlands-restaurants-eten {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conversation-image-block-nederlands-restaurants-eten {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.conversation-title-nederlands-restaurants-eten {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.dialogue-box-nederlands-restaurants-eten {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.dialogue-exchange-nederlands-restaurants-eten {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dialogue-speaker-nederlands-restaurants-eten {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.conversation-note-nederlands-restaurants-eten {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  padding: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent-bright);
}

.conversation-image-nederlands-restaurants-eten {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  max-height: 350px;
  object-fit: cover;
}

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

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

.cultural-wrapper-nederlands-restaurants-eten {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.cultural-image-block-nederlands-restaurants-eten {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.cultural-text-block-nederlands-restaurants-eten {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cultural-image-nederlands-restaurants-eten {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  max-height: 350px;
  object-fit: cover;
}

.cultural-title-nederlands-restaurants-eten {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.cultural-paragraph-nederlands-restaurants-eten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.cultural-tips-nederlands-restaurants-eten {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tip-item-nederlands-restaurants-eten {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
}

.tip-title-nederlands-restaurants-eten {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
}

.tip-text-nederlands-restaurants-eten {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.common-foods-section-nederlands-restaurants-eten {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.common-foods-header-nederlands-restaurants-eten {
  text-align: center;
  margin-bottom: 3rem;
}

.common-foods-title-nederlands-restaurants-eten {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.common-foods-subtitle-nederlands-restaurants-eten {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.foods-grid-nederlands-restaurants-eten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.food-card-nederlands-restaurants-eten {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.food-card-nederlands-restaurants-eten:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.food-card-content-nederlands-restaurants-eten {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.food-name-nederlands-restaurants-eten {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-primary);
}

.food-description-nederlands-restaurants-eten {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

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

.practice-text-block-nederlands-restaurants-eten {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-image-block-nederlands-restaurants-eten {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.practice-title-nederlands-restaurants-eten {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.tips-list-nederlands-restaurants-eten {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tip-block-nederlands-restaurants-eten {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  align-items: flex-start;
}

.tip-number-nederlands-restaurants-eten {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.tip-content-nederlands-restaurants-eten {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.tip-heading-nederlands-restaurants-eten {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.tip-body-nederlands-restaurants-eten {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.practice-image-nederlands-restaurants-eten {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  max-height: 350px;
  object-fit: cover;
}

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

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

.conclusion-content-nederlands-restaurants-eten {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-nederlands-restaurants-eten {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.conclusion-paragraph-nederlands-restaurants-eten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.cta-box-nederlands-restaurants-eten {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin-top: 1rem;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
}

.cta-title-nederlands-restaurants-eten {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-nederlands-restaurants-eten {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
}

.cta-button-nederlands-restaurants-eten {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: #ffffff;
  color: var(--color-primary);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
}

.cta-button-nederlands-restaurants-eten:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

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

.disclaimer-content-nederlands-restaurants-eten {
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-nederlands-restaurants-eten {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.disclaimer-text-nederlands-restaurants-eten {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

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

.related-title-nederlands-restaurants-eten {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.related-subtitle-nederlands-restaurants-eten {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

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

.related-card-nederlands-restaurants-eten:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.related-card-content-nederlands-restaurants-eten {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.related-card-title-nederlands-restaurants-eten {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.related-card-description-nederlands-restaurants-eten {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-nederlands-restaurants-eten {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.related-card-link-nederlands-restaurants-eten:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-nederlands-restaurants-eten,
  .intro-content-Nederlands-restaurants-eten,
  .vocabulary-content-nederlands-restaurants-eten,
  .conversation-content-nederlands-restaurants-eten,
  .cultural-wrapper-nederlands-restaurants-eten,
  .practice-content-nederlands-restaurants-eten {
    flex-direction: column;
  }

  .hero-text-block-nederlands-restaurants-eten,
  .hero-image-block-nederlands-restaurants-eten,
  .intro-text-block-nederlands-restaurants-eten,
  .intro-image-block-nederlands-restaurants-eten,
  .vocabulary-text-block-nederlands-restaurants-eten,
  .vocabulary-image-block-nederlands-restaurants-eten,
  .conversation-text-block-nederlands-restaurants-eten,
  .conversation-image-block-nederlands-restaurants-eten,
  .cultural-image-block-nederlands-restaurants-eten,
  .cultural-text-block-nederlands-restaurants-eten,
  .practice-text-block-nederlands-restaurants-eten,
  .practice-image-block-nederlands-restaurants-eten {
    flex: 1 1 100%;
  }

  .foods-grid-nederlands-restaurants-eten,
  .phrases-cards-nederlands-restaurants-eten,
  .related-cards-nederlands-restaurants-eten {
    flex-direction: column;
  }

  .food-card-nederlands-restaurants-eten,
  .phrases-card-nederlands-restaurants-eten,
  .related-card-nederlands-restaurants-eten {
    max-width: none;
  }

  .tip-block-nederlands-restaurants-eten {
    flex-direction: column;
    gap: 1rem;
  }

  .conclusion-content-nederlands-restaurants-eten {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-nederlands-restaurants-eten {
    flex-direction: column;
    gap: 0.25rem;
  }

  .breadcrumb-separator-nederlands-restaurants-eten {
    display: none;
  }

  .vocabulary-item-nederlands-restaurants-eten {
    flex-direction: column;
    gap: 0.5rem;
  }

  .vocab-word-nederlands-restaurants-eten {
    min-width: auto;
  }
}

.main-jezelf-introduceren-nederlands {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

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

.hero-title-jezelf-introduceren-nederlands {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-jezelf-introduceren-nederlands {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-description-jezelf-introduceren-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-meta-jezelf-introduceren-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-jezelf-introduceren-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.meta-badge-jezelf-introduceren-nederlands i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

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

.hero-image-jezelf-introduceren-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.breadcrumbs-jezelf-introduceren-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-jezelf-introduceren-nederlands {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.breadcrumb-link-jezelf-introduceren-nederlands:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.breadcrumb-separator-jezelf-introduceren-nederlands {
  color: var(--color-text-muted);
}

.breadcrumb-current-jezelf-introduceren-nederlands {
  color: var(--color-text-muted);
}

.introduction-section-jezelf-introduceren-nederlands {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.introduction-wrapper-jezelf-introduceren-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-jezelf-introduceren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.introduction-description-jezelf-introduceren-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.introduction-text-jezelf-introduceren-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.introduction-image-jezelf-introduceren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-img-jezelf-introduceren-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.basics-title-jezelf-introduceren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.basics-subtitle-jezelf-introduceren-nederlands {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.basics-content-wrapper-jezelf-introduceren-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-top: 3rem;
}

.basics-text-jezelf-introduceren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.basics-intro-jezelf-introduceren-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.expression-list-jezelf-introduceren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.expression-item-jezelf-introduceren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.expression-dutch-jezelf-introduceren-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-primary);
}

.expression-english-jezelf-introduceren-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.basics-note-jezelf-introduceren-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(96, 165, 250, 0.1);
  border-radius: var(--radius-md);
}

.basics-image-jezelf-introduceren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.basics-image-img-jezelf-introduceren-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.context-section-jezelf-introduceren-nederlands {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

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

.context-subtitle-jezelf-introduceren-nederlands {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.context-wrapper-jezelf-introduceren-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-top: 3rem;
}

.context-text-jezelf-introduceren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.context-intro-jezelf-introduceren-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.situation-card-jezelf-introduceren-nederlands {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.situation-title-jezelf-introduceren-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.situation-text-jezelf-introduceren-nederlands {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.context-image-jezelf-introduceren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.context-image-img-jezelf-introduceren-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.details-title-jezelf-introduceren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.details-subtitle-jezelf-introduceren-nederlands {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.details-wrapper-jezelf-introduceren-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  margin-top: 3rem;
}

.details-text-jezelf-introduceren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-intro-jezelf-introduceren-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.details-content-jezelf-introduceren-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.details-list-jezelf-introduceren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.details-list-item-jezelf-introduceren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-md);
}

.list-label-jezelf-introduceren-nederlands {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
}

.list-text-jezelf-introduceren-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.details-note-jezelf-introduceren-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(96, 165, 250, 0.1);
  border-radius: var(--radius-md);
}

.details-image-jezelf-introduceren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.details-image-img-jezelf-introduceren-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.tips-section-jezelf-introduceren-nederlands {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

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

.tips-subtitle-jezelf-introduceren-nederlands {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.tips-cards-jezelf-introduceren-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 3rem;
}

.tips-card-jezelf-introduceren-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tips-card-jezelf-introduceren-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tips-card-icon-jezelf-introduceren-nederlands {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.tips-card-title-jezelf-introduceren-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.tips-card-text-jezelf-introduceren-nederlands {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tips-card-jezelf-introduceren-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.practice-wrapper-jezelf-introduceren-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practice-text-jezelf-introduceren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-jezelf-introduceren-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.practice-intro-jezelf-introduceren-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.dialogue-box-jezelf-introduceren-nederlands {
  background: rgba(59, 130, 246, 0.08);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  border-left: 4px solid var(--color-primary);
}

.dialogue-title-jezelf-introduceren-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.dialogue-exchange-jezelf-introduceren-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dialogue-person-jezelf-introduceren-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.dialogue-person-jezelf-introduceren-nederlands strong {
  color: var(--color-primary);
  font-weight: 600;
}

.practice-image-jezelf-introduceren-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-img-jezelf-introduceren-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.conclusion-section-jezelf-introduceren-nederlands {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

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

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

.featured-quote-jezelf-introduceren-nederlands {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: #ffffff;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.conclusion-text-jezelf-introduceren-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-jezelf-introduceren-nederlands {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin-top: 3rem;
}

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

.cta-text-jezelf-introduceren-nederlands {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-jezelf-introduceren-nederlands {
  background: #ffffff;
  color: var(--color-primary);
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  gap: 0.5rem;
}

.btn-jezelf-introduceren-nederlands:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.disclaimer-content-jezelf-introduceren-nederlands {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-title-jezelf-introduceren-nederlands {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-jezelf-introduceren-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.related-section-jezelf-introduceren-nederlands {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.related-title-jezelf-introduceren-nederlands {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  text-align: center;
}

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

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

.related-card-jezelf-introduceren-nederlands {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.related-card-image-jezelf-introduceren-nederlands {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-jezelf-introduceren-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-jezelf-introduceren-nederlands {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-jezelf-introduceren-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-jezelf-introduceren-nederlands:hover {
  color: var(--color-secondary);
  gap: 0.75rem;
}

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

  .hero-text-block-jezelf-introducieren-nederlands,
  .hero-image-block-jezelf-introduceren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .introduction-wrapper-jezelf-introduceren-nederlands {
    flex-direction: column;
  }

  .introduction-text-jezelf-introduceren-nederlands,
  .introduction-image-jezelf-introduceren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .basics-content-wrapper-jezelf-introduceren-nederlands {
    flex-direction: column;
  }

  .basics-text-jezelf-introduceren-nederlands,
  .basics-image-jezelf-introduceren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .context-wrapper-jezelf-introduceren-nederlands {
    flex-direction: column;
  }

  .context-text-jezelf-introduceren-nederlands,
  .context-image-jezelf-introduceren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .details-wrapper-jezelf-introduceren-nederlands {
    flex-direction: column;
  }

  .details-text-jezelf-introduceren-nederlands,
  .details-image-jezelf-introduceren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-wrapper-jezelf-introduceren-nederlands {
    flex-direction: column;
  }

  .practice-text-jezelf-introduceren-nederlands,
  .practice-image-jezelf-introduceren-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

@media (min-width: 768px) {
  .hero-section-jezelf-introduceren-nederlands {
    padding: 5rem 0;
  }

  .introduction-section-jezelf-introduceren-nederlands {
    padding: 5rem 0;
  }

  .basics-section-jezelf-introduceren-nederlands {
    padding: 5rem 0;
  }

  .context-section-jezelf-introduceren-nederlands {
    padding: 5rem 0;
  }

  .details-section-jezelf-introduceren-nederlands {
    padding: 5rem 0;
  }

  .tips-section-jezelf-introduceren-nederlands {
    padding: 5rem 0;
  }

  .practice-section-jezelf-introduceren-nederlands {
    padding: 5rem 0;
  }

  .conclusion-section-jezelf-introduceren-nederlands {
    padding: 5rem 0;
  }

  .disclaimer-section-jezelf-introduceren-nederlands {
    padding: 5rem 0;
  }

  .related-section-jezelf-introduceren-nederlands {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-jezelf-introduceren-nederlands {
    padding: 6rem 0;
  }

  .introduction-section-jezelf-introduceren-nederlands {
    padding: 6rem 0;
  }

  .basics-section-jezelf-introduceren-nederlands {
    padding: 6rem 0;
  }

  .context-section-jezelf-introduceren-nederlands {
    padding: 6rem 0;
  }

  .details-section-jezelf-introduceren-nederlands {
    padding: 6rem 0;
  }

  .tips-section-jezelf-introduceren-nederlands {
    padding: 6rem 0;
  }

  .practice-section-jezelf-introduceren-nederlands {
    padding: 6rem 0;
  }

  .conclusion-section-jezelf-introduceren-nederlands {
    padding: 6rem 0;
  }

  .disclaimer-section-jezelf-introduceren-nederlands {
    padding: 6rem 0;
  }

  .related-section-jezelf-introduceren-nederlands {
    padding: 6rem 0;
  }
}

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

.dutch-learning-journey-about {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-text-primary);
}

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

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

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

.hero-introduction-header-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-introduction-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  font-family: var(--font-heading);
}

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

.hero-introduction-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1rem, 3vw, 2rem) 0;
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.section-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-step-about {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.timeline-step-about:hover {
  background: rgba(59, 130, 246, 0.12);
  transform: translateX(8px);
}

.timeline-step-number-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  font-family: var(--font-heading);
}

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

.timeline-step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
}

.timeline-step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

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

.approach-visual-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1rem, 3vw, 2rem) auto;
  box-shadow: var(--shadow-lg);
}

.approach-text-block-about {
  max-width: 900px;
  margin: 0 auto;
}

.approach-paragraph-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

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

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

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

.principle-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.principle-card-about:hover {
  transform: translateY(-8px);
  background: rgba(59, 130, 246, 0.15);
  box-shadow: var(--shadow-lg);
}

.principle-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-secondary);
  font-size: 1.75rem;
  flex-shrink: 0;
}

.principle-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
}

.principle-description-about {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.vision-statement-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.vision-quote-block-about {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  border-left: 5px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
  max-width: 900px;
  text-align: center;
}

.vision-quote-text-about {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.vision-quote-author-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  font-style: normal;
}

.vision-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 800px;
  text-align: center;
}

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

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

.commitment-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1rem, 3vw, 2rem) auto;
  box-shadow: var(--shadow-lg);
}

.commitment-text-about {
  max-width: 900px;
  margin: 0 auto;
}

.commitment-paragraph-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
}

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

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.disclaimer-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
  margin: 0;
}

.disclaimer-text-about {
  font-size: clamp(0.8125rem, 0.95vw + 0.25rem, 0.9375rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline-step-about {
    gap: 1.25rem;
  }

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

  .hero-introduction-image-about,
  .approach-visual-about,
  .commitment-image-about {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

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

  .timeline-step-number-about {
    font-size: 1.75rem;
    min-width: auto;
  }

  .vision-quote-block-about {
    border-left-width: 4px;
    padding: 1.5rem 1.25rem;
  }

  .disclaimer-header-about {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

.legal-docs {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.legal-docs .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

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

.legal-docs-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.legal-docs-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-style: italic;
}

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

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

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

.legal-docs-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-secondary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-docs-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.legal-docs-section li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.legal-docs-contact {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.legal-docs-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-docs-contact h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-secondary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.legal-docs-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.legal-docs-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-docs-contact-label {
  font-weight: 600;
  color: var(--color-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.legal-docs-contact-value {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

@media (min-width: 768px) {
  .legal-docs-hero {
    padding: 5rem 0;
  }

  .legal-docs-content {
    padding: 5rem 0;
  }

  .legal-docs-contact {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .legal-docs-hero {
    padding: 6rem 0;
  }

  .legal-docs-content {
    padding: 6rem 0;
  }

  .legal-docs-contact {
    padding: 6rem 0;
  }
}

.thank-page {
  width: 100%;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 8rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background: rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-secondary);
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  font-family: var(--font-primary);
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  font-family: var(--font-primary);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  width: 100%;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
  text-align: left;
}

.thank-next-steps h3 {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.steps-list li {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(28px, 6vw, 36px);
  height: clamp(28px, 6vw, 36px);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  border-radius: 50%;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(5rem, 10vw, 10rem) 0;
    min-height: auto;
  }

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

  .thank-next-steps {
    text-align: center;
  }

  .steps-list {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .steps-list li {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(6rem, 12vw, 12rem) 0;
  }

  .thank-content {
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }

  .thank-next-steps {
    padding: clamp(2rem, 4vw, 2.5rem);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3rem;
  }
}

  .error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
  }

  
  .error-section {
    background: var(--color-bg-primary);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
    position: relative;
  }

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

  
  .error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(1.5rem, 5vw, 3rem);
  }

  
  .error-code-wrapper {
    position: relative;
    margin: clamp(1rem, 3vw, 2rem) 0;
  }

  .error-code {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: clamp(-0.05em, -1vw, -0.1em);
    line-height: 1;
    margin: 0;
    text-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    animation: float-animation 3s ease-in-out infinite;
  }

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

  .error-code-line {
    width: clamp(80px, 30vw, 200px);
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    margin: clamp(1rem, 3vw, 1.5rem) auto 0;
    border-radius: var(--radius-xl);
  }

  
  .error-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: clamp(0.5rem, 2vw, 1rem) 0;
    line-height: 1.2;
  }

  
  .error-description {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .error-hints {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin: clamp(1.5rem, 3vw, 2.5rem) 0;
    width: 100%;
  }

  
  .hint-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(1rem, 2vw, 1.5rem);
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
  }

  .hint-item:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateY(-4px);
  }

  .hint-item i {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-secondary);
  }

  .hint-item p {
    font-size: clamp(0.8125rem, 1vw + 0.4rem, 1rem);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
  }

  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    line-height: 1.5;
    margin: clamp(1rem, 2vw, 1.5rem) 0;
  }

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

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

  .btn-primary:active {
    transform: translateY(0);
  }

  
  .error-decoration {
    font-size: clamp(3rem, 8vw, 5rem);
    color: rgba(59, 130, 246, 0.1);
    animation: float-slow 4s ease-in-out infinite;
  }

  .error-decoration-top {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .error-decoration-bottom {
    margin-top: clamp(1rem, 2vw, 1.5rem);
    animation-delay: 1s;
  }

  @keyframes float-slow {
    0%, 100% {
      transform: translateY(0px);
      opacity: 0.5;
    }
    50% {
      transform: translateY(-30px);
      opacity: 0.8;
    }
  }

  
  @media (min-width: 768px) {
    .error-section {
      padding: 4rem 0;
    }

    .error-content {
      padding: clamp(2rem, 5vw, 3rem);
    }

    .error-hints {
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(1.5rem, 3vw, 2rem);
      max-width: 800px;
      margin: clamp(2rem, 3vw, 3rem) auto;
    }

    .hint-item {
      padding: clamp(1.25rem, 2.5vw, 1.75rem);
    }

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

  
  @media (min-width: 1024px) {
    .error-section {
      padding: 6rem 0;
    }

    .error-content {
      gap: clamp(2rem, 4vw, 3.5rem);
      padding: clamp(2.5rem, 5vw, 4rem);
    }

    .error-code {
      text-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    }

    .hint-item {
      padding: clamp(1.5rem, 2.5vw, 2rem);
    }

    .hint-item:hover {
      transform: translateY(-6px);
    }
  }

  
  @media (min-width: 1440px) {
    .error-code {
      text-shadow: 0 16px 50px rgba(59, 130, 246, 0.5);
    }

    .error-hints {
      max-width: 900px;
    }
  }

  
  @media (prefers-reduced-motion: reduce) {
    .error-code,
    .error-decoration,
    .hint-item,
    .btn {
      animation: none !important;
      transition: none !important;
    }

    .hint-item:hover {
      transform: none;
    }

    .btn:hover {
      transform: none;
    }
  }

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

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

  
  @media print {
    .error-section {
      min-height: auto;
      padding: 2rem 0;
    }

    .error-code {
      color: #000;
    }

    .error-title,
    .error-description {
      color: #000;
    }

    .btn {
      display: none;
    }
  }