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

:root {
  
  
  
  
  
  --color-bg-dark-primary: #111827;
  --color-bg-dark-secondary: #1f2937;
  --color-bg-dark-tertiary: #374151;
  --color-bg-dark-card: rgba(6, 182, 212, 0.08);
  
  
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-light-card: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #9ca3af;
  --color-text-dark-muted: #6b7280;
  
  
  --color-text-light-primary: #111827;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #9ca3af;
  
  
  --color-primary: #06b6d4;
  --color-primary-hover: #0891b2;
  --color-secondary: #22d3ee;
  --color-accent-warm: #f59e0b;
  
  
  --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;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  
  
  --transition-fast: 150ms ease-out;
  --transition-base: 250ms ease-out;
  --transition-slow: 350ms ease-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

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

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

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

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  line-height: 1.25;
  letter-spacing: -0.2px;
}

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

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

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

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

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

.btn-secondary:hover {
  background: #d97706;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid currentColor;
  background: transparent;
}

.btn-outline:hover {
  transform: translateY(-2px);
}

.hero-section .btn-outline,
.cta-section .btn-outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.hero-section .btn-outline:hover,
.cta-section .btn-outline:hover {
  background: rgba(6, 182, 212, 0.1);
}

.features-section .btn-outline,
.about-section .btn-outline,
.pricing-section .btn-outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.features-section .btn-outline:hover,
.about-section .btn-outline:hover,
.pricing-section .btn-outline:hover {
  background: rgba(6, 182, 212, 0.1);
}

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

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

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

input,
textarea,
select {
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border: 2px solid;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.contact-section input,
.contact-section textarea,
.contact-section select {
  background: #ffffff;
  border-color: #e5e7eb;
  color: var(--color-text-light-primary);
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: var(--color-text-light-muted);
}

.contact-section input:focus,
.contact-section textarea:focus {
  border-color: var(--color-primary);
}

.form-submit-btn {
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all var(--transition-base);
}

.form-submit-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

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

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

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

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

.mt-auto {
  margin-top: auto;
}

.flex {
  display: flex;
}

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

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

.grid {
  display: grid;
}

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

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

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

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

.w-full {
  width: 100%;
}

.max-w-prose {
  max-width: 65ch;
}

@media (min-width: 768px) {
  .container {
    padding: 0 clamp(1.5rem, 5vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 clamp(2rem, 6vw, 4rem);
  }
}

@media (max-width: 767px) {
  h1 {
    word-break: break-word;
  }

  h2 {
    word-break: break-word;
  }

  .btn {
    width: 100%;
  }
}

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

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

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

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

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

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

::-webkit-scrollbar-track {
  background: var(--color-bg-light-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;
}

::-moz-selection {
  background: var(--color-primary);
  color: #ffffff;
}
:root {
    --color-bg-dark-primary: #111827;
    --color-bg-dark-secondary: #1f2937;
    --color-bg-dark-tertiary: #374151;
    --color-bg-dark-card: rgba(6, 182, 212, 0.08);
    --color-bg-light-primary: #ffffff;
    --color-bg-light-secondary: #f8fafc;
    --color-bg-light-tertiary: #f1f5f9;
    --color-bg-light-card: #ffffff;
    --color-text-dark-primary: #ffffff;
    --color-text-dark-secondary: #9ca3af;
    --color-text-dark-muted: #6b7280;
    --color-text-light-primary: #111827;
    --color-text-light-secondary: #475569;
    --color-text-light-muted: #9ca3af;
    --color-primary: #06b6d4;
    --color-primary-hover: #0891b2;
    --color-secondary: #22d3ee;
    --color-accent-warm: #f59e0b;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    --transition-fast: 150ms ease-out;
    --transition-base: 250ms ease-out;
    --transition-slow: 350ms ease-out;
  }

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

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

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

  .header-nederlands-portal {
    background: var(--color-bg-dark-primary);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    position: static;
    z-index: 100;
    width: 100%;
  }

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

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

  .header-nederlands-portal-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
  }

  .header-nederlands-portal-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--color-text-dark-primary);
    letter-spacing: -0.5px;
  }

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

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

  .header-nederlands-portal-nav-link {
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 500;
    color: var(--color-text-dark-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
  }

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

  .header-nederlands-portal-nav-link:hover {
    color: var(--color-primary);
  }

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

  .header-nederlands-portal-cta-button {
    display: none;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: #0f172a;
    border: none;
    border-radius: var(--radius-md);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-primary);
  }

  @media (min-width: 768px) {
    .header-nederlands-portal-cta-button {
      display: inline-block;
    }
  }

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

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

  .header-nederlands-portal-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--color-text-dark-primary);
    cursor: pointer;
    font-size: 1.5rem;
    transition: color var(--transition-base);
    z-index: 101;
  }

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

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

  .header-nederlands-portal-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-dark-primary);
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all var(--transition-slow);
    z-index: 99;
    overflow-y: auto;
  }

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

  .header-nederlands-portal-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem clamp(1rem, 4vw, 2rem);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
  }

  .header-nederlands-portal-mobile-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark-primary);
  }

  .header-nederlands-portal-mobile-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--color-text-dark-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-base);
  }

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

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

  .header-nederlands-portal-mobile-link {
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 4vw, 2rem);
    color: var(--color-text-dark-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(6, 182, 212, 0.05);
    transition: all var(--transition-base);
  }

  .header-nederlands-portal-mobile-link:hover {
    color: var(--color-primary);
    background: rgba(6, 182, 212, 0.05);
    padding-left: clamp(1.25rem, 5vw, 2.25rem);
  }

  .header-nederlands-portal-mobile-cta {
    margin: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    background: var(--color-primary);
    color: #0f172a;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-primary);
    text-align: center;
    display: block;
  }

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

  @media (min-width: 768px) {
    .header-nederlands-portal-mobile-menu {
      display: none;
    }
  }

  @media (max-width: 767px) {
    .header-nederlands-portal-desktop-nav {
      display: none;
    }
  }

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

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

.hero-gradient-mesh {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-glow-secondary {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-shape-1 {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

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

.hero-float-element {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 120px;
  height: 120px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 12px;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

.hero-line-accent {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-section-title {
  font-size: clamp(2.25rem, 6vw + 0.5rem, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
}

.hero-section-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #22d3ee;
  margin-bottom: 1rem;
}

.hero-section-description {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.7;
}

.hero-section-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero-section-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  padding: clamp(2rem, 3vw, 3rem) 0 0 0;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.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: #22d3ee;
  line-height: 1;
}

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

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

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

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

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

.about-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-section-description {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #475569;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.8;
}

.about-section-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-benefit-item {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.about-benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

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

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

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

  .about-text-block,
  .about-image-block {
    flex: 1 1 100%;
  }
}

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

.features-section-accent-glow-1 {
  position: absolute;
  top: 5%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-section-accent-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-section-shape-accent {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.03);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.features-section-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.features-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.features-section-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 300ms ease-out;
}

.features-section-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

.features-section-step-content {
  display: flex;
  flex-direction: column !important;
  gap: 0.5rem;
  width: 100% !important;
}

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

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

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

  .features-section-step-number {
    min-width: auto;
  }
}

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

.learning-section-mesh-gradient {
  position: absolute;
  top: 15%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.learning-section-floating-shape {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 50% 40% 60% 50% / 40% 60% 50% 60%;
  z-index: 1;
  pointer-events: none;
}

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

.learning-section-text {
  flex: 1 1 350px;
}

.learning-section-image {
  flex: 1 1 350px;
}

.learning-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.learning-section-description {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.7;
}

.learning-section-topics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.learning-topic-card {
  flex: 1 1 160px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 10px;
  text-align: center;
  transition: all 300ms ease-out;
}

.learning-topic-card:hover {
  background: rgba(6, 182, 212, 0.12);
  transform: translateY(-3px);
}

.learning-topic-card i {
  font-size: 1.75rem;
  color: #22d3ee;
}

.learning-topic-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.learning-topic-text {
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.5;
}

.learning-section-visual {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.2);
}

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

  .learning-section-text,
  .learning-section-image {
    flex: 1 1 100%;
  }

  .learning-section-topics {
    flex-direction: column;
  }

  .learning-topic-card {
    flex: 1 1 100%;
  }
}

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

.testimonial-section-glow-accent {
  position: absolute;
  top: 20%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-section-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.testimonial-featured-quote {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem) auto;
  max-width: 700px;
  border-radius: 8px;
}

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

.testimonial-quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  font-style: normal;
}

.testimonial-origin {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

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

.testimonial-metric {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.testimonial-metric-number {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #06b6d4;
}

.testimonial-metric-label {
  font-size: 0.875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.featured-posts-accent-shape-1 {
  position: absolute;
  bottom: 15%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.featured-posts-accent-shape-2 {
  position: absolute;
  top: 10%;
  left: -60px;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 70% 30% 66% 34% / 33% 66% 34% 67%;
  z-index: 1;
  pointer-events: none;
}

.featured-posts-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.featured-posts-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.featured-posts-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 350ms ease-out;
}

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

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

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

.featured-posts-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

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

.featured-posts-card-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #06b6d4;
  text-decoration: none;
  transition: color 300ms ease-out;
  display: inline-block;
  margin-top: auto;
}

.featured-posts-card-link:hover {
  color: #0891b2;
}

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

.featured-posts-view-all {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: transparent;
  border: 2px solid #06b6d4;
  color: #06b6d4;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease-out;
}

.featured-posts-view-all:hover {
  background: #06b6d4;
  color: #ffffff;
}

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

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

.cta-section-gradient-mesh {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.cta-section-glow-element-1 {
  position: absolute;
  bottom: 10%;
  left: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.cta-section-glow-element-2 {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.cta-section-shape-accent {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.cta-section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-section-description {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #cbd5e1;
  margin-bottom: clamp(2.5rem, 4vw, 3rem);
  line-height: 1.7;
}

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

.cta-btn-primary {
  padding: 1rem 2.5rem;
  background: #06b6d4;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 300ms ease-out;
  display: inline-block;
}

.cta-btn-primary:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.cta-btn-secondary {
  padding: 1rem 2.5rem;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 300ms ease-out;
  display: inline-block;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-section-buttons {
    flex-direction: column;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
  }
}

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

.contact-section-accent-1 {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-section-accent-2 {
  position: absolute;
  bottom: 20%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.contact-section-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.contact-section-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.contact-section-form-wrapper {
  flex: 1 1 350px;
  min-width: 300px;
}

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

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

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

.contact-section-input,
.contact-section-textarea {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #111827;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: border-color 300ms ease-out;
}

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

.contact-section-input:focus,
.contact-section-textarea:focus {
  outline: none;
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

.contact-section-submit {
  width: 100%;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 4vw, 2.5rem);
  background: #06b6d4;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 300ms ease-out;
}

.contact-section-submit:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.contact-section-info {
  flex: 1 1 350px;
  min-width: 300px;
}

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

.contact-faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.contact-faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-faq-question {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

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

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

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

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

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

.cookie-banner-text {
  color: #cbd5e1;
  margin: 0;
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  flex: 1 1 auto;
  min-width: 250px;
  line-height: 1.5;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 1.5vw, 1.25rem);
  border-radius: 6px;
  border: none;
  font-weight: 500;
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  cursor: pointer;
  transition: all 250ms ease-out;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #06b6d4;
  color: #000000;
}

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

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

.cookie-btn-decline:hover {
  background: rgba(203, 213, 225, 0.1);
  border-color: rgba(203, 213, 225, 0.5);
}

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

  .cookie-banner-text {
    min-width: auto;
    text-align: center;
  }

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

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 calc(50% - 0.5rem);
  }
}

@media (max-width: 480px) {
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 100%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 300ms ease-out;
  font-family: var(--font-primary);
  cursor: pointer;
}

.btn-primary {
  background: #06b6d4;
  color: #000000;
}

.btn-primary:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

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

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

@media (max-width: 768px) {
  .hero-section-cta-group .btn {
    flex: 1 1 auto;
    min-width: 140px;
  }

  .cta-section-buttons .btn {
    min-width: 160px;
  }
}

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

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

  .footer-content {
    display: block;
  }

  .footer-about {
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .footer-about-text {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 480px;
  }

  .footer-navigation {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-nav-title {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
  }

  .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .footer-nav-link {
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    color: #9ca3af;
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
  }

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

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

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

  .footer-contact {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-contact-title {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
  }

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

  .footer-contact-item {
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

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

  .footer-contact-value {
    color: #9ca3af;
    word-break: break-word;
  }

  .footer-legal {
    margin-bottom: clamp(2rem, 5vw, 3rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-legal-title {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
  }

  .footer-legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .footer-legal-link {
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    color: #9ca3af;
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
  }

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

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

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

  .footer-copyright {
    text-align: center;
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
  }

  .footer-copyright-text {
    font-size: clamp(0.8125rem, 1vw, 0.9375rem);
    color: #6b7280;
    margin: 0;
    letter-spacing: 0.02em;
  }

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

    .footer-about {
      flex: 1 1 280px;
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .footer-navigation {
      flex: 1 1 200px;
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .footer-contact {
      flex: 1 1 240px;
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .footer-legal {
      flex: 1 1 200px;
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .footer-copyright {
      flex: 1 1 100%;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: clamp(1.5rem, 4vw, 2.5rem);
      padding-top: clamp(1.5rem, 4vw, 2.5rem);
    }
  }

  @media (min-width: 1024px) {
    .footer-about {
      flex: 0 1 300px;
    }

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

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

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

  @media (max-width: 767px) {
    .footer-nav-list,
    .footer-legal-list {
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-contact-item {
      flex-direction: row;
      gap: 0.5rem;
    }
  }

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

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

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

.category-page-real-life-dutch-situations {
  width: 100%;
}

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

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

.hero-deco-glow-primary {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  bottom: 50px;
  left: -80px;
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-tag-category {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title-category {
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-description-category {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.stat-number-category {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

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

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

@media (max-width: 768px) {
  .hero-buttons-category .btn {
    width: 100%;
  }
}

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

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

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

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

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

.card-real-life-dutch-situations {
  flex: 1 1 100%;
  max-width: 750px;
  display: flex;
  flex-direction: column !important;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  position: relative;
  z-index: 10;
}

.card-real-life-dutch-situations:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.card-image-category {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.card-title-category {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.card-description-category {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.card-link-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
  width: fit-content;
}

.card-link-category:hover {
  color: #0891b2;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .card-real-life-dutch-situations {
    flex: 1 1 calc(50% - 1rem);
  }

  .card-real-life-dutch-situations:nth-child(n+4) {
    flex: 1 1 calc(33.333% - 1.2rem);
  }
}

@media (min-width: 1024px) {
  .card-real-life-dutch-situations {
    flex: 1 1 calc(50% - 1.25rem);
    max-width: none;
  }

  .card-real-life-dutch-situations:first-child {
    flex: 1 1 100%;
    flex-direction: row;
    align-items: center;
    max-width: 100%;
  }

  .card-real-life-dutch-situations:first-child .card-image-category {
    flex: 0 0 40%;
    max-height: 300px;
    margin-right: 2rem;
  }

  .card-real-life-dutch-situations:nth-child(n+2) {
    flex: 1 1 calc(50% - 1.25rem);
  }
}

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

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

.pathway-title-category {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.pathway-subtitle-category {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.pathway-steps-category {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.pathway-step-category {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #06b6d4;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pathway-step-category:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.1);
}

.step-number-category {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

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

.step-text-category {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  color: #475569;
}

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

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

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

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

.benefits-title-category {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.benefits-quote-category {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #06b6d4;
  font-style: italic;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefits-content-category {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits-text-category {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #334155;
  line-height: 1.8;
}

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

.cta-deco-accent-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  top: -100px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.cta-deco-accent-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -50px;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.cta-content-category {
  position: relative;
  z-index: 10;
  text-align: center;
}

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

.cta-text-category {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .pathway-step-category {
    gap: 1rem;
    padding: 1.25rem;
  }

  .step-number-category {
    min-width: 50px;
    font-size: 1.75rem;
  }

  .posts-grid-category {
    gap: 1rem;
  }

  .card-real-life-dutch-situations {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .card-real-life-dutch-situations:first-child {
    flex-direction: column;
  }

  .card-real-life-dutch-situations:first-child .card-image-category {
    flex: 1 1 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-stats-category {
    gap: 1.5rem;
  }

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

  .pathway-step-category {
    flex-direction: column;
    gap: 0.75rem;
    border-left: none;
    border-top: 4px solid #06b6d4;
    padding-left: 1rem;
    padding-top: 1rem;
  }

  .step-number-category {
    position: relative;
    top: -0.5rem;
  }
}

.hero-section-category .btn-primary {
  background: #06b6d4;
  color: #0f172a;
}

.hero-section-category .btn-primary:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.hero-section-category .btn-outline {
  border: 2px solid #06b6d4;
  color: #06b6d4;
}

.hero-section-category .btn-outline:hover {
  background: rgba(6, 182, 212, 0.1);
  transform: translateY(-2px);
}

.cta-section-category .btn-primary {
  background: #06b6d4;
  color: #0f172a;
}

.cta-section-category .btn-primary:hover {
  background: #22d3ee;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 211, 238, 0.3);
}

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

.main-boodschappen-doen-nederlands {
  width: 100%;
}

.main-boodschappen-doen-nederlands section,
[class*="-section-boodschappen-doen-nederlands"] {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-boodschappen-doen-nederlands {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

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

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

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

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

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

.meta-badge-boodschappen-doen-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #22d3ee;
}

.meta-badge-boodschappen-doen-nederlands i {
  color: #06b6d4;
}

.hero-stats-boodschappen-doen-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: 2rem;
}

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

.stat-number-boodschappen-doen-nederlands {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-boodschappen-doen-nederlands {
  font-size: 0.875rem;
  color: #9ca3af;
}

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

.hero-image-boodschappen-doen-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

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

  .hero-text-block-boodschappen-doen-nederlands,
  .hero-image-block-boodschappen-doen-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-section-boodschappen-doen-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.intro-text-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-boodschappen-doen-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-boodschappen-doen-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-description-boodschappen-doen-nederlands {
  font-weight: 500;
}

.intro-image-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-boodschappen-doen-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-boodschappen-doen-nederlands {
    flex-direction: column;
  }

  .intro-text-boodschappen-doen-nederlands,
  .intro-image-boodschappen-doen-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.vocabulary-section-boodschappen-doen-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.section-tag-boodschappen-doen-nederlands {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.vocab-title-boodschappen-doen-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

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

.vocab-content-boodschappen-doen-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.vocab-text-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.vocab-subheading-boodschappen-doen-nederlands {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.vocab-description-boodschappen-doen-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.vocab-list-boodschappen-doen-nederlands {
  list-style: none;
  margin-bottom: 1.5rem;
}

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

.vocab-list-item-boodschappen-doen-nederlands::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

.vocab-tip-boodschappen-doen-nederlands {
  padding: 1rem 1.5rem;
  background: rgba(6, 182, 212, 0.1);
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #0f172a;
  line-height: 1.6;
}

.vocab-image-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.vocab-img-boodschappen-doen-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .vocab-content-boodschappen-doen-nederlands {
    flex-direction: column;
  }

  .vocab-text-boodschappen-doen-nederlands,
  .vocab-image-boodschappen-doen-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.phrases-section-boodschappen-doen-nederlands {
  background: #1f2937;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.phrases-title-boodschappen-doen-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

.phrases-steps-boodschappen-doen-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.phrase-step-boodschappen-doen-nederlands {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.step-number-boodschappen-doen-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.step-content-boodschappen-doen-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-boodschappen-doen-nederlands {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #ffffff;
}

.step-text-boodschappen-doen-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .phrase-step-boodschappen-doen-nederlands {
    flex-direction: column;
  }

  .step-number-boodschappen-doen-nederlands {
    font-size: 1.75rem;
  }
}

.cultural-section-boodschappen-doen-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.cultural-text-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.cultural-title-boodschappen-doen-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.cultural-description-boodschappen-doen-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cultural-highlight-boodschappen-doen-nederlands {
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
}

.highlight-title-boodschappen-doen-nederlands {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.highlight-text-boodschappen-doen-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

.cultural-image-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.cultural-img-boodschappen-doen-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .cultural-wrapper-boodschappen-doen-nederlands {
    flex-direction: column;
  }

  .cultural-text-boodschappen-doen-nederlands,
  .cultural-image-boodschappen-doen-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.products-section-boodschappen-doen-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.products-title-boodschappen-doen-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 1rem;
}

.products-subtitle-boodschappen-doen-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.products-cards-boodschappen-doen-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.product-card-boodschappen-doen-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: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-boodschappen-doen-nederlands:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-icon-boodschappen-doen-nederlands {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 10px;
  color: #06b6d4;
  font-size: 1.5rem;
}

.card-title-boodschappen-doen-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

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

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

.conclusion-section-boodschappen-doen-nederlands {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.conclusion-content-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.conclusion-text-boodschappen-doen-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-quote-boodschappen-doen-nederlands {
  padding: 1.5rem 2rem;
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  margin-top: 2rem;
  border-radius: 8px;
}

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

.quote-cite-boodschappen-doen-nederlands {
  font-size: 0.875rem;
  color: #9ca3af;
  font-style: normal;
  display: block;
}

.conclusion-image-boodschappen-doen-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-img-boodschappen-doen-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .conclusion-wrapper-boodschappen-doen-nederlands {
    flex-direction: column;
  }

  .conclusion-content-boodschappen-doen-nederlands,
  .conclusion-image-boodschappen-doen-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cta-section-boodschappen-doen-nederlands {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.cta-content-boodschappen-doen-nederlands {
  text-align: center;
}

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

.cta-text-boodschappen-doen-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.btn-primary-cta-boodschappen-doen-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  background: #06b6d4;
  color: #0f172a;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-cta-boodschappen-doen-nederlands:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

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

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

.related-title-boodschappen-doen-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

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

.related-cards-boodschappen-doen-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-boodschappen-doen-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-boodschappen-doen-nederlands:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image-boodschappen-doen-nederlands {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-boodschappen-doen-nederlands img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-boodschappen-doen-nederlands {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

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

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

.related-card-link-boodschappen-doen-nederlands {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #06b6d4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-card-link-boodschappen-doen-nederlands:hover {
  color: #0891b2;
}

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

.disclaimer-section-boodschappen-doen-nederlands {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

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

.disclaimer-title-boodschappen-doen-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 clamp(1.5rem, 5vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 clamp(2rem, 6vw, 4rem);
  }
}

@media (max-width: 767px) {
  h1 {
    word-break: break-word;
  }

  h2 {
    word-break: break-word;
  }

  .hero-stats-boodschappen-doen-nederlands {
    gap: 1.5rem;
  }

  .stat-number-boodschappen-doen-nederlands {
    font-size: 1.75rem;
  }
}

.main-nederlands-spreken-dagelijkse-situaties {
  width: 100%;
}

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

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

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

.hero-text-block-nederlands-spreken-dagelijkse-situaties {
  flex: 1 1 100%;
  max-width: 600px;
}

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

.breadcrumb-link-nederlands-spreken-dagelijkse-situaties,
.breadcrumb-separator-nederlands-spreken-dagelijkse-situaties {
  color: #94a3b8;
}

.breadcrumb-link-nederlands-spreken-dagelijkse-situaties {
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-nederlands-spreken-dagelijkse-situaties:hover {
  color: #06b6d4;
}

.breadcrumb-separator-nederlands-spreken-dagelijkse-situaties {
  opacity: 0.5;
}

.breadcrumb-current-nederlands-spreken-dagelijkse-situaties {
  color: #06b6d4;
}

.hero-title-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-subtitle-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  color: #06b6d4;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-description-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-meta-badges-nederlands-spreken-dagelijkse-situaties {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-nederlands-spreken-dagelijkse-situaties {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 20px;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #38bdf8;
}

.meta-badge-nederlands-spreken-dagelijkse-situaties i {
  font-size: 0.9rem;
}

.hero-stats-nederlands-spreken-dagelijkse-situaties {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.stat-item-nederlands-spreken-dagelijkse-situaties {
  flex: 0 1 auto;
}

.stat-number-nederlands-spreken-dagelijkse-situaties {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-nederlands-spreken-dagelijkse-situaties {
  display: block;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-block-nederlands-spreken-dagelijkse-situaties {
  flex: 1 1 100%;
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
}

.hero-featured-image-nederlands-spreken-dagelijkse-situaties {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hero-content-nederlands-spreken-dagelijkse-situaties {
    flex-direction: row;
    align-items: center;
  }

  .hero-text-block-nederlands-spreken-dagelijkse-situaties {
    flex: 1 1 50%;
    max-width: none;
  }

  .hero-image-block-nederlands-spreken-dagelijkse-situaties {
    flex: 1 1 50%;
    max-width: none;
  }
}

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

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

.introduction-wrapper-nederlands-spreken-dagelijkse-situaties {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-nederlands-spreken-dagelijkse-situaties {
  flex: 1 1 100%;
  max-width: 600px;
}

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

.introduction-paragraph-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-image-nederlands-spreken-dagelijkse-situaties {
  flex: 1 1 100%;
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
}

.introduction-featured-image-nederlands-spreken-dagelijkse-situaties {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .introduction-wrapper-nederlands-spreken-dagelijkse-situaties {
    flex-direction: row-reverse;
    align-items: center;
  }

  .introduction-text-nederlands-spreken-dagelijkse-situaties {
    flex: 1 1 50%;
    max-width: none;
  }

  .introduction-image-nederlands-spreken-dagelijkse-situaties {
    flex: 1 1 50%;
    max-width: none;
  }
}

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

.content-section-één-nederlands-spreken-dagelijkse-situaties .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-header-nederlands-spreken-dagelijkse-situaties {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-nederlands-spreken-dagelijkse-situaties {
  display: inline-block;
  padding: 0.375rem 1.125rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.scenarios-grid-nederlands-spreken-dagelijkse-situaties {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.scenario-card-nederlands-spreken-dagelijkse-situaties {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenario-card-nederlands-spreken-dagelijkse-situaties:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.scenario-number-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.scenario-title-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.scenario-text-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .scenario-card-nederlands-spreken-dagelijkse-situaties {
    flex: 1 1 100%;
    min-width: auto;
  }
}

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

.content-section-twee-nederlands-spreken-dagelijkse-situaties .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-wrapper-nederlands-spreken-dagelijkse-situaties {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.content-text-block-nederlands-spreken-dagelijkse-situaties {
  flex: 1 1 100%;
  max-width: 600px;
}

.content-heading-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-paragraph-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-subheading-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1e293b;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-list-nederlands-spreken-dagelijkse-situaties {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.content-list-item-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.875rem;
}

.content-list-item-nederlands-spreken-dagelijkse-situaties::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
  font-size: 1.25rem;
}

.content-image-block-nederlands-spreken-dagelijkse-situaties {
  flex: 1 1 100%;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.content-image-nederlands-spreken-dagelijkse-situaties {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .content-wrapper-nederlands-spreken-dagelijkse-situaties {
    flex-direction: row;
    align-items: center;
  }

  .content-text-block-nederlands-spreken-dagelijkse-situaties {
    flex: 1 1 50%;
    max-width: none;
  }

  .content-image-block-nederlands-spreken-dagelijkse-situaties {
    flex: 1 1 50%;
    max-width: none;
  }
}

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

.content-section-drie-nederlands-spreken-dagelijkse-situaties .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-wrapper-drie-nederlands-spreken-dagelijkse-situaties {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-block-drie-nederlands-spreken-dagelijkse-situaties {
  flex: 1 1 100%;
  max-width: 600px;
}

.content-heading-drie-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-paragraph-drie-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-nederlands-spreken-dagelijkse-situaties {
  padding: 2rem 2.5rem;
  border-left: 5px solid #06b6d4;
  background: #f1f5f9;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.content-image-block-drie-nederlands-spreken-dagelijkse-situaties {
  flex: 1 1 100%;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.content-image-drie-nederlands-spreken-dagelijkse-situaties {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .content-wrapper-drie-nederlands-spreken-dagelijkse-situaties {
    flex-direction: row;
    align-items: center;
  }

  .content-text-block-drie-nederlands-spreken-dagelijkse-situaties {
    flex: 1 1 50%;
    max-width: none;
  }

  .content-image-block-drie-nederlands-spreken-dagelijkse-situaties {
    flex: 1 1 50%;
    max-width: none;
  }
}

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

.learning-tips-section-nederlands-spreken-dagelijkse-situaties .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-header-tips-nederlands-spreken-dagelijkse-situaties {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

.tips-steps-netherlands-spreken-dagelijkse-situaties {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tips-step-nederlands-spreken-dagelijkse-situaties {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.tips-step-number-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.tips-step-content-nederlands-spreken-dagelijkse-situaties {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tips-step-title-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.tips-step-text-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .tips-step-nederlands-spreken-dagelijkse-situaties {
    flex-direction: column;
    gap: 1rem;
  }
}

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

.practice-section-nederlands-spreken-dagelijkse-situaties .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.practice-wrapper-nederlands-spreken-dagelijkse-situaties {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.practice-text-block-nederlands-spreken-dagelijkse-situaties {
  flex: 1 1 100%;
  max-width: 600px;
}

.practice-title-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.practice-intro-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.dialogue-box-nederlands-spreken-dagelijkse-situaties {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
  margin-bottom: 1.5rem;
}

.dialogue-speaker-nederlands-spreken-dagelijkse-situaties,
.dialogue-response-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: #1e293b;
  line-height: 1.7;
  margin-bottom: 0.875rem;
}

.dialogue-speaker-nederlands-spreken-dagelijkse-situaties strong {
  color: #06b6d4;
  font-weight: 700;
}

.dialogue-response-nederlands-spreken-dagelijkse-situaties strong {
  color: #1e293b;
  font-weight: 700;
}

.dialogue-response-nederlands-spreken-dagelijkse-situaties {
  margin-left: 1rem;
}

.practice-image-block-nederlands-spreken-dagelijkse-situaties {
  flex: 1 1 100%;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

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

@media (min-width: 768px) {
  .practice-wrapper-nederlands-spreken-dagelijkse-situaties {
    flex-direction: row;
    align-items: flex-start;
  }

  .practice-text-block-nederlands-spreken-dagelijkse-situaties {
    flex: 1 1 50%;
    max-width: none;
  }

  .practice-image-block-nederlands-spreken-dagelijkse-situaties {
    flex: 1 1 50%;
    max-width: none;
  }
}

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

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

.conclusion-content-nederlands-spreken-dagelijkse-situaties {
  max-width: 700px;
  margin: 0 auto;
}

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

.conclusion-paragraph-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cta-box-nederlands-spreken-dagelijkse-situaties {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 16px;
  text-align: center;
  margin-top: 2.5rem;
}

.cta-box-title-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-box-text-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.cta-box-btn-nederlands-spreken-dagelijkse-situaties {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  background: #ffffff;
  color: #06b6d4;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-box-btn-nederlands-spreken-dagelijkse-situaties:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.related-posts-section-nederlands-spreken-dagelijkse-situaties .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-header-nederlands-spreken-dagelijkse-situaties {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

.related-subtitle-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #64748b;
}

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

.related-card-nederlands-spreken-dagelijkse-situaties {
  flex: 1 1 calc(33.333% - 1.33rem);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-nederlands-spreken-dagelijkse-situaties:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.related-card-content-nederlands-spreken-dagelijkse-situaties {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.related-card-title-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.related-card-description-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
  margin: 0;
}

.related-card-link-nederlands-spreken-dagelijkse-situaties {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-top: auto;
}

.related-card-link-nederlands-spreken-dagelijkse-situaties:hover {
  color: #0891b2;
}

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

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

.disclaimer-section-nederlands-spreken-dagelijkse-situaties {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.disclaimer-content-nederlands-spreken-dagelijkse-situaties {
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-title-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-spreken-dagelijkse-situaties {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-section-nederlands-spreken-dagelijkse-situaties {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  .hero-title-nederlands-spreken-dagelijkse-situaties {
    word-break: break-word;
  }

  .introduction-wrapper-nederlands-spreken-dagelijkse-situaties {
    flex-direction: column;
  }

  .introduction-text-nederlands-spreken-dagelijkse-situaties,
  .introduction-image-nederlands-spreken-dagelijkse-situaties {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-stats-nederlands-spreken-dagelijkse-situaties {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item-nederlands-spreken-dagelijkse-situaties {
    width: 100%;
  }
}

.main-zakelijk-nederlands-vergaderingen {
  width: 100%;
}

.hero-section-zakelijk-nederlands-vergaderingen {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

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

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

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

.hero-subtitle-zakelijk-nederlands-vergaderingen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.meta-badge-zakelijk-nederlands-vergaderingen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #22d3ee;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-zakelijk-nederlands-vergaderingen i {
  font-size: 1rem;
}

.hero-cta-zakelijk-nederlands-vergaderingen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-zakelijk-nederlands-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-img-zakelijk-nederlands-vergaderingen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.hero-stats-zakelijk-nederlands-vergaderingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
}

.stat-item-zakelijk-nederlands-vergaderingen {
  flex: 0 1 auto;
  text-align: left;
}

.stat-number-zakelijk-nederlands-vergaderingen {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-zakelijk-nederlands-vergaderingen {
  display: block;
  font-size: 0.875rem;
  color: #9ca3af;
  opacity: 0.8;
}

.intro-section-zakelijk-nederlands-vergaderingen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

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

.intro-text-zakelijk-nederlands-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-zakelijk-nederlands-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.featured-quote-zakelijk-nederlands-vergaderingen {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 8px;
}

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

.quote-author-zakelijk-nederlands-vergaderingen {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.intro-image-zakelijk-nederlands-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-zakelijk-nederlands-vergaderingen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.structure-section-zakelijk-nederlands-vergaderingen {
  background: #1f2937;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

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

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

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

.structure-subtitle-zakelijk-nederlands-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}

.structure-steps-zakelijk-nederlands-vergaderingen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.structure-step-zakelijk-nederlands-vergaderingen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 12px;
}

.structure-step-number-zakelijk-nederlands-vergaderingen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #06b6d4;
  flex-shrink: 0;
  min-width: 70px;
}

.structure-step-content-zakelijk-nederlands-vergaderingen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.structure-step-text-zakelijk-nederlands-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #cbd5e1;
}

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

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

.content-text-block-zakelijk-nederlands-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.content-description-zakelijk-nederlands-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.content-highlight-zakelijk-nederlands-vergaderingen {
  background: #f1f5f9;
  padding: 1.5rem;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.highlight-title-zakelijk-nederlands-vergaderingen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.highlight-list-zakelijk-nederlands-vergaderingen {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-item-zakelijk-nederlands-vergaderingen {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.highlight-item-zakelijk-nederlands-vergaderingen::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

.content-follow-text-zakelijk-nederlands-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

.content-image-block-zakelijk-nederlands-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-zakelijk-nederlands-vergaderingen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.techniques-section-zakelijk-nederlands-vergaderingen {
  background: #374151;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

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

.techniques-image-block-zakelijk-nederlands-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-zakelijk-nederlands-vergaderingen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.techniques-text-block-zakelijk-nederlands-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.techniques-description-zakelijk-nederlands-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.techniques-features-zakelijk-nederlands-vergaderingen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.technique-card-zakelijk-nederlands-vergaderingen {
  padding: 1rem;
  background: rgba(6, 182, 212, 0.1);
  border-left: 3px solid #06b6d4;
  border-radius: 8px;
}

.technique-card-title-zakelijk-nederlands-vergaderingen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.technique-card-text-zakelijk-nederlands-vergaderingen {
  font-size: 0.9375rem;
  color: #d1d5db;
  line-height: 1.6;
}

.phrases-section-zakelijk-nederlands-vergaderingen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

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

.phrases-title-zakelijk-nederlands-vergaderingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.phrases-grid-zakelijk-nederlands-vergaderingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.phrase-card-zakelijk-nederlands-vergaderingen {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.phrase-card-category-zakelijk-nederlands-vergaderingen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.phrase-list-zakelijk-nederlands-vergaderingen {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phrase-item-zakelijk-nederlands-vergaderingen {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.phrase-item-zakelijk-nederlands-vergaderingen::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

.culture-section-zakelijk-nederlands-vergaderingen {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

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

.culture-text-block-zakelijk-nederlands-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.culture-description-zakelijk-nederlands-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.culture-text-zakelijk-nederlands-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.culture-highlight-box-zakelijk-nederlands-vergaderingen {
  background: rgba(6, 182, 212, 0.1);
  border-left: 4px solid #06b6d4;
  padding: 1.5rem;
  border-radius: 8px;
}

.highlight-text-zakelijk-nederlands-vergaderingen {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
  margin: 0;
}

.culture-image-block-zakelijk-nederlands-vergaderingen {
  flex: 1 1 50%;
  max-width: 50%;
}

.culture-image-zakelijk-nederlands-vergaderingen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.conclusion-section-zakelijk-nederlands-vergaderingen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

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

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

.conclusion-text-zakelijk-nederlands-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.conclusion-follow-text-zakelijk-nederlands-vergaderingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.conclusion-cta-box-zakelijk-nederlands-vergaderingen {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
}

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

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

.conclusion-cta-box-zakelijk-nederlands-vergaderingen .btn-primary {
  background: #ffffff;
  color: #0891b2;
}

.conclusion-cta-box-zakelijk-nederlands-vergaderingen .btn-primary:hover {
  background: #f0f9fa;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-zakelijk-nederlands-vergaderingen {
  background: #f1f5f9;
  padding: clamp(2rem, 6vw, 4rem) 0;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-zakelijk-nederlands-vergaderingen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

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

.disclaimer-text-zakelijk-nederlands-vergaderingen {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.related-section-zakelijk-nederlands-vergaderingen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

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

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

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

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

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

.related-card-zakelijk-nederlands-vergaderingen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-card-content-zakelijk-nederlands-vergaderingen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

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

.related-card-text-zakelijk-nederlands-vergaderingen {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-zakelijk-nederlands-vergaderingen {
  font-size: 0.9375rem;
  color: #06b6d4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-zakelijk-nederlands-vergaderingen:hover {
  color: #0891b2;
  text-decoration: underline;
}

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

.breadcrumb-link-zakelijk-nederlands-vergaderingen {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-zakelijk-nederlands-vergaderingen:hover {
  color: #06b6d4;
}

.breadcrumb-separator-zakelijk-nederlands-vergaderingen {
  color: #6b7280;
}

.breadcrumb-current-zakelijk-nederlands-vergaderingen {
  color: #9ca3af;
}

@media (max-width: 767px) {
  .hero-content-zakelijk-nederlands-vergaderingen,
  .intro-content-zakelijk-nederlands-vergaderingen,
  .techniques-wrapper-zakelijk-nederlands-vergaderingen,
  .culture-wrapper-zakelijk-nederlands-vergaderingen,
  .content-wrapper-zakelijk-nederlands-vergaderingen {
    flex-direction: column;
  }

  .hero-text-block-zakelijk-nederlands-vergaderingen,
  .hero-image-zakelijk-nederlands-vergaderingen,
  .intro-text-zakelijk-nederlands-vergaderingen,
  .intro-image-zakelijk-nederlands-vergaderingen,
  .techniques-text-block-zakelijk-nederlands-vergaderingen,
  .techniques-image-block-zakelijk-nederlands-vergaderingen,
  .culture-text-block-zakelijk-nederlands-vergaderingen,
  .culture-image-block-zakelijk-nederlands-vergaderingen,
  .content-text-block-zakelijk-nederlands-vergaderingen,
  .content-image-block-zakelijk-nederlands-vergaderingen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-zakelijk-nederlands-vergaderingen {
    gap: 1.5rem;
  }

  .stat-item-zakelijk-nederlands-vergaderingen {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .hero-cta-zakelijk-nederlands-vergaderingen {
    flex-direction: column;
  }

  .hero-cta-zakelijk-nederlands-vergaderingen .btn {
    width: 100%;
  }

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

  .phrase-card-zakelijk-nederlands-vergaderingen {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-section-zakelijk-nederlands-vergaderingen,
  .intro-section-zakelijk-nederlands-vergaderingen,
  .structure-section-zakelijk-nederlands-vergaderingen,
  .content-section-zakelijk-nederlands-vergaderingen,
  .techniques-section-zakelijk-nederlands-vergaderingen,
  .phrases-section-zakelijk-nederlands-vergaderingen,
  .culture-section-zakelijk-nederlands-vergaderingen,
  .conclusion-section-zakelijk-nederlands-vergaderingen,
  .disclaimer-section-zakelijk-nederlands-vergaderingen,
  .related-section-zakelijk-nederlands-vergaderingen {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-stats-zakelijk-nederlands-vergaderingen {
    gap: clamp(3rem, 5vw, 4rem);
  }

  .stat-item-zakelijk-nederlands-vergaderingen {
    flex: 0 1 auto;
  }
}

.main-navigeren-nederland-weg-vragen {
    width: 100%;
  }

  

  .hero-section-navigeren-nederland-weg-vragen {
    background: #111827;
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

  .hero-section-navigeren-nederland-weg-vragen .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }

  .breadcrumbs-navigeren-nederland-weg-vragen {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
  }

  .breadcrumb-link-navigeren-nederland-weg-vragen {
    color: #06b6d4;
    transition: color var(--transition-base);
    text-decoration: none;
  }

  .breadcrumb-link-navigeren-nederland-weg-vragen:hover {
    color: #22d3ee;
    text-decoration: underline;
  }

  .breadcrumb-separator-navigeren-nederland-weg-vragen {
    color: #6b7280;
  }

  .breadcrumb-current-navigeren-nederland-weg-vragen {
    color: #cbd5e1;
  }

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

  .hero-text-wrapper-navigeren-nederland-weg-vragen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-title-navigeren-nederland-weg-vragen {
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

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

  .hero-meta-navigeren-nederland-weg-vragen {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .meta-badge-navigeren-nederland-weg-vragen {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
  }

  .meta-badge-navigeren-nederland-weg-vragen i {
    font-size: 0.875rem;
  }

  .hero-stats-navigeren-nederland-weg-vragen {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
  }

  .stat-item-navigeren-nederland-weg-vragen {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .stat-number-navigeren-nederland-weg-vragen {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #06b6d4;
    line-height: 1;
  }

  .stat-label-navigeren-nederland-weg-vragen {
    font-size: 0.875rem;
    color: #9ca3af;
  }

  .hero-image-wrapper-navigeren-nederland-weg-vragen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-image-navigeren-nederland-weg-vragen {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

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

    .hero-text-wrapper-navigeren-nederland-weg-vragen,
    .hero-image-wrapper-navigeren-nederland-weg-vragen {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .hero-stats-navigeren-nederland-weg-vragen {
      gap: 1.5rem;
    }

    .breadcrumbs-navigeren-nederland-weg-vragen {
      margin-bottom: 1rem;
    }
  }

  

  .intro-section-navigeren-nederland-weg-vragen {
    background: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .intro-section-navigeren-nederland-weg-vragen .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }

  .intro-content-navigeren-nederland-weg-vragen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .intro-text-navigeren-nederland-weg-vragen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-title-navigeren-nederland-weg-vragen {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .intro-description-navigeren-nederland-weg-vragen {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .intro-text-navigeren-nederland-weg-vragen {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
  }

  .intro-image-navigeren-nederland-weg-vragen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-img-navigeren-nederland-weg-vragen {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 768px) {
    .intro-content-navigeren-nederland-weg-vragen {
      flex-direction: column;
    }

    .intro-text-navigeren-nederland-weg-vragen,
    .intro-image-navigeren-nederland-weg-vragen {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  

  .fundamentals-section-navigeren-nederland-weg-vragen {
    background: #f8fafc;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .fundamentals-section-navigeren-nederland-weg-vragen .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }

  .section-header-navigeren-nederland-weg-vragen {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-tag-navigeren-nederland-weg-vragen {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .fundamentals-title-navigeren-nederland-weg-vragen {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #111827;
    margin-bottom: 0.5rem;
  }

  .fundamentals-subtitle-navigeren-nederland-weg-vragen {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
  }

  .vocabulary-grid-navigeren-nederland-weg-vragen {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .vocab-card-navigeren-nederland-weg-vragen {
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: #ffffff;
    border-radius: var(--radius-lg);
    border-left: 4px solid #06b6d4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .vocab-card-navigeren-nederland-weg-vragen:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .vocab-word-navigeren-nederland-weg-vragen {
    font-size: 1.125rem;
    font-weight: 700;
    color: #06b6d4;
  }

  .vocab-meaning-navigeren-nederland-weg-vragen {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
  }

  .vocab-example-navigeren-nederland-weg-vragen {
    font-size: 0.9375rem;
    color: #374151;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .vocab-card-navigeren-nederland-weg-vragen {
      flex: 1 1 100%;
      max-width: none;
    }
  }

  

  .phrases-section-navigeren-nederland-weg-vragen {
    background: #0f172a;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .phrases-section-navigeren-nederland-weg-vragen .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }

  .phrases-wrapper-navigeren-nederland-weg-vragen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
  }

  .phrases-text-navigeren-nederland-weg-vragen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .phrases-title-navigeren-nederland-weg-vragen {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .phrases-intro-navigeren-nederland-weg-vragen {
    font-size: 0.9375rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .phrases-list-navigeren-nederland-weg-vragen {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .phrase-item-navigeren-nederland-weg-vragen {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: var(--radius-lg);
    border-left: 3px solid #06b6d4;
  }

  .phrase-number-navigeren-nederland-weg-vragen {
    font-size: 1.75rem;
    font-weight: 800;
    color: #06b6d4;
    flex-shrink: 0;
    min-width: 50px;
    line-height: 1;
  }

  .phrase-content-navigeren-nederland-weg-vragen {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .phrase-dutch-navigeren-nederland-weg-vragen {
    font-size: 0.9375rem;
    color: #ffffff;
    line-height: 1.6;
  }

  .phrase-english-navigeren-nederland-weg-vragen {
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
  }

  .phrase-note-navigeren-nederland-weg-vragen {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.6;
  }

  .phrases-image-navigeren-nederland-weg-vragen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .phrases-img-navigeren-nederland-weg-vragen {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 768px) {
    .phrases-wrapper-navigeren-nederland-weg-vragen {
      flex-direction: column;
    }

    .phrases-text-navigeren-nederland-weg-vragen,
    .phrases-image-navigeren-nederland-weg-vragen {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .phrase-item-navigeren-nederland-weg-vragen {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

  

  .responses-section-navigeren-nederland-weg-vragen {
    background: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .responses-section-navigeren-nederland-weg-vragen .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }

  .responses-title-navigeren-nederland-weg-vragen {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #111827;
  }

  .responses-wrapper-navigeren-nederland-weg-vragen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .response-scenario-navigeren-nederland-weg-vragen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .scenario-header-navigeren-nederland-weg-vragen {
    margin-bottom: 1.5rem;
  }

  .scenario-title-navigeren-nederland-weg-vragen {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
  }

  .scenario-response-navigeren-nederland-weg-vragen {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid #06b6d4;
    margin-bottom: 1.5rem;
  }

  .scenario-text-navigeren-nederland-weg-vragen {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.7;
    font-style: italic;
  }

  .breakdown-navigeren-nederland-weg-vragen {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
  }

  .breakdown-label-navigeren-nederland-weg-vragen {
    font-size: 0.875rem;
    color: #92400e;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }

  .breakdown-list-navigeren-nederland-weg-vragen {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .breakdown-item-navigeren-nederland-weg-vragen {
    font-size: 0.875rem;
    color: #78350f;
    line-height: 1.6;
  }

  .breakdown-item-navigeren-nederland-weg-vragen::before {
    content: " ";
    color: #06b6d4;
    font-weight: 700;
    margin-right: 0.5rem;
  }

  .response-image-navigeren-nederland-weg-vragen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .response-img-navigeren-nederland-weg-vragen {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 768px) {
    .responses-wrapper-navigeren-nederland-weg-vragen {
      flex-direction: column;
    }

    .response-scenario-navigeren-nederland-weg-vragen,
    .response-image-navigeren-nederland-weg-vragen {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  

  .cultural-section-navigeren-nederland-weg-vragen {
    background: #1a1f2e;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .cultural-section-navigeren-nederland-weg-vragen .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }

  .cultural-content-navigeren-nederland-weg-vragen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .cultural-image-navigeren-nederland-weg-vragen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .cultural-img-navigeren-nederland-weg-vragen {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  .cultural-text-navigeren-nederland-weg-vragen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .cultural-title-navigeren-nederland-weg-vragen {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .featured-quote-navigeren-nederland-weg-vragen {
    padding: 1.5rem 2rem;
    border-left: 4px solid #06b6d4;
    background: rgba(6, 182, 212, 0.05);
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
  }

  .quote-text-navigeren-nederland-weg-vragen {
    font-size: 1.125rem;
    color: #e5e7eb;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
  }

  .quote-author-navigeren-nederland-weg-vragen {
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: normal;
  }

  .cultural-paragraph-navigeren-nederland-weg-vragen {
    font-size: 0.9375rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  @media (max-width: 768px) {
    .cultural-content-navigeren-nederland-weg-vragen {
      flex-direction: column;
    }

    .cultural-image-navigeren-nederland-weg-vragen,
    .cultural-text-navigeren-nederland-weg-vragen {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  

  .practical-section-navigeren-nederland-weg-vragen {
    background: #f1f5f9;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .practical-section-navigeren-nederland-weg-vragen .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }

  .practical-title-navigeren-nederland-weg-vragen {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #111827;
  }

  .scenarios-grid-navigeren-nederland-weg-vragen {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .scenario-card-navigeren-nederland-weg-vragen {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background: #ffffff;
    border-radius: var(--radius-lg);
    border-top: 3px solid #06b6d4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
  }

  .scenario-card-navigeren-nederland-weg-vragen:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .scenario-card-title-navigeren-nederland-weg-vragen {
    font-size: 1rem;
    font-weight: 700;
    color: #06b6d4;
  }

  .scenario-card-text-navigeren-nederland-weg-vragen {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .scenario-card-navigeren-nederland-weg-vragen {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  

  .conclusion-section-navigeren-nederland-weg-vragen {
    background: #111827;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .conclusion-section-navigeren-nederland-weg-vragen .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }

  .conclusion-content-navigeren-nederland-weg-vragen {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .conclusion-title-navigeren-nederland-weg-vragen {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
  }

  .conclusion-summary-navigeren-nederland-weg-vragen {
    margin-bottom: 2rem;
  }

  .conclusion-text-navigeren-nederland-weg-vragen {
    font-size: 0.9375rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .summary-list-navigeren-nederland-weg-vragen {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    background: rgba(6, 182, 212, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid #06b6d4;
  }

  .summary-item-navigeren-nederland-weg-vragen {
    font-size: 0.9375rem;
    color: #e5e7eb;
    line-height: 1.6;
  }

  .summary-item-navigeren-nederland-weg-vragen strong {
    color: #06b6d4;
  }

  .conclusion-cta-navigeren-nederland-weg-vragen {
    margin-top: 2rem;
  }

  .cta-text-navigeren-nederland-weg-vragen {
    font-size: 0.9375rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    font-family: var(--font-primary);
    white-space: nowrap;
  }

  .btn-primary {
    background: #06b6d4;
    color: #0f172a;
  }

  .btn-primary:hover {
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
  }

  

  .disclaimer-section-navigeren-nederland-weg-vragen {
    background: #f8fafc;
    padding: clamp(2rem, 6vw, 4rem) 0;
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
  }

  .disclaimer-section-navigeren-nederland-weg-vragen .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }

  .disclaimer-content-navigeren-nederland-weg-vragen {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid #f59e0b;
  }

  .disclaimer-title-navigeren-nederland-weg-vragen {
    font-size: 1rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 0.75rem;
  }

  .disclaimer-text-navigeren-nederland-weg-vragen {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.7;
  }

  

  .related-section-navigeren-nederland-weg-vragen {
    background: #0a0f1e;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .related-section-navigeren-nederland-weg-vragen .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
  }

  .related-title-navigeren-nederland-weg-vragen {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #ffffff;
  }

  .related-subtitle-navigeren-nederland-weg-vragen {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .related-card-navigeren-nederland-weg-vragen {
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    align-items: stretch;
    text-decoration: none;
    transition: all var(--transition-base);
  }

  .related-card-content-navigeren-nederland-weg-vragen {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-lg);
    width: 100%;
    transition: all var(--transition-base);
    position: relative;
  }

  .related-card-navigeren-nederland-weg-vragen:hover .related-card-content-navigeren-nederland-weg-vragen {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-4px);
  }

  .related-card-title-navigeren-nederland-weg-vragen {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
  }

  .related-card-text-navigeren-nederland-weg-vragen {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.6;
    flex-grow: 1;
  }

  .related-card-arrow-navigeren-nederland-weg-vragen {
    font-size: 1.5rem;
    color: #06b6d4;
    margin-top: 0.5rem;
    transition: transform var(--transition-base);
  }

  .related-card-navigeren-nederland-weg-vragen:hover .related-card-arrow-navigeren-nederland-weg-vragen {
    transform: translateX(4px);
  }

  @media (max-width: 768px) {
    .related-card-navigeren-nederland-weg-vragen {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  

  @media (max-width: 767px) {
    .section-header-navigeren-nederland-weg-vragen {
      margin-bottom: 2rem;
    }

    .fundamental-title-navigeren-nederland-weg-vragen,
    .responses-title-navigeren-nederland-weg-vragen,
    .practical-title-navigeren-nederland-weg-vragen {
      word-break: break-word;
    }

    .hero-stats-navigeren-nederland-weg-vragen {
      gap: 1rem;
      justify-content: center;
    }

    .stat-number-navigeren-nederland-weg-vragen {
      font-size: 1.5rem;
    }
  }

  @media (min-width: 768px) {
    .section-header-navigeren-nederland-weg-vragen {
      margin-bottom: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .section-header-navigeren-nederland-weg-vragen {
      margin-bottom: 4rem;
    }
  }

.main-gezondheid-medisch-nederlands {
  width: 100%;
  background: #ffffff;
}

.main-gezondheid-medisch-nederlands section,
[class*="-section-gezondheid-medisch-nederlands"] {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumb-link-gezondheid-medisch-nederlands {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-gezondheid-medisch-nederlands:hover {
  color: #0891b2;
  text-decoration: underline;
}

.breadcrumb-separator-gezondheid-medisch-nederlands {
  color: #cbd5e1;
}

.breadcrumb-current-gezondheid-medisch-nederlands {
  color: #64748b;
}

.hero-section-gezondheid-medisch-nederlands {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

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

.hero-text-block-gezondheid-medisch-nederlands {
  flex: 1 1 350px;
  max-width: 50%;
}

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

.hero-subtitle-gezondheid-medisch-nederlands {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #06b6d4;
  margin-bottom: 1.5rem;
}

.hero-description-gezondheid-medisch-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-stats-gezondheid-medisch-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}

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

.stat-number-gezondheid-medisch-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-gezondheid-medisch-nederlands {
  font-size: 0.875rem;
  color: #9ca3af;
}

.hero-image-gezondheid-medisch-nederlands {
  flex: 1 1 350px;
  max-width: 50%;
}

.hero-img-gezondheid-medisch-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

.intro-content-gezondheid-medisch-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-block-gezondheid-medisch-nederlands {
  flex: 1 1 350px;
  max-width: 50%;
}

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

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

.intro-highlight-gezondheid-medisch-nederlands {
  background: #f0f9ff;
  border-left: 4px solid #06b6d4;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-gezondheid-medisch-nederlands {
  font-size: 0.9375rem;
  color: #0c4a6e;
  line-height: 1.6;
}

.intro-image-gezondheid-medisch-nederlands {
  flex: 1 1 350px;
  max-width: 50%;
}

.intro-img-gezondheid-medisch-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.appointments-section-gezondheid-medisch-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.section-tag-gezondheid-medisch-nederlands {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.appointments-subtitle-gezondheid-medisch-nederlands {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.appointments-wrapper-gezondheid-medisch-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.appointments-text-gezondheid-medisch-nederlands {
  flex: 1 1 350px;
  max-width: 50%;
}

.appointments-subheading-gezondheid-medisch-nederlands {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.appointments-description-gezondheid-medisch-nederlands {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.appointments-steps-gezondheid-medisch-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.appointment-step-gezondheid-medisch-nederlands {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.step-number-gezondheid-medisch-nederlands {
  font-size: 1.75rem;
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.step-content-gezondheid-medisch-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-gezondheid-medisch-nederlands {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.step-text-gezondheid-medisch-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.appointments-image-gezondheid-medisch-nederlands {
  flex: 1 1 350px;
  max-width: 50%;
}

.appointments-img-gezondheid-medisch-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.symptoms-section-gezondheid-medisch-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.symptoms-wrapper-gezondheid-medisch-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.symptoms-image-gezondheid-medisch-nederlands {
  flex: 1 1 350px;
  max-width: 50%;
}

.symptoms-img-gezondheid-medisch-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.symptoms-text-gezondheid-medisch-nederlands {
  flex: 1 1 350px;
  max-width: 50%;
}

.symptoms-subheading-gezondheid-medisch-nederlands {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.symptoms-description-gezondheid-medisch-nederlands {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.symptoms-cards-gezondheid-medisch-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.symptom-card-gezondheid-medisch-nederlands {
  flex: 1 1 200px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.card-title-gezondheid-medisch-nederlands {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.card-text-gezondheid-medisch-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

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

.symptoms-subtitle-gezondheid-medisch-nederlands {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.vocabulary-section-gezondheid-medisch-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.vocabulary-subtitle-gezondheid-medisch-nederlands {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.vocabulary-wrapper-gezondheid-medisch-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  margin-top: 2rem;
}

.vocabulary-text-gezondheid-medisch-nederlands {
  flex: 1 1 350px;
  max-width: 50%;
}

.vocabulary-intro-gezondheid-medisch-nederlands {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vocabulary-list-gezondheid-medisch-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vocab-item-gezondheid-medisch-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.875rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  align-items: center;
  justify-content: space-between;
}

.vocab-term-gezondheid-medisch-nederlands {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
}

.vocab-meaning-gezondheid-medisch-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  font-style: italic;
}

.vocabulary-image-gezondheid-medisch-nederlands {
  flex: 1 1 350px;
  max-width: 50%;
}

.vocabulary-img-gezondheid-medisch-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.conversation-section-gezondheid-medisch-nederlands {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.conversation-subtitle-gezondheid-medisch-nederlands {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.conversation-wrapper-gezondheid-medisch-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.conversation-example-gezondheid-medisch-nederlands {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #f0f9ff;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.example-header-gezondheid-medisch-nederlands {
  border-bottom: 2px solid #06b6d4;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.example-title-gezondheid-medisch-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0c4a6e;
  margin: 0;
}

.example-content-gezondheid-medisch-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.example-line-gezondheid-medisch-nederlands {
  font-size: 0.9375rem;
  color: #0f172a;
  line-height: 1.6;
  margin: 0;
}

.practical-section-gezondheid-medisch-nederlands {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.practical-subtitle-gezondheid-medisch-nederlands {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.tips-wrapper-gezondheid-medisch-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  margin-top: 2rem;
}

.tips-image-gezondheid-medisch-nederlands {
  flex: 1 1 350px;
  max-width: 50%;
}

.tips-img-gezondheid-medisch-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.tips-text-gezondheid-medisch-nederlands {
  flex: 1 1 350px;
  max-width: 50%;
}

.tips-cards-gezondheid-medisch-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-card-gezondheid-medisch-nederlands {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
flex-direction: column;
}

.tip-number-gezondheid-medisch-nederlands {
  font-size: 1.5rem;
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.tip-card-title-gezondheid-medisch-nederlands {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.25rem 0;
}

.tip-card-text-gezondheid-medisch-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.cta-section-gezondheid-medisch-nederlands {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cta-box-gezondheid-medisch-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: 16px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.cta-title-gezondheid-medisch-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

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

.cta-button-gezondheid-medisch-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #06b6d4;
  color: #0f172a;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  align-self: center;
}

.cta-button-gezondheid-medisch-nederlands:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

.disclaimer-section-gezondheid-medisch-nederlands {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.disclaimer-box-gezondheid-medisch-nederlands {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #eff6ff;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.disclaimer-title-gezondheid-medisch-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0c4a6e;
  margin: 0 0 0.75rem 0;
}

.disclaimer-text-gezondheid-medisch-nederlands {
  font-size: 0.9375rem;
  color: #0f172a;
  line-height: 1.7;
  margin: 0;
}

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

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

.related-subtitle-gezondheid-medisch-nederlands {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-gezondheid-medisch-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.related-card-gezondheid-medisch-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.related-card-image-gezondheid-medisch-nederlands {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-gezondheid-medisch-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  flex-grow: 1;
}

.related-card-title-gezondheid-medisch-nederlands {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

.related-card-text-gezondheid-medisch-nederlands {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-gezondheid-medisch-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-gezondheid-medisch-nederlands:hover {
  color: #0891b2;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-gezondheid-medisch-nederlands,
  .intro-content-gezondheid-medisch-nederlands,
  .appointments-wrapper-gezondheid-medisch-nederlands,
  .symptoms-wrapper-gezondheid-medisch-nederlands,
  .vocabulary-wrapper-gezondheid-medisch-nederlands,
  .tips-wrapper-gezondheid-medisch-nederlands {
    flex-direction: column;
  }

  .hero-text-block-gezondheid-medisch-nederlands,
  .hero-image-gezondheid-medisch-nederlands,
  .intro-text-block-gezondheid-medisch-nederlands,
  .intro-image-gezondheid-medisch-nederlands,
  .appointments-text-gezondheid-medisch-nederlands,
  .appointments-image-gezondheid-medisch-nederlands,
  .symptoms-text-gezondheid-medisch-nederlands,
  .symptoms-image-gezondheid-medisch-nederlands,
  .vocabulary-text-gezondheid-medisch-nederlands,
  .vocabulary-image-gezondheid-medisch-nederlands,
  .tips-text-gezondheid-medisch-nederlands,
  .tips-image-gezondheid-medisch-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-gezondheid-medisch-nederlands {
    flex-direction: column;
  }

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

  .hero-stats-gezondheid-medisch-nederlands {
    gap: 1.5rem;
  }

  .appointment-step-gezondheid-medisch-nederlands {
    flex-direction: column;
    gap: 0.75rem;
  }

  .step-number-gezondheid-medisch-nederlands {
    min-width: auto;
  }

  .conversation-wrapper-gezondheid-medisch-nederlands {
    gap: 1.5rem;
  }

  .conversation-example-gezondheid-medisch-nederlands {
    flex: 1 1 100%;
  }

  .tip-card-gezondheid-medisch-nederlandse {
    flex-direction: column;
    gap: 0.75rem;
  }

  .tip-number-gezondheid-medisch-nederlands {
    min-width: auto;
  }

  .vocabulary-item-gezondheid-medisch-nederlands {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .vocab-meaning-gezondheid-medisch-nederlands {
    align-self: flex-start;
  }
}

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

  .intro-section-gezondheid-medisch-nederlands,
  .appointments-section-gezondheid-medisch-nederlands,
  .symptoms-section-gezondheid-medisch-nederlands,
  .vocabulary-section-gezondheid-medisch-nederlands,
  .conversation-section-gezondheid-medisch-nederlands,
  .practical-section-gezondheid-medisch-nederlands,
  .related-section-gezondheid-medisch-nederlands {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .cta-section-gezondheid-medisch-nederlands {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .disclaimer-section-gezondheid-medisch-nederlands {
    padding: clamp(2.5rem, 6vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-gezondheid-medisch-nederlands {
    padding: 6rem 0;
  }

  .intro-section-gezondheid-medisch-nederlands,
  .appointments-section-gezondheid-medisch-nederlands,
  .symptoms-section-gezondheid-medisch-nederlands,
  .vocabulary-section-gezondheid-medisch-nederlands,
  .conversation-section-gezondheid-medisch-nederlands,
  .practical-section-gezondheid-medisch-nederlands,
  .related-section-gezondheid-medisch-nederlands {
    padding: 6rem 0;
  }

  .cta-section-gezondheid-medisch-nederlands {
    padding: 6rem 0;
  }

  .related-cards-gezondheid-medisch-nederlands {
    gap: 2rem;
  }

  .conversation-wrapper-gezondheid-medisch-nederlands {
    gap: 2rem;
  }
}

:root {
  --color-bg-dark-primary: #111827;
  --color-bg-dark-secondary: #1f2937;
  --color-bg-dark-tertiary: #374151;
  --color-bg-dark-card: rgba(6, 182, 212, 0.08);
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-light-card: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #9ca3af;
  --color-text-dark-muted: #6b7280;
  --color-text-light-primary: #111827;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #9ca3af;
  --color-primary: #06b6d4;
  --color-primary-hover: #0891b2;
  --color-secondary: #22d3ee;
  --color-accent-warm: #f59e0b;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
}

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

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

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

.language-learning-narrative-about {
  width: 100%;
}

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

.hero-language-content-about {
  display: flex;
  flex-direction: column !important;
  gap: clamp(2rem, 5vw, 3rem);
}

.hero-language-text-about {
  max-width: 700px;
}

.hero-language-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.hero-language-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-language-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-language-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(6, 182, 212, 0.3);
}

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

.stat-number-about {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

@media (min-width: 768px) {
  .hero-language-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .hero-language-content-about {
    gap: clamp(2.5rem, 6vw, 4rem);
  }
}

@media (min-width: 1024px) {
  .hero-language-content-about {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .hero-language-text-about {
    flex: 1;
  }

  .hero-language-visual-about {
    flex: 1;
    max-width: none;
    margin-top: 0;
  }
}

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

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

.philosophy-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.philosophy-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.philosophy-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.philosophy-intro-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.philosophy-principles-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-card-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.principle-number-about {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.principle-title-about {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.principle-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .teaching-philosophy-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .philosophy-principles-about {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .principle-card-about {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
  }
}

@media (min-width: 1024px) {
  .principle-card-about {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

.immersion-experience-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

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

.experience-text-about {
  flex: 1;
}

.experience-intro-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.experience-highlight-about {
  padding: 1.5rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.experience-highlight-text-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1.6;
  font-style: italic;
}

.experience-details-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.detail-item-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon-about {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.detail-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .immersion-experience-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .immersion-experience-content-about {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .experience-visual-about {
    flex: 1;
    margin-bottom: 0;
  }

  .experience-text-about {
    flex: 1;
  }
}

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

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

.pathways-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.pathways-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.pathways-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.pathways-intro-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.pathway-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.pathway-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
}

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

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

.step-title-about {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.step-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .learning-pathways-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

.impact-commitment-section-about {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(34, 211, 238, 0.1));
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.impact-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem;
}

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

.value-item-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: var(--shadow-sm);
}

.value-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  margin: 0 auto;
}

.value-title-about {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.value-text-about {
  font-size: 0.875rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .impact-commitment-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .impact-values-about {
    gap: 2rem;
  }

  .value-item-about {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .value-item-about {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}

.disclaimer-section-about {
  background: var(--color-bg-dark-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

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

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

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

.disclaimer-title-about {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .disclaimer-section-about {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .disclaimer-text-about {
    font-size: 0.9375rem;
  }
}

@media (max-width: 767px) {
  .hero-language-stats-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .principle-card-about {
    flex: 1 1 100%;
  }

  .pathway-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    min-width: auto;
  }

  .value-item-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.docs-portal {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-light-primary);
  color: var(--color-text-light-primary);
}

.docs-portal .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.docs-portal-hero {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-bottom: 1px solid var(--color-bg-light-tertiary);
  overflow: hidden;
}

.docs-portal-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.docs-portal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-portal-hero-meta {
  font-size: 0.875rem;
  color: var(--color-text-light-muted);
  font-weight: 500;
}

.docs-portal-section {
  background: var(--color-bg-light-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 1px solid var(--color-bg-light-tertiary);
  overflow: hidden;
}

.docs-portal-section:last-of-type {
  border-bottom: none;
}

.docs-portal-section-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.docs-portal-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.875rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-portal-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
  margin-top: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-portal-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-portal-section ul,
.docs-portal-section ol {
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.docs-portal-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-portal-section strong {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

.docs-portal-contact {
  background: var(--color-bg-light-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--color-bg-light-tertiary);
  overflow: hidden;
}

.docs-portal-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.docs-portal-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.875rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-portal-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-portal-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.docs-portal-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.docs-portal-contact-label {
  font-weight: 600;
  color: var(--color-text-light-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.docs-portal-contact-value {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

@media (min-width: 768px) {
  .docs-portal-hero {
    padding: 4rem 0 3rem 0;
  }

  .docs-portal-section {
    padding: 3.5rem 0;
  }

  .docs-portal-contact {
    padding: 3.5rem 0;
  }
}

@media (min-width: 1024px) {
  .docs-portal-hero {
    padding: 5rem 0 4rem 0;
  }

  .docs-portal-section {
    padding: 4rem 0;
  }

  .docs-portal-contact {
    padding: 4rem 0;
  }
}

.thank-you-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-dark-primary);
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4rem, 12vw, 6rem);
  height: clamp(4rem, 12vw, 6rem);
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.15);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.thank-icon i {
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--color-primary);
}

.thank-section h1 {
  color: var(--color-text-dark-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  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-weight: 600;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-message {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: clamp(0.5rem, 2vw, 1rem) 0 0 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: clamp(0.5rem, 1.5vw, 1rem) 0 0 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  width: 100%;
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.thank-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  background: var(--color-bg-dark-card);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.thank-feature i {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-primary);
}

.thank-feature p {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-base);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

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

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

  .thank-features {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    margin: clamp(1.5rem, 4vw, 2.5rem) 0;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    gap: 2.5rem;
  }

  .thank-icon {
    margin-bottom: 1rem;
  }

  .thank-features {
    gap: 2rem;
    margin: 2.5rem 0;
  }

  .thank-feature {
    padding: 1.5rem;
  }

  .btn {
    padding: 1rem 2.5rem;
  }

  .btn-primary:hover {
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.4);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: 3rem;
  }

  .thank-features {
    gap: 2.5rem;
    margin: 3rem 0;
  }
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.error-section {
  background: var(--color-bg-dark-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
  position: relative;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.error-decoration {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-secondary);
  opacity: 0.8;
  animation: float-icon 3s ease-in-out infinite;
}

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

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.error-message {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 500px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 500px;
}

.suggestion-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-secondary);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  line-height: 1.5;
}

.suggestion-text i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.error-illustration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  color: var(--color-primary);
}

.element-1 {
  top: 10%;
  left: 5%;
  animation: float-element 6s ease-in-out infinite;
}

.element-2 {
  top: 60%;
  right: 8%;
  animation: float-element 8s ease-in-out infinite 1s;
}

.element-3 {
  bottom: 15%;
  left: 10%;
  animation: float-element 7s ease-in-out infinite 0.5s;
}

@keyframes float-element {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) translateX(10px) rotate(5deg);
  }
  50% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  75% {
    transform: translateY(-20px) translateX(-10px) rotate(-5deg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }

  .error-code {
    margin-bottom: 1.5rem;
  }

  .error-title {
    margin-bottom: 1.5rem;
  }

  .error-message {
    margin-bottom: 2.5rem;
  }

  .floating-element {
    font-size: 4rem;
  }
}

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

  .floating-element {
    font-size: 5rem;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

@media (min-width: 1440px) {
  .error-code {
    margin-bottom: 2rem;
  }

  .floating-element {
    font-size: 6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration,
  .floating-element,
  .btn {
    animation: none;
    transition: none;
  }
}

.error-code,
.error-title,
.error-message {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.header-nederlands-portal-mobile-toggle[aria-expanded="true"]{
  display: none;
} 