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

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

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

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

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

.card-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

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

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

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

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

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

.form-label {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.form-submit-btn {
  padding: var(--space-md) var(--space-lg);
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

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

.form-submit-btn:active {
  transform: translateY(0);
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.badge-warning {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

ul, ol {
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

i, [class^="fa-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 320px) {
  body {
    font-size: 14px;
  }
}

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

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

@media (min-width: 1440px) {
  .container {
    padding: 0 2rem;
  }
}

@media print {
  body {
    background: white;
    color: black;
  }
  
  a {
    color: #0066cc;
  }
}

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

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

button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #7c8fa8;
  --color-primary: #3b82f6;
  --color-primary-hover: #60a5fa;
  --color-secondary: #06b6d4;
  --color-accent-warm: #fbbf24;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(59, 130, 246, 0.15);
  --shadow-lg: 0 10px 30px rgba(59, 130, 246, 0.2);
  --shadow-xl: 0 20px 50px rgba(59, 130, 246, 0.25);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

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

.header-dutch-flow {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  position: static;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

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

.header-dutch-flow-logo-text {
  font-weight: 700;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

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

.header-dutch-flow-nav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-bottom: 0.25rem;
}

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

.header-dutch-flow-nav-link:hover {
  color: var(--color-primary);
}

.header-dutch-flow-nav-link:hover::after {
  width: 100%;
}

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

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

.header-dutch-flow-cta-button:active {
  transform: translateY(0);
}

.header-dutch-flow-cta-button:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

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

.header-dutch-flow-mobile-toggle:hover {
  color: var(--color-primary);
}

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

.header-dutch-flow-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  padding-top: clamp(60px, 10vw, 80px);
  padding-bottom: var(--space-lg);
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 90;
  overflow-y: auto;
}

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

.header-dutch-flow-mobile-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--space-xl);
}

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

.header-dutch-flow-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-dutch-flow-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex: 1;
}

.header-dutch-flow-mobile-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.25rem);
  transition: all 300ms ease;
  padding: var(--space-sm) 0;
}

.header-dutch-flow-mobile-link:hover {
  color: var(--color-primary);
  padding-left: var(--space-sm);
}

.header-dutch-flow-mobile-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.header-dutch-flow-mobile-cta {
  background: var(--color-primary);
  color: #0c1929;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  display: block;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

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

.header-dutch-flow-mobile-cta:active {
  transform: translateY(0);
}

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

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

  .header-dutch-flow-mobile-menu {
    display: none;
  }

  .header-dutch-flow-desktop-nav {
    display: flex;
  }

  .header-dutch-flow-cta-button {
    display: block;
  }
}

@media (max-width: 767px) {
  .header-dutch-flow-container {
    height: clamp(56px, 9vw, 72px);
  }

  .header-dutch-flow-logo-text {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
  }
}

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

    

.language-hub {
  width: 100%;
  background: #0c1929;
}

.hero-section-index {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: #0c1929;
  overflow: hidden;
  width: 100%;
}

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

.hero-gradient-mesh-index {
  position: absolute;
  top: 15%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-orb-left-index {
  position: absolute;
  bottom: 10%;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-shape-accent-index {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 180px;
  height: 200px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-line-element-index {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-corner-pulse-index {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 120px;
  height: 120px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-title-index {
  font-size: clamp(2rem, 6vw + 1rem, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
  word-wrap: break-word;
}

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

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

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

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

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

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

.btn-primary-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
  background: #3b82f6;
  color: #0c1929;
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

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

.btn-secondary-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
  background: transparent;
  color: #ffffff;
  border: 2px solid #bfdbfe;
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}

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

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

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

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

.features-deco-glow-right-index {
  position: absolute;
  top: 20%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.07);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-deco-shape-index {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 220px;
  height: 180px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.features-accent-line-index {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.features-tag-index {
  display: inline-block;
  padding: 0.375rem 1.125rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

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

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

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

.features-card-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  color: #bfdbfe;
}

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

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

.learning-path-deco-top-index {
  position: absolute;
  top: 5%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-deco-bottom-index {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-accent-index {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.learning-path-tag-index {
  display: inline-block;
  padding: 0.375rem 1.125rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.learning-path-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.learning-path-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
}

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

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

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

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

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

.learning-path-step-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  color: #bfdbfe;
}

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

.featured-posts-deco-mesh-index {
  position: absolute;
  top: 15%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.featured-posts-deco-accent-index {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.featured-posts-deco-orb-index {
  position: absolute;
  top: 50%;
  right: -60px;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.featured-posts-tag-index {
  display: inline-block;
  padding: 0.375rem 1.125rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.featured-post-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

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

.featured-post-card-index img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

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

.featured-post-card-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #bfdbfe;
}

.featured-post-card-cta-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #60a5fa;
  font-weight: 600;
  margin-top: auto;
  transition: all 300ms ease;
}

.featured-post-card-index:hover .featured-post-card-cta-index {
  color: #ffffff;
  transform: translateX(4px);
}

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

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

.testimonial-section-index {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #0c1929;
  overflow: hidden;
  width: 100%;
}

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

.testimonial-deco-shape-index {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 220px;
  height: 180px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-accent-line-index {
  position: absolute;
  top: 40%;
  right: 8%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.testimonial-header-index {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.testimonial-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.testimonial-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.testimonial-quote-index {
  position: relative;
  z-index: 10;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.testimonial-quote-author-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  font-style: normal;
  font-weight: 500;
}

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

.testimonial-benefit-item-index {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  color: #bfdbfe;
}

.testimonial-benefit-item-index i {
  color: #60a5fa;
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.about-deco-orb-left-index {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.07);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.about-deco-accent-index {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.about-text-block-index {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.about-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: #bfdbfe;
}

.about-image-block-index {
  flex: 1 1 350px;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.about-image-block-index img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text-block-index .btn-primary-index {
  width: fit-content;
  margin-top: 0.5rem;
}

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

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

.cta-section-index {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #0c1929;
  overflow: hidden;
  width: 100%;
}

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

.cta-deco-glow-bottom-index {
  position: absolute;
  bottom: -50px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

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

.cta-box-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-box-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.btn-cta-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 1.5vw, 1.375rem) clamp(2rem, 4vw, 3rem);
  background: #3b82f6;
  color: #0c1929;
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

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

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

.contact-deco-field-index {
  position: absolute;
  top: 15%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-accent-index {
  position: absolute;
  bottom: 20%;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.07);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.contact-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

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

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

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

.contact-label-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: #e2e8f0;
}

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-family: var(--font-primary);
  transition: all 300ms ease;
}

.contact-input-index::placeholder,
.contact-textarea-index::placeholder {
  color: #7c8fa8;
}

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

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

.contact-privacy-index {
  margin: 0.5rem 0;
}

.contact-privacy-text-index {
  font-size: clamp(0.8rem, 1vw, 0.875rem);
  color: #94a3b8;
  line-height: 1.5;
}

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

.contact-privacy-link-index:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact-submit-index {
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
  background: #3b82f6;
  color: #0c1929;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
  margin-top: 0.5rem;
}

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

.contact-info-wrapper-index {
  flex: 1 1 350px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

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

.contact-info-item-index i {
  color: #60a5fa;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

.contact-info-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.contact-info-description-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.contact-faq-section-index {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-faq-title-index {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

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

.contact-faq-question-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #e2e8f0;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-faq-answer-index {
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

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

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

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

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  align-items: center;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  cursor: pointer;
  transition: all 300ms ease;
  border: none;
  font-family: var(--font-primary);
}

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

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

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

.cookie-btn-decline:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

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

  .features-section-index,
  .learning-path-section-index,
  .featured-posts-section-index,
  .testimonial-section-index,
  .about-section-index,
  .contact-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

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

  .features-section-index,
  .learning-path-section-index,
  .featured-posts-section-index,
  .testimonial-section-index,
  .about-section-index,
  .contact-section-index {
    padding: 8rem 0;
  }
}

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

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

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

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

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

.footer-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.footer-about {
  display: block;
}

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

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

.footer-navigation,
.footer-contact,
.footer-legal {
  display: block;
}

.footer-nav-title,
.footer-contact-title,
.footer-legal-title {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

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

.footer-nav-link,
.footer-legal-link {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #bfdbfe;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.footer-nav-link:hover,
.footer-legal-link:hover {
  color: #60a5fa;
  transform: translateX(3px);
}

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

.footer-contact-item {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: #bfdbfe;
  margin: 0;
  padding: 0;
}

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

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

.footer-copyright {
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  color: #7c8fa8;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
  }

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

  .footer-nav-list,
  .footer-legal-list {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

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

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

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

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

  .footer-nav-list,
  .footer-legal-list {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

  .footer-nav-link:hover,
  .footer-legal-link:hover {
    transform: none;
  }
}
    

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

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

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

.hero-gradient-mesh-dutch {
  position: absolute;
  top: 20%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-dutch {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-light-burst-dutch {
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: rgba(191, 219, 254, 0.04);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-content-dutch-language {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
}

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

.hero-title-dutch-language {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

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

.hero-stats-dutch-language {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 1rem;
}

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

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

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

@media (min-width: 768px) {
  .hero-section-dutch-language {
    padding: 5rem 0 6rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-dutch-language {
    padding: 6rem 0 7rem 0;
  }
}

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

.posts-deco-element-1-dutch {
  position: absolute;
  top: 15%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%;
  z-index: 1;
  pointer-events: none;
}

.posts-deco-element-2-dutch {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-element-3-dutch {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.posts-tag-dutch-language {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

.card-link-dutch-language {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #3b82f6;
  color: #0c1929;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.card-link-dutch-language:hover {
  background: #60a5fa;
  transform: translateX(3px);
}

.card-link-dutch-language:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

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

@media (min-width: 768px) {
  .posts-section-dutch-language {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .posts-section-dutch-language {
    padding: 6rem 0;
  }
}

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

.learning-deco-accent-1-dutch {
  position: absolute;
  top: 20%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.learning-header-dutch-language {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

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

.learning-subtitle-dutch-language {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.learning-steps-dutch-language {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

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

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

.step-title-dutch-language {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
}

.step-text-dutch-language {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .learning-path-section-dutch-language {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .learning-path-section-dutch-language {
    padding: 6rem 0;
  }
}

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

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

.features-deco-shape-dutch {
  position: absolute;
  bottom: 10%;
  left: -60px;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.07);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.features-title-dutch-language {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.features-subtitle-dutch-language {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.featured-quote-dutch-language {
  position: relative;
  z-index: 10;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin: clamp(2rem, 4vw, 3rem) auto;
  max-width: 800px;
}

.quote-text-dutch-language {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  font-weight: 500;
}

.quote-author-dutch-language {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
  font-weight: 500;
  display: block;
}

@media (min-width: 768px) {
  .features-section-dutch-language {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .features-section-dutch-language {
    padding: 6rem 0;
  }
}

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

@media (max-width: 480px) {
  .hero-stats-dutch-language {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .stat-number-dutch-language {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
}

.main-conversatievaardigheden-nederland {
  width: 100%;
}

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

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

.hero-text-wrapper-conversatievaardigheden-nederland {
  flex: 1 1 400px;
  max-width: 550px;
}

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

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

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

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

.meta-badge-conversatievaardigheden-nederland i {
  color: #3b82f6;
}

.hero-stats-conversatievaardigheden-nederland {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

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

.stat-label-conversatievaardigheden-nederland {
  font-size: 0.8125rem;
  color: #7c8fa8;
  font-weight: 500;
}

.hero-image-wrapper-conversatievaardigheden-nederland {
  flex: 1 1 400px;
  max-width: 500px;
}

.hero-image-conversatievaardigheden-nederland {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  max-height: 400px;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
}

@media (max-width: 768px) {
  .hero-content-conversatievaardigheden-nederland {
    flex-direction: column;
  }
  
  .hero-text-wrapper-conversatievaardigheden-nederland,
  .hero-image-wrapper-conversatievaardigheden-nederland {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.introduction-text-conversatievaardigheden-nederland {
  flex: 1 1 400px;
  max-width: 550px;
}

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

.introduction-content-conversatievaardigheden-nederland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.introduction-image-conversatievaardigheden-nederland {
  flex: 1 1 400px;
  max-width: 500px;
}

.introduction-img-conversatievaardigheden-nederland {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  max-height: 400px;
}

@media (max-width: 768px) {
  .introduction-wrapper-conversatievaardigheden-nederland {
    flex-direction: column;
  }
  
  .introduction-text-conversatievaardigheden-nederland,
  .introduction-image-conversatievaardigheden-nederland {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.foundations-header-conversatievaardigheden-nederland {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.foundations-steps-conversatievaardigheden-nederland {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-conversatievaardigheden-nederland {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

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

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

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

.step-text-conversatievaardigheden-nederland {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-item-conversatievaardigheden-nederland {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

.techniques-text-conversatievaardigheden-nederland {
  flex: 1 1 400px;
  max-width: 550px;
}

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

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

.techniques-list-conversatievaardigheden-nederland {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.technique-item-conversatievaardigheden-nederland {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.technique-item-conversatievaardigheden-nederland:last-child {
  border-bottom: none;
}

.technique-name-conversatievaardigheden-nederland {
  font-size: 1.125rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.technique-desc-conversatievaardigheden-nederland {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.techniques-image-conversatievaardigheden-nederland {
  flex: 1 1 400px;
  max-width: 500px;
}

.techniques-img-conversatievaardigheden-nederland {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  max-height: 400px;
}

@media (max-width: 768px) {
  .techniques-wrapper-conversatievaardigheden-nederland {
    flex-direction: column;
  }
  
  .techniques-text-conversatievaardigheden-nederland,
  .techniques-image-conversatievaardigheden-nederland {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-section-conversatievaardigheden-nederland {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-header-conversatievaardigheden-nederland {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.strategies-cards-conversatievaardigheden-nederland {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

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

.strategy-card-conversatievaardigheden-nederland:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

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

.card-title-conversatievaardigheden-nederland {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-weight: 600;
}

.card-text-conversatievaardigheden-nederland {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.application-section-conversatievaardigheden-nederland {
  background: #f8f9fa;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.application-image-conversatievaardigheden-nederland {
  flex: 1 1 400px;
  max-width: 500px;
  order: -1;
}

.application-img-conversatievaardigheden-nederland {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  max-height: 400px;
}

.application-text-conversatievaardigheden-nederland {
  flex: 1 1 400px;
  max-width: 550px;
}

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

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

.featured-quote-conversatievaardigheden-nederland {
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 4px solid #3b82f6;
  background: #eff6ff;
  margin: 1.5rem 0;
  font-style: italic;
}

.quote-text-conversatievaardigheden-nederland {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-conversatievaardigheden-nederland {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.scenarios-title-conversatievaardigheden-nederland {
  font-size: 1.125rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.scenarios-list-conversatievaardigheden-nederland {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.scenario-item-conversatievaardigheden-nederland {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.scenario-item-conversatievaardigheden-nederland::before {
  content: "";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

@media (max-width: 768px) {
  .application-wrapper-conversatievaardigheden-nederland {
    flex-direction: column;
  }
  
  .application-image-conversatievaardigheden-nederland,
  .application-text-conversatievaardigheden-nederland {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

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

.challenges-header-conversatievaardigheden-nederland {
  text-align: center;
  margin-bottom: 3rem;
}

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

.challenges-subtitle-conversatievaardigheden-nederland {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.challenges-content-conversatievaardigheden-nederland {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.challenge-block-conversatievaardigheden-nederland {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.challenge-heading-conversatievaardigheden-nederland {
  font-size: 1.125rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.challenge-text-conversatievaardigheden-nederland {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
}

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

.summary-content-conversatievaardigheden-nederland {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

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

.summary-text-conversatievaardigheden-nederland {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.summary-cta-box-conversatievaardigheden-nederland {
  background: rgba(59, 130, 246, 0.1);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.cta-title-conversatievaardigheden-nederland {
  font-size: 1.375rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-text-conversatievaardigheden-nederland {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.summary-cta-box-conversatievaardigheden-nederland .btn {
  margin-top: 1rem;
}

.disclaimer-section-conversatievaardigheden-nederland {
  background: #f8f9fa;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-box-conversatievaardigheden-nederland {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #fbbf24;
  border-radius: 8px;
}

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

.disclaimer-text-conversatievaardigheden-nederland {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
}

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

.related-header-conversatievaardigheden-nederland {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.related-card-conversatievaardigheden-nederland {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.related-card-content-conversatievaardigheden-nederland {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

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

.related-card-link-conversatievaardigheden-nederland:hover {
  color: #60a5fa;
}

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

.breadcrumbs-conversatievaardigheden-nederland {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-conversatievaardigheden-nederland {
  color: #bfdbfe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-conversatievaardigheden-nederland:hover {
  color: #3b82f6;
}

.breadcrumb-separator-conversatievaardigheden-nederland {
  color: #7c8fa8;
  margin: 0 0.25rem;
}

.breadcrumb-current-conversatievaardigheden-nederland {
  color: #3b82f6;
  font-weight: 500;
}

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

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

@media (min-width: 1440px) {
  .container {
    padding: 0 2rem;
  }
}

.main-nederlands-vocabulaire-dagelijks {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

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

.breadcrumb-link-nederlands-vocabulaire-dagelijks {
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlands-vocabulaire-dagelijks:hover {
  color: var(--color-primary);
}

.breadcrumb-separator-nederlands-vocabulaire-dagelijks {
  color: var(--color-text-muted);
}

.breadcrumb-current-nederlands-vocabulaire-dagelijks {
  color: var(--color-primary);
  font-weight: 600;
}

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

.hero-text-wrapper-nederlands-vocabulaire-dagelijks {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-title-nederlands-vocabulaire-dagelijks {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-badges-nederlands-vocabulaire-dagelijks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

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

.meta-badge-nederlands-vocabulaire-dagelijks i {
  color: var(--color-primary);
}

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

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

.stat-number-nederlands-vocabulaire-dagelijks {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-nederlands-vocabulaire-dagelijks {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
}

.hero-image-wrapper-nederlands-vocabulaire-dagelijks {
  flex: 1 1 280px;
  min-width: 250px;
}

.hero-featured-image-nederlands-vocabulaire-dagelijks {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

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

  .hero-stats-nederlands-vocabulaire-dagelijks {
    gap: 1.5rem;
  }
}

.introduction-section-nederlands-vocabulaire-dagelijks {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.introduction-content-nederlands-vocabulaire-dagelijks {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-netherlands-vocabulaire-dagelijks {
  flex: 1 1 320px;
  min-width: 300px;
}

.introduction-title-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-paragraph-nederlands-vocabulaire-dagelijks {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-image-netherlands-vocabulaire-dagelijks {
  flex: 1 1 300px;
  min-width: 250px;
}

.introduction-featured-image-nederlands-vocabulaire-dagelijks {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

  .introduction-image-netherlands-vocabulaire-dagelijks {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.methodology-section-nederlands-vocabulaire-dagelijks {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.methodology-header-nederlands-vocabulaire-dagelijks {
  text-align: center;
  margin-bottom: 3rem;
}

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

.methodology-title-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.methodology-subtitle-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.methodology-steps-nederlands-vocabulaire-dagelijks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methodology-step-nederlands-vocabulaire-dagelijks {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.methodology-step-nederlands-vocabulaire-dagelijks:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.methodology-step-number-nederlands-vocabulaire-dagelijks {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 70px;
  line-height: 1;
}

.methodology-step-content-nederlands-vocabulaire-dagelijks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.methodology-step-title-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.methodology-step-text-nederlands-vocabulaire-dagelijks {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .methodology-step-nederlands-vocabulaire-dagelijks {
    gap: 1rem;
  }

  .methodology-step-number-nederlands-vocabulaire-dagelijks {
    min-width: 50px;
  }
}

.vocabulary-categories-section-nederlands-vocabulaire-dagelijks {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.vocabulary-categories-wrapper-nederlands-vocabulaire-dagelijks {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: flex-start;
}

.vocabulary-categories-text-nederlands-vocabulaire-dagelijks {
  flex: 1 1 350px;
  min-width: 300px;
}

.vocabulary-categories-title-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.vocabulary-categories-description-nederlands-vocabulaire-dagelijks {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.vocabulary-categories-list-nederlands-vocabulaire-dagelijks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.vocabulary-category-item-nederlands-vocabulaire-dagelijks {
  flex: 1 1 180px;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.category-icon-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  display: block;
  margin-bottom: 0.75rem;
}

.category-name-nederlands-vocabulaire-dagelijks {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.category-description-nederlands-vocabulaire-dagelijks {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.vocabulary-categories-image-nederlands-vocabulaire-dagelijks {
  flex: 1 1 280px;
  min-width: 250px;
}

.vocabulary-image-nederlands-vocabulaire-dagelijks {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .vocabulary-categories-wrapper-nederlands-vocabulaire-dagelijks {
    flex-direction: column;
  }

  .vocabulary-categories-image-nederlands-vocabulaire-dagelijks {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .vocabulary-categories-list-nederlands-vocabulaire-dagelijks {
    gap: 0.75rem;
  }

  .vocabulary-category-item-nederlands-vocabulaire-dagelijks {
    flex: 1 1 100%;
  }
}

.learning-strategies-section-nederlands-vocabulaire-dagelijks {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.learning-strategies-header-nederlands-vocabulaire-dagelijks {
  text-align: center;
  margin-bottom: 3rem;
}

.learning-strategies-title-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.learning-strategies-subtitle-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.learning-strategies-wrapper-nederlands-vocabulaire-dagelijks {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 3rem;
}

.learning-strategy-card-nederlands-vocabulaire-dagelijks {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.learning-strategy-card-nederlands-vocabulaire-dagelijks:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.strategy-card-icon-nederlands-vocabulaire-dagelijks {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.strategy-card-title-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.strategy-card-text-nederlands-vocabulaire-dagelijks {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.learning-strategies-image-wrapper-nederlands-vocabulaire-dagelijks {
  width: 100%;
  margin-top: 1rem;
}

.learning-strategies-image-nederlands-vocabulaire-dagelijks {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .learning-strategies-wrapper-nederlands-vocabulaire-dagelijks {
    gap: 1rem;
  }

  .learning-strategy-card-nederlands-vocabulaire-dagelijks {
    flex: 1 1 100%;
    max-width: none;
  }
}

.tips-section-nederlands-vocabulaire-dagelijks {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.tips-content-wrapper-nederlands-vocabulaire-dagelijks {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: flex-start;
}

.tips-text-netherlands-vocabulaire-dagelijks {
  flex: 1 1 350px;
  min-width: 300px;
}

.tips-title-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.featured-quote-nederlands-vocabulaire-dagelijks {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  margin: 2rem 0;
  border-radius: var(--radius-lg);
}

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

.quote-author-nederlands-vocabulaire-dagelijks {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
}

.tips-list-nederlands-vocabulaire-dagelijks {
  padding-left: 1.5rem;
  margin-top: 1.5rem;
}

.tips-list-item-nederlands-vocabulaire-dagelijks {
  margin-bottom: 1.25rem;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.tips-list-item-nederlands-vocabulaire-dagelijks strong {
  color: var(--color-text-primary);
  font-weight: 700;
}

.tips-image-netherlands-vocabulaire-dagelijks {
  flex: 1 1 280px;
  min-width: 250px;
}

.tips-featured-image-nederlands-vocabulaire-dagelijks {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

  .tips-image-netherlands-vocabulaire-dagelijks {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-nederlands-vocabulaire-dagelijks {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.conclusion-content-nederlands-vocabulaire-dagelijks {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-nederlands-vocabulaire-dagelijks,
.conclusion-text-netherlands-vocabulaire-dagelijks {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-cta-box-nederlands-vocabulaire-dagelijks {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--color-text-primary);
  margin-top: 3rem;
}

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

.cta-box-text-nederlands-vocabulaire-dagelijks {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
}

.cta-box-button-nederlands-vocabulaire-dagelijks {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-box-button-nederlands-vocabulaire-dagelijks:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.related-posts-section-nederlands-vocabulaire-dagelijks {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.related-posts-header-nederlands-vocabulaire-dagelijks {
  text-align: center;
  margin-bottom: 3rem;
}

.related-posts-title-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.related-posts-subtitle-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
}

.related-posts-grid-nederlands-vocabulaire-dagelijks {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-post-card-nederlands-vocabulaire-dagelijks {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-post-card-nederlands-vocabulaire-dagelijks:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-post-image-nederlands-vocabulaire-dagelijks {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-post-content-nederlands-vocabulaire-dagelijks {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-post-title-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.4;
}

.related-post-description-nederlands-vocabulaire-dagelijks {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-post-link-nederlands-vocabulaire-dagelijks {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--color-primary);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-post-link-nederlands-vocabulaire-dagelijks:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-posts-grid-nederlands-vocabulaire-dagelijks {
    gap: 1rem;
  }

  .related-post-card-nederlands-vocabulaire-dagelijks {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-nederlands-vocabulaire-dagelijks {
  padding: clamp(3rem, 6vw, 4rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.disclaimer-box-nederlands-vocabulaire-dagelijks {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
}

.disclaimer-title-nederlands-vocabulaire-dagelijks {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-vocabulaire-dagelijks {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-section-netherlands-vocabulaire-dagelijks {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .introduction-section-nederlands-vocabulaire-dagelijks {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }

  .methodology-section-nederlands-vocabulaire-dagelijks {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }

  .vocabulary-categories-section-nederlands-vocabulaire-dagelijks {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }

  .learning-strategies-section-nederlands-vocabulaire-dagelijks {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }

  .tips-section-nederlands-vocabulaire-dagelijks {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }

  .conclusion-section-nederlands-vocabulaire-dagelijks {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }

  .related-posts-section-nederlands-vocabulaire-dagelijks {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }
}

@media (max-width: 320px) {
  .hero-stats-nederlands-vocabulaire-dagelijks {
    gap: 1rem;
  }

  .stat-number-nederlands-vocabulaire-dagelijks {
    font-size: 1.5rem;
  }
}

.main-nederlands-zakelijk-comunicatie {
  width: 100%;
  font-family: var(--font-primary);
}

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

.hero-section-nederlands-zakelijk-comunicatie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

.hero-content-nederlands-zakelijk-comunicatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.hero-image-nederlands-zakelijk-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.hero-title-nederlands-zakelijk-comunicatie {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

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

.hero-meta-nederlands-zakelijk-comunicatie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

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

.meta-badge-nederlands-zakelijk-comunicatie i {
  color: var(--color-primary);
}

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

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

.stat-number-nederlands-zakelijk-comunicatie {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-nederlands-zakelijk-comunicatie {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

.breadcrumbs-nederlands-zakelijk-comunicatie a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.breadcrumbs-nederlands-zakelijk-comunicatie a:hover {
  color: var(--color-primary-hover);
}

.breadcrumb-separator-nederlands-zakelijk-comunicatie {
  color: var(--color-text-secondary);
}

.breadcrumb-current-nederlands-zakelijk-comunicatie {
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .hero-wrapper-nederlands-zakelijk-comunicatie {
    flex-direction: column;
  }

  .hero-content-nederlands-zakelijk-comunicatie {
    flex: 1 1 100%;
  }

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

  .hero-stats-nederlands-zakelijk-comunicatie {
    flex-direction: row;
  }
}

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

.intro-section-nederlands-zakelijk-comunicatie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

.intro-text-nederlands-zakelijk-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.intro-image-nederlands-zakelijk-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

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

.intro-description-nederlands-zakelijk-comunicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

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

  .intro-text-nederlands-zakelijk-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-wrapper-nederlands-zakelijk-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.fundamentals-section-nederlands-zakelijk-comunicatie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

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

.fundamentals-title-nederlands-zakelijk-comunicatie {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.fundamentals-subtitle-nederlands-zakelijk-comunicatie {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.fundamentals-step-nederlands-zakelijk-comunicatie {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.fundamentals-step-number-nederlands-zakelijk-comunicatie {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.fundamentals-step-content-nederlands-zakelijk-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.fundamentals-step-title-nederlands-zakelijk-comunicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.fundamentals-step-text-nederlands-zakelijk-comunicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .fundamentals-step-nederlands-zakelijk-comunicatie {
    flex-direction: column;
    align-items: flex-start;
  }

  .fundamentals-step-number-nederlands-zakelijk-comunicatie {
    min-width: auto;
  }
}

.quote-section-nederlands-zakelijk-comunicatie {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-section-nederlands-zakelijk-comunicatie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.featured-quote-nederlands-zakelijk-comunicatie {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  margin: 2rem auto;
  max-width: 700px;
  border-radius: 8px;
}

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

.quote-attribution-nederlands-zakelijk-comunicatie {
  font-size: 0.875rem;
  color: #bfdbfe;
  font-style: normal;
}

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

.networking-section-nederlands-zakelijk-comunicatie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

.networking-image-wrapper-nederlands-zakelijk-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.networking-image-nederlands-zakelijk-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.networking-text-nederlands-zakelijk-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.networking-description-nederlands-zakelijk-comunicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.networking-tips-nederlands-zakelijk-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.networking-tip-nederlands-zakelijk-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-left: 3px solid var(--color-primary);
  border-radius: 4px;
}

.tip-title-nederlands-zakelijk-comunicatie {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.tip-text-nederlands-zakelijk-comunicatie {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .networking-content-wrapper-nederlands-zakelijk-comunicatie {
    flex-direction: column;
  }

  .networking-image-wrapper-nederlands-zakelijk-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .networking-text-nederlands-zakelijk-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cultural-nuances-section-nederlands-zakelijk-comunicatie {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cultural-nuances-section-nederlands-zakelijk-comunicatie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

.cultural-title-nederlands-zakelijk-comunicatie {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.cultural-features-card-nederlands-zakelijk-comunicatie {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.cultural-features-card-nederlands-zakelijk-comunicatie:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.cultural-card-icon-nederlands-zakelijk-comunicatie {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.cultural-card-title-nederlands-zakelijk-comunicatie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.cultural-card-text-nederlands-zakelijk-comunicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.practical-tips-section-nederlands-zakelijk-comunicatie {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-tips-section-nederlands-zakelijk-comunicatie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

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

.practical-image-wrapper-nederlands-zakelijk-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-nederlands-zakelijk-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

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

.practical-intro-nederlands-zakelijk-comunicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.practical-list-nederlands-zakelijk-comunicatie {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practical-list-item-nederlands-zakelijk-comunicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .practical-wrapper-nederlands-zakelijk-comunicatie {
    flex-direction: column;
  }

  .practical-text-nederlands-zakelijk-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-image-wrapper-nederlands-zakelijk-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.expressions-section-nederlands-zakelijk-comunicatie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

.expressions-text-nederlands-zakelijk-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.expressions-image-wrapper-nederlands-zakelijk-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.expressions-image-nederlands-zakelijk-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

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

.expressions-intro-nederlands-zakelijk-comunicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.expressions-list-nederlands-zakelijk-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.expression-item-nederlands-zakelijk-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-left: 3px solid var(--color-primary);
  border-radius: 4px;
}

.expression-dutch-nederlands-zakelijk-comunicatie {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: var(--color-primary);
  font-weight: 600;
}

.expression-meaning-nederlands-zakelijk-comunicatie {
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .expressions-content-wrapper-nederlands-zakelijk-comunicatie {
    flex-direction: column;
  }

  .expressions-text-nederlands-zakelijk-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .expressions-image-wrapper-nederlands-zakelijk-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cta-section-nederlands-zakelijk-comunicatie {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.cta-section-nederlands-zakelijk-comunicatie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.cta-box-nederlands-zakelijk-comunicatie {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
}

.cta-title-nederlands-zakelijk-comunicatie {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-text-nederlands-zakelijk-comunicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-nederlands-zakelijk-comunicatie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button-nederlands-zakelijk-comunicatie:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-nederlands-zakelijk-comunicatie {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-section-nederlands-zakelijk-comunicatie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.disclaimer-box-nederlands-zakelijk-comunicatie {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-nederlands-zakelijk-comunicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.disclaimer-text-nederlands-zakelijk-comunicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

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

.related-section-nederlands-zakelijk-comunicatie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

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

.related-title-nederlands-zakelijk-comunicatie {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-nederlands-zakelijk-comunicatie {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

.related-card-nederlands-zakelijk-comunicatie {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-nederlands-zakelijk-comunicatie:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

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

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

.related-card-text-nederlands-zakelijk-comunicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.related-card-link-nederlands-zakelijk-comunicatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.related-card-link-nederlands-zakelijk-comunicatie:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

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

  .related-cards-nederlands-zakelijk-comunicatie {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero-stats-Nederlands-zakelijk-comunicatie {
    gap: 1rem;
  }

  .stat-number-nederlands-zakelijk-comunicatie {
    font-size: 1.75rem;
  }

  .fundamentals-step-nederlands-zakelijk-comunicatie {
    padding: 1rem;
  }
}

.main-nederlandse-uitspraak-verbeteren {
  width: 100%;
  background: var(--color-bg-primary);
}

.main-nederlandse-uitspraak-verbeteren section {
  width: 100%;
  overflow: hidden;
}

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

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

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

.breadcrumb-link-nederlandse-uitspraak-verbeteren {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlandse-uitspraak-verbeteren:hover {
  color: var(--color-primary);
}

.breadcrumb-separator-nederlandse-uitspraak-verbeteren {
  color: var(--color-text-muted);
  margin: 0 0.25rem;
}

.breadcrumb-current-nederlandse-uitspraak-verbeteren {
  color: var(--color-primary);
  font-weight: 600;
}

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

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

.hero-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-subtitle-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

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

.meta-badge-nederlandse-uitspraak-verbeteren i {
  color: var(--color-primary);
}

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

.stat-item-nederlandse-uitspraak-verbeteren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.stat-label-nederlandse-uitspraak-verbeteren {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

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

.hero-image-nederlandse-uitspraak-verbeteren {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

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

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

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

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

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

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

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

.introduction-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-nederlandse-uitspraak-verbeteren {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.introduction-description-nederlandse-uitspraak-verbeteren:last-child {
  margin-bottom: 0;
}

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

.introduction-image-nederlandse-uitspraak-verbeteren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

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

.methodology-section-nederlandse-uitspraak-verbeteren {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.section-header-nederlandse-uitspraak-verbeteren {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-nederlandse-uitspraak-verbeteren {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.methodology-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.methodology-subtitle-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.methodology-step-nederlandse-uitspraak-verbeteren:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(8px);
}

.methodology-step-number-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.methodology-step-content-nederlandse-uitspraak-verbeteren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.methodology-step-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.methodology-step-text-nederlandse-uitspraak-verbeteren {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .methodology-step-nederlandse-uitspraak-verbeteren {
    gap: 1rem;
  }
}

.techniques-section-nederlandse-uitspraak-verbeteren {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

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

.techniques-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.techniques-description-nederlandse-uitspraak-verbeteren {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.techniques-list-nederlandse-uitspraak-verbeteren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-item-nederlandse-uitspraak-verbeteren {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.technique-icon-nederlandse-uitspraak-verbeteren {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.technique-item-content-nederlandse-uitspraak-verbeteren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.technique-name-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.technique-description-nederlandse-uitspraak-verbeteren {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.techniques-image-nederlandse-uitspraak-verbeteren {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .techniques-content-nederlandse-uitspraak-verbeteren {
    flex-direction: column;
  }

  .techniques-text-wrapper-nederlandse-uitspraak-verbeteren,
  .techniques-image-wrapper-nederlandse-uitspraak-verbeteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-section-nederlandse-uitspraak-verbeteren {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.challenges-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.challenges-subtitle-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

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

.challenges-text-section-nederlandse-uitspraak-verbeteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-intro-nederlandse-uitspraak-verbeteren {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.challenges-cards-nederlandse-uitspraak-verbeteren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.challenge-card-nederlandse-uitspraak-verbeteren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.challenge-card-nederlandse-uitspraak-verbeteren:hover {
  background: rgba(59, 130, 246, 0.12);
  transform: translateX(4px);
}

.challenge-card-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.challenge-card-text-nederlandse-uitspraak-verbeteren {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.challenges-image-nederlandse-uitspraak-verbeteren {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .challenges-content-wrapper-nederlandse-uitspraak-verbeteren {
    flex-direction: column;
  }

  .challenges-text-section-nederlandse-uitspraak-verbeteren,
  .challenges-image-wrapper-nederlandse-uitspraak-verbeteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.resources-section-nederlandse-uitspraak-verbeteren {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

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

.resources-image-nederlandse-uitspraak-verbeteren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

.resources-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.resources-intro-nederlandse-uitspraak-verbeteren {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.resources-list-nederlandse-uitspraak-verbeteren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.resource-item-nederlandse-uitspraak-verbeteren {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.resource-icon-nederlandse-uitspraak-verbeteren {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.resource-content-nederlandse-uitspraak-verbeteren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.resource-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.resource-text-nederlandse-uitspraak-verbeteren {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .resources-content-wrapper-nederlandse-uitspraak-verbeteren {
    flex-direction: column;
  }

  .resources-image-wrapper-nederlandse-uitspraak-verbeteren,
  .resources-text-wrapper-nederlandse-uitspraak-verbeteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-nederlandse-uitspraak-verbeteren {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

.conclusion-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2;
}

.conclusion-quote-nederlandse-uitspraak-verbeteren {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  margin: 2rem 0;
  border-radius: var(--radius-lg);
}

.quote-text-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.quote-cite-nederlandse-uitspraak-verbeteren {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
  display: block;
}

.conclusion-text-nederlandse-uitspraak-verbeteren {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.conclusion-text-nederlandse-uitspraak-verbeteren:last-of-type {
  margin-bottom: 2.5rem;
}

.conclusion-cta-nederlandse-uitspraak-verbeteren {
  background: rgba(59, 130, 246, 0.12);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-bottom: 0;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.cta-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.cta-text-nederlandse-uitspraak-verbeteren {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-button-nederlandse-uitspraak-verbeteren {
  margin-top: 0;
}

.disclaimer-section-nederlandse-uitspraak-verbeteren {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 4rem) 0;
}

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

.disclaimer-content-nederlandse-uitspraak-verbeteren {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
}

.disclaimer-icon-nederlandse-uitspraak-verbeteren {
  font-size: 1.75rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

.disclaimer-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.disclaimer-text-nederlandse-uitspraak-verbeteren {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-section-nederlandse-uitspraak-verbeteren {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.related-header-nederlandse-uitspraak-verbeteren {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.related-subtitle-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-wrapper-nederlandse-uitspraak-verbeteren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-nederlandse-uitspraak-verbeteren {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-nederlandse-uitspraak-verbeteren:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-nederlandse-uitspraak-verbeteren {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-nederlandse-uitspraak-verbeteren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.related-card-title-nederlandse-uitspraak-verbeteren {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.related-card-description-nederlandse-uitspraak-verbeteren {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-card-link-nederlandse-uitspraak-verbeteren {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-card-link-nederlandse-uitspraak-verbeteren:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

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

@media (min-width: 769px) {
  .related-cards-wrapper-nederlandse-uitspraak-verbeteren {
    justify-content: center;
  }
}

.main-nederlands-sociale-comunicatie {
  width: 100%;
  background: #0c1929;
  color: #ffffff;
}

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

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

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

.breadcrumb-link-nederlands-sociale-comunicatie {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlands-sociale-comunicatie:hover {
  color: #bfdbfe;
  text-decoration: underline;
}

.breadcrumb-separator-nederlands-sociale-comunicatie {
  color: #7c8fa8;
}

.breadcrumb-current-nederlands-sociale-comunicatie {
  color: #bfdbfe;
}

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

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

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

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

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

.meta-badge-nederlands-sociale-comunicatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-nederlands-sociale-comunicatie i {
  font-size: 1rem;
}

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

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

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

.stat-label-nederlands-sociale-comunicatie {
  font-size: 0.875rem;
  color: #7c8fa8;
  opacity: 0.9;
}

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

.hero-featured-image-nederlands-sociale-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
}

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

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

  .hero-stats-nederlands-sociale-comunicatie {
    gap: 1.5rem;
  }
}

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

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

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

.intro-text-block-nederlands-sociale-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-highlight-nederlands-sociale-comunicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #1e293b;
  padding: 1.5rem;
  background: #f0f4f8;
  border-left: 4px solid #3b82f6;
  border-radius: 4px;
  font-weight: 500;
}

.intro-image-block-nederlands-sociale-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-nederlands-sociale-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .intro-text-block-nederlands-sociale-comunicatie,
  .intro-image-block-nederlands-sociale-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fundamentals-section-nederlands-sociale-comunicatie {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.section-tag-nederlands-sociale-comunicatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

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

.fundamentals-content-wrapper-nederlands-sociale-comunicatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.fundamentals-text-block-nederlands-sociale-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-steps-nederlands-sociale-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fundamentals-step-nederlands-sociale-comunicatie {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
}

.fundamentals-step-number-nederlands-sociale-comunicatie {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.fundamentals-step-content-nederlands-sociale-comunicatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fundamentals-step-title-nederlands-sociale-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.fundamentals-step-text-nederlands-sociale-comunicatie {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bfdbfe;
}

.fundamentals-image-block-nederlands-sociale-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-image-nederlands-sociale-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
}

@media (max-width: 768px) {
  .fundamentals-content-wrapper-nederlands-sociale-comunicatie {
    flex-direction: column;
  }

  .fundamentals-text-block-nederlands-sociale-comunicatie,
  .fundamentals-image-block-nederlands-sociale-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

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

.scenarios-cards-nederlands-sociale-comunicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 3rem;
}

.scenarios-card-nederlands-sociale-comunicatie {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.scenarios-card-nederlands-sociale-comunicatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}

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

.scenarios-card-title-nederlands-sociale-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.scenarios-card-text-nederlands-sociale-comunicatie {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.scenarios-image-section-nederlands-sociale-comunicatie {
  margin-top: 2rem;
}

.scenarios-image-nederlands-sociale-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .scenarios-card-nederlands-sociale-comunicatie {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .scenarios-card-nederlands-sociale-comunicatie {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

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

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

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

.challenges-text-block-nederlands-sociale-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.challenge-item-nederlands-sociale-comunicatie {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid #3b82f6;
  border-radius: 4px;
}

.challenge-item-title-nederlands-sociale-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 0.75rem;
}

.challenge-item-text-nederlands-sociale-comunicatie {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bfdbfe;
}

.challenges-image-block-nederlands-sociale-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-nederlands-sociale-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
}

@media (max-width: 768px) {
  .challenges-content-wrapper-nederlands-sociale-comunicatie {
    flex-direction: column;
  }

  .challenges-text-block-nederlands-sociale-comunicatie,
  .challenges-image-block-nederlands-sociale-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.practical-tips-grid-nederlands-sociale-comunicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.practical-tip-card-nederlands-sociale-comunicatie {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
  transition: all 0.3s ease;
}

.practical-tip-card-nederlands-sociale-comunicatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.tip-number-nederlands-sociale-comunicatie {
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.tip-title-nederlands-sociale-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.tip-text-nederlands-sociale-comunicatie {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 1024px) {
  .practical-tip-card-nederlands-sociale-comunicatie {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .practical-tip-card-nederlands-sociale-comunicatie {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

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

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

.featured-quote-nederlands-sociale-comunicatie {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: 0;
}

.quote-text-nederlands-sociale-comunicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.7;
}

.quote-author-nederlands-sociale-comunicatie {
  font-size: 0.9375rem;
  color: #bfdbfe;
  font-style: normal;
  font-weight: 500;
}

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

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

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

.conclusion-text-block-nederlands-sociale-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.conclusion-text-nederlands-sociale-comunicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1.5rem;
}

.conclusion-next-steps-nederlands-sociale-comunicatie {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f0f4f8;
  border-radius: 8px;
}

.next-steps-title-nederlands-sociale-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.next-steps-list-nederlands-sociale-comunicatie {
  list-style: none;
  padding-left: 0;
}

.next-steps-item-nederlands-sociale-comunicatie {
  font-size: 0.9375rem;
  color: #374151;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.next-steps-item-nederlands-sociale-comunicatie::before {
  content: "";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 700;
}

.cta-box-nederlands-sociale-comunicatie {
  background: linear-gradient(135deg, #3b82f6 0%, #0284c7 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
}

.cta-title-nederlands-sociale-comunicatie {
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-nederlands-sociale-comunicatie {
  font-size: 1rem;
  color: #f0f4f8;
  margin-bottom: 1.5rem;
}

.cta-box-nederlands-sociale-comunicatie .btn {
  background: #ffffff;
  color: #3b82f6;
  font-weight: 600;
}

.cta-box-nederlands-sociale-comunicatie .btn:hover {
  background: #f0f4f8;
  color: #0284c7;
}

.conclusion-image-block-nederlands-sociale-comunicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-nederlands-sociale-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .conclusion-text-block-nederlands-sociale-comunicatie,
  .conclusion-image-block-nederlands-sociale-comunicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-posts-section-nederlands-sociale-comunicatie {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.related-posts-subtitle-nederlands-sociale-comunicatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin-bottom: 2rem;
}

.related-posts-grid-nederlands-sociale-comunicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-post-card-nederlands-sociale-comunicatie {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-post-card-nederlands-sociale-comunicatie:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.related-post-image-nederlands-sociale-comunicatie {
  overflow: hidden;
  height: 200px;
}

.related-post-image-nederlands-sociale-comunicatie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post-card-nederlands-sociale-comunicatie:hover .related-post-image-nederlands-sociale-comunicatie img {
  transform: scale(1.05);
}

.related-post-content-nederlands-sociale-comunicatie {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-post-title-nederlands-sociale-comunicatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.related-post-description-nederlands-sociale-comunicatie {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bfdbfe;
}

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

@media (max-width: 768px) {
  .related-post-card-nederlands-sociale-comunicatie {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.disclaimer-section-nederlands-sociale-comunicatie {
  background: #162d50;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-box-nederlands-sociale-comunicatie {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
}

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

.disclaimer-text-nederlands-sociale-comunicatie {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #bfdbfe;
}

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

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

.btn-primary:hover {
  background: #60a5fa;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #60a5fa;
  color: #60a5fa;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 4vw, 1.5rem);
  }

  .breadcrumbs-nederlands-sociale-comunicatie {
    font-size: 0.75rem;
  }
}

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

  .stat-number-nederlands-sociale-comunicatie {
    font-size: 1.75rem;
  }
}

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

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

.btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

::selection {
  background: #3b82f6;
  color: #ffffff;
}

:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #7c8fa8;
  --color-primary: #3b82f6;
  --color-primary-hover: #60a5fa;
  --color-secondary: #06b6d4;
  --color-accent-warm: #fbbf24;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(59, 130, 246, 0.15);
  --shadow-lg: 0 10px 30px rgba(59, 130, 246, 0.2);
  --shadow-xl: 0 20px 50px rgba(59, 130, 246, 0.25);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

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

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

.nederlands-vloeiend-about {
  width: 100%;
}

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

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

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

.vision-hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.vision-hero-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  display: block;
}

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

.vision-stat-item-about {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vision-stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.vision-stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

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

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

.journey-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.journey-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.journey-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.journey-blocks-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.journey-block-about {
  flex: 1 1 300px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
  .journey-block-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.journey-block-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

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

.journey-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
  display: block;
}

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

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

.approach-intro-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.approach-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.approach-methods-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.approach-method-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

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

.approach-method-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.approach-method-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.approach-method-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.approach-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  display: block;
}

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

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

.values-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.values-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 auto;
}

.values-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

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

.values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.values-item-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
  .values-item-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.values-item-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.values-item-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

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

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

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

.commitment-intro-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.commitment-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 800px;
}

.commitment-highlights-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.commitment-highlight-about {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
}

@media (max-width: 768px) {
  .commitment-highlight-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.commitment-highlight-title-about {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent-warm);
}

.commitment-highlight-text-about {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.commitment-image-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
  display: block;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 850px;
}

.disclaimer-title-about {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-title-about i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.disclaimer-text-about {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
}

@media (min-width: 768px) {
  .vision-hero-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .journey-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .approach-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .values-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .commitment-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .vision-hero-about {
    padding: 6rem 0;
  }

  .journey-section-about {
    padding: 6rem 0;
  }

  .approach-section-about {
    padding: 6rem 0;
  }

  .values-section-about {
    padding: 6rem 0;
  }

  .commitment-section-about {
    padding: 6rem 0;
  }

  .disclaimer-section-about {
    padding: 4rem 0;
  }
}

.legal-hub {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

.legal-hub .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

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

.legal-hub-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.legal-hub-hero-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 700px;
}

.legal-hub-last-updated {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.legal-hub-content-section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.legal-hub-content-section:nth-child(even) {
  background: var(--color-bg-secondary);
}

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

.legal-hub-content-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-content-section:nth-child(even) h2 {
  color: var(--color-secondary);
}

.legal-hub-content-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-content-section:nth-child(even) p {
  color: var(--color-text-secondary);
}

.legal-hub-content-section ul,
.legal-hub-content-section ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-hub-content-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-hub-content-section:nth-child(even) li {
  color: var(--color-text-secondary);
}

.legal-hub-contact {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-tertiary);
  position: relative;
  overflow: hidden;
}

.legal-hub-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-hub-contact h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-hub-contact-label {
  font-weight: 600;
  color: var(--color-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.legal-hub-contact-value {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .legal-hub-hero {
    padding: 5rem 0;
  }

  .legal-hub-content-section {
    padding: 4rem 0;
  }

  .legal-hub-contact {
    padding: 5rem 0;
  }

  .legal-hub-contact-details {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-hub-hero {
    padding: 6rem 0;
  }

  .legal-hub-content-section {
    padding: 6rem 0;
  }

  .legal-hub-contact {
    padding: 6rem 0;
  }
}

.thank-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section {
  background: var(--color-bg-primary);
  width: 100%;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1rem, 3vw, 2rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  animation: icon-scale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-secondary);
}

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

.thank-lead {
  color: var(--color-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.4;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

@keyframes icon-scale {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .thank-icon {
    width: 140px;
    height: 140px;
  }

  .thank-icon i {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    gap: 3rem;
    padding: 3rem;
  }

  .btn {
    padding: 1.125rem 2.5rem;
  }
}

@media (min-width: 1440px) {
  .thank-content {
    gap: 3.5rem;
  }

  .thank-icon {
    width: 160px;
    height: 160px;
  }

  .thank-icon i {
    font-size: 5rem;
  }
}

.error-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  width: 100%;
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

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

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  z-index: 1;
}

.error-visual {
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-size: clamp(3.5rem, 15vw + 1rem, 8rem);
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
  display: block;
  margin: 0;
}

.error-decoration {
  position: absolute;
  width: clamp(150px, 30vw, 300px);
  height: clamp(150px, 30vw, 300px);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 20s linear infinite;
  pointer-events: none;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.error-message {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  max-width: 600px;
  margin: 0 auto;
}

.error-message h1 {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.2;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.error-description {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: clamp(0.5rem, 2vw, 1rem) 0 0 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  width: 100%;
}

.suggestion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.suggestion-item:hover {
  background: rgba(59, 130, 246, 0.12);
  transform: translateX(4px);
}

.suggestion-item i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
}

.suggestion-item p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.75rem);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  text-align: center;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 10vw, 6rem) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .error-content {
    gap: clamp(2rem, 5vw, 4rem);
  }

  .error-suggestions {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }

  .suggestion-item {
    border-left: 3px solid var(--color-primary);
  }

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

@media (min-width: 1024px) {
  .error-section {
    padding: clamp(4rem, 12vw, 8rem) 0;
  }

  .error-content {
    gap: clamp(2.5rem, 6vw, 5rem);
  }

  .error-message {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .btn-primary:hover {
    box-shadow: var(--shadow-xl);
  }
}

h1, h2, h3, h4, h5, h6, p, span, a {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

.main-nederlands-sociale-comunicatie {
  width: 100%;
  background: #0c1929;
  color: #ffffff;
}

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

.breadcrumb-link-nederlands-sociale-comunicatie {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlands-sociale-comunicatie:hover {
  color: #bfdbfe;
  text-decoration: underline;
}

.breadcrumb-separator-nederlands-sociale-comunicatie {
  color: #7c8fa8;
}

.breadcrumb-current-nederlands-sociale-comunicatie {
  color: #bfdbfe;
}

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

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

.stat-label-nederlands-sociale-comunicatie,
.stat-label-nederlands-sociale-comunicatie {
  font-size: 0.875rem;
  color: #7c8fa8;
  opacity: 0.9;
}

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

.intro-section-nederlands-sociale-comunicatie .container,
.fundamentals-section-nederlands-sociale-comunicatie .container,
.scenarios-section-nederlands-sociale-comunicatie .container,
.challenges-section-nederlands-sociale-comunicatie .container,
.practical-tips-section-nederlands-sociale-comunicatie .container,
.quote-section-nederlands-sociale-comunicatie .container,
.conclusion-section-nederlands-sociale-comunicatie .container,
.related-posts-section-nederlands-sociale-comunicatie .container,
.disclaimer-section-nederlands-sociale-comunicatie .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.scenarios-content-wrapper-nederlands-sociale-comunicatie {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.scenarios-image-section-nederlands-sociale-comunicatie {
  margin-top: 2rem;
}

.scenarios-image-nederlands-sociale-comunicatie {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-post-card-nederlands-sociale-comunicatie {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-post-card-nederlands-sociale-comunicatie:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.related-post-image-nederlands-sociale-comunicatie {
  overflow: hidden;
  height: 200px;
}

.related-post-image-nederlands-sociale-comunicatie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post-card-nederlands-sociale-comunicatie:hover .related-post-image-nederlands-sociale-comunicatie img {
  transform: scale(1.05);
}

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

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

.btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

::selection {
  background: #3b82f6;
  color: #ffffff;
}

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

  .stat-number-nederlands-sociale-comunicatie {
    font-size: 1.75rem;
  }
}

@media (max-width: 320px) {
  .breadcrumbs-nederlands-sociale-comunicatie {
    font-size: 0.75rem;
  }
}

.main-nederlands-zakelijk-communicatie {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

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

.breadcrumbs-nederlands-zakelijk-communicatie a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-nederlands-zakelijk-communicatie a:hover {
  color: var(--color-primary);
}

.breadcrumb-separator-nederlands-zakelijk-communicatie {
  color: var(--color-text-muted);
}

.breadcrumb-current-nederlands-zakelijk-communicatie {
  color: var(--color-primary);
  font-weight: 600;
}

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

.hero-content-nederlands-zakelijk-communicatie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.hero-image-nederlands-zakelijk-communicatie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.hero-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

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

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

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

.meta-badge-nederlands-zakelijk-communicatie i {
  color: var(--color-primary);
}

.hero-stats-nederlands-zakelijk-communicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

.stat-number-nederlands-zakelijk-communicatie {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-nederlands-zakelijk-communicatie {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-wrapper-nederlands-zakelijk-communicatie {
    flex-direction: column;
  }

  .hero-content-nederlands-zakelijk-communicatie,
  .hero-image-wrapper-nederlands-zakelijk-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-nederlands-zakelijk-communicatie {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

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

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

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

.intro-text-nederlands-zakelijk-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.intro-image-nederlands-zakelijk-communicatie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.intro-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.intro-description-nederlands-zakelijk-communicatie {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

  .intro-text-nederlands-zakelijk-communicatie,
  .intro-image-wrapper-nederlands-zakelijk-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.section-tag-nederlands-zakelijk-communicatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fundamentals-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.fundamentals-subtitle-nederlands-zakelijk-communicatie {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.fundamentals-step-nederlands-zakelijk-communicatie {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.fundamentals-step-nederlands-zakelijk-communicatie:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(8px);
}

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

.fundamentals-step-content-nederlands-zakelijk-communicatie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.fundamentals-step-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.fundamentals-step-text-nederlands-zakelijk-communicatie {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .fundamentals-step-nederlands-zakelijk-communicatie {
    gap: 1rem;
  }

  .fundamentals-step-number-nederlands-zakelijk-communicatie {
    min-width: 50px;
  }
}

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

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

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

.expressions-text-nederlands-zakelijk-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.expressions-image-wrapper-nederlands-zakelijk-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.expressions-image-nederlands-zakelijk-communicatie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.expressions-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.expressions-intro-nederlands-zakelijk-communicatie {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.expressions-list-nederlands-zakelijk-communicatie {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.expression-item-nederlands-zakelijk-communicatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: 4px;
}

.expression-dutch-nederlands-zakelijk-communicatie {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-primary);
  font-weight: 600;
}

.expression-meaning-nederlands-zakelijk-communicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .expressions-content-wrapper-nederlands-zakelijk-communicatie {
    flex-direction: column;
  }

  .expressions-text-nederlands-zakelijk-communicatie,
  .expressions-image-wrapper-nederlands-zakelijk-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-nederlands-zakelijk-communicatie {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.featured-quote-nederlands-zakelijk-communicatie {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  margin: 0 auto;
  max-width: 800px;
  border-radius: var(--radius-lg);
}

.quote-text-nederlands-zakelijk-communicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.quote-attribution-nederlands-zakelijk-communicatie {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 500;
}

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

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

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

.networking-image-wrapper-nederlands-zakelijk-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.networking-image-nederlands-zakelijk-communicatie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.networking-text-nederlands-zakelijk-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.networking-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.networking-description-nederlands-zakelijk-communicatie {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.networking-tips-nederlands-zakelijk-communicatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.networking-tip-nederlands-zakelijk-communicatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: 4px;
}

.tip-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

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

@media (max-width: 768px) {
  .networking-content-wrapper-nederlands-zakelijk-communicatie {
    flex-direction: column;
  }

  .networking-image-wrapper-nederlands-zakelijk-communicatie,
  .networking-text-nederlands-zakelijk-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cultural-nuances-section-nederlands-zakelijk-communicatie {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.cultural-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.cultural-features-card-nederlands-zakelijk-communicatie:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cultural-card-icon-nederlands-zakelijk-communicatie {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.cultural-card-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.cultural-card-text-nederlands-zakelijk-communicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.practical-tips-section-nederlands-zakelijk-communicatie {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.practical-image-wrapper-nederlands-zakelijk-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-nederlands-zakelijk-communicatie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.practical-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.practical-intro-nederlands-zakelijk-communicatie {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.practical-list-nederlands-zakelijk-communicatie {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practical-list-item-nederlands-zakelijk-communicatie {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.practical-list-item-nederlands-zakelijk-communicatie strong {
  color: var(--color-text-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .practical-wrapper-nederlands-zakelijk-communicatie {
    flex-direction: column;
  }

  .practical-text-nederlands-zakelijk-communicatie,
  .practical-image-wrapper-nederlands-zakelijk-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cta-section-nederlands-zakelijk-communicatie {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.cta-box-nederlands-zakelijk-communicatie {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
}

.cta-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-text-nederlands-zakelijk-communicatie {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-nederlands-zakelijk-communicatie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button-nederlands-zakelijk-communicatie:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-nederlands-zakelijk-communicatie {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-box-nederlands-zakelijk-communicatie {
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.disclaimer-text-nederlands-zakelijk-communicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

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

.related-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-nederlands-zakelijk-communicatie {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.related-card-nederlands-zakelijk-communicatie {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

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

.related-card-title-nederlands-zakelijk-communicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.related-card-text-nederlands-zakelijk-communicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-card-link-nederlands-zakelijk-communicatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.related-card-link-nederlands-zakelijk-communicatie:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

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

@media (min-width: 768px) {
  .hero-section-nederlands-zakelijk-communicatie {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .intro-section-nederlands-zakelijk-communicatie,
  .fundamentals-section-nederlands-zakelijk-communicatie,
  .expressions-section-nederlands-zakelijk-communicatie,
  .quote-section-nederlands-zakelijk-communicatie,
  .networking-section-nederlands-zakelijk-communicatie,
  .cultural-nuances-section-nederlands-zakelijk-communicatie,
  .practical-tips-section-nederlands-zakelijk-communicatie,
  .related-section-nederlands-zakelijk-communicatie {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-nederlands-zakelijk-communicatie {
    padding: 6rem 0;
  }

  .intro-section-nederlands-zakelijk-communicatie,
  .fundamentals-section-nederlands-zakelijk-communicatie,
  .expressions-section-nederlands-zakelijk-communicatie,
  .quote-section-nederlands-zakelijk-communicatie,
  .networking-section-nederlands-zakelijk-communicatie,
  .cultural-nuances-section-nederlands-zakelijk-communicatie,
  .practical-tips-section-nederlands-zakelijk-communicatie,
  .related-section-nederlands-zakelijk-communicatie {
    padding: 6rem 0;
  }

  .cta-section-nederlands-zakelijk-communicatie {
    padding: 5rem 0;
  }

  .disclaimer-section-nederlands-zakelijk-communicatie {
    padding: 4rem 0;
  }
}

.main-nederlands-sociale-communicatie {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-nederlands-sociale-communicatie {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.breadcrumb-link-nederlands-sociale-communicatie {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-nederlands-sociale-communicatie:hover {
  color: var(--color-primary);
}

.breadcrumb-separator-nederlands-sociale-communicatie {
  color: var(--color-text-muted);
}

.breadcrumb-current-nederlands-sociale-communicatie {
  color: var(--color-primary);
  font-weight: 600;
}

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

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

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

.hero-featured-image-nederlands-sociale-communicatie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.hero-title-nederlands-sociale-communicatie {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}

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

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

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

.meta-badge-nederlands-sociale-communicatie i {
  color: var(--color-primary);
}

.hero-stats-nederlands-sociale-communicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

.stat-number-nederlands-sociale-communicatie {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-nederlands-sociale-communicatie {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

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

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

  .hero-stats-nederlands-sociale-communicatie {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

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

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

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

.intro-text-block-nederlands-sociale-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-image-block-nederlands-sociale-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-nederlands-sociale-communicatie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.intro-description-nederlands-sociale-communicatie {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #374151;
  line-height: 1.7;
}

.intro-highlight-nederlands-sociale-communicatie {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #1e293b;
  line-height: 1.7;
  padding: 1.5rem;
  background: #f0f4f8;
  border-left: 4px solid var(--color-primary);
  border-radius: 4px;
  font-weight: 500;
}

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

  .intro-text-block-nederlands-sociale-communicatie,
  .intro-image-block-nederlands-sociale-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.section-tag-nederlands-sociale-communicatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.fundamentals-title-nederlands-sociale-communicatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.fundamentals-subtitle-nederlands-sociale-communicatie {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.fundamentals-content-wrapper-nederlands-sociale-communicatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.fundamentals-text-block-nederlands-sociale-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-image-block-nederlands-sociale-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-image-nederlands-sociale-communicatie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

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

.fundamentals-step-nederlands-sociale-communicatie {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.fundamentals-step-nederlands-sociale-communicatie:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(8px);
}

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

.fundamentals-step-content-nederlands-sociale-communicatie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.fundamentals-step-title-nederlands-sociale-communicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.fundamentals-step-text-nederlands-sociale-communicatie {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .fundamentals-content-wrapper-nederlands-sociale-communicatie {
    flex-direction: column;
  }

  .fundamentals-text-block-nederlands-sociale-communicatie,
  .fundamentals-image-block-nederlands-sociale-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .fundamentals-step-nederlands-sociale-communicatie {
    gap: 1rem;
  }

  .fundamentals-step-number-nederlands-sociale-communicatie {
    min-width: 50px;
  }
}

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

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

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

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

.scenarios-content-wrapper-nederlands-sociale-communicatie {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.scenarios-cards-nederlands-sociale-communicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
}

.scenarios-card-nederlands-sociale-communicatie {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.scenarios-card-nederlands-sociale-communicatie:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.scenarios-card-icon-nederlands-sociale-communicatie {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.scenarios-card-title-nederlands-sociale-communicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.scenarios-card-text-nederlands-sociale-communicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.scenarios-image-section-nederlands-sociale-communicatie {
  margin-top: 2rem;
}

.scenarios-image-nederlands-sociale-communicatie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .scenarios-card-nederlands-sociale-communicatie {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .scenarios-card-nederlands-sociale-communicatie {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

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

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

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

.challenges-text-block-nederlands-sociale-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.challenges-image-block-nederlands-sociale-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-nederlands-sociale-communicatie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.challenges-title-nederlands-sociale-communicatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.challenge-item-nederlands-sociale-communicatie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: 4px;
}

.challenge-item-title-nederlands-sociale-communicatie {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-primary);
}

.challenge-item-text-nederlands-sociale-communicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .challenges-content-wrapper-nederlands-sociale-communicatie {
    flex-direction: column;
  }

  .challenges-text-block-nederlands-sociale-communicatie,
  .challenges-image-block-nederlands-sociale-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.practical-tips-title-nederlands-sociale-communicatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.practical-tips-grid-nederlands-sociale-communicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.practical-tip-card-nederlands-sociale-communicatie {
  flex: 1 1 calc(25% - 1.5rem);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
  transition: all 0.3s ease;
}

.practical-tip-card-nederlands-sociale-communicatie:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.tip-number-nederlands-sociale-communicatie {
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.tip-title-nederlands-sociale-communicatie {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.tip-text-nederlands-sociale-communicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .practical-tip-card-nederlands-sociale-communicatie {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .practical-tip-card-nederlands-sociale-communicatie {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

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

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

.featured-quote-nederlands-sociale-communicatie {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  margin: 0 auto;
  max-width: 800px;
  border-radius: var(--radius-lg);
}

.quote-text-nederlands-sociale-communicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
}

.quote-author-nederlands-sociale-communicatie {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 500;
}

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

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

.conclusion-content-wrapper-nederlands-sociale-communicatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.conclusion-text-block-nederlands-sociale-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-image-block-nederlands-sociale-communicatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-nederlands-sociale-communicatie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.conclusion-title-nederlands-sociale-communicatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.conclusion-text-nederlands-sociale-communicatie {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #374151;
  line-height: 1.7;
}

.conclusion-next-steps-nederlands-sociale-communicatie {
  padding: 1.5rem;
  background: #f0f4f8;
  border-radius: var(--radius-lg);
  margin: 1rem 0;
}

.next-steps-title-nederlands-sociale-communicatie {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.next-steps-list-nederlands-sociale-communicatie {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.next-steps-item-nederlands-sociale-communicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #374151;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.next-steps-item-nederlands-sociale-communicatie::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.cta-box-nederlands-sociale-communicatie {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-nederlands-sociale-communicatie {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

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

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

  .conclusion-text-block-nederlands-sociale-communicatie,
  .conclusion-image-block-nederlands-sociale-communicatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-posts-section-nederlands-sociale-communicatie {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-posts-title-nederlands-sociale-communicatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-posts-subtitle-nederlands-sociale-communicatie {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.related-posts-grid-nederlands-sociale-communicatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-post-card-nederlands-sociale-communicatie {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-post-card-nederlands-sociale-communicatie:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-post-image-nederlands-sociale-communicatie {
  overflow: hidden;
  height: 200px;
}

.related-post-image-nederlands-sociale-communicatie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post-card-nederlands-sociale-communicatie:hover .related-post-image-nederlands-sociale-communicatie img {
  transform: scale(1.05);
}

.related-post-content-nederlands-sociale-communicatie {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-post-title-nederlands-sociale-communicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.related-post-description-nederlands-sociale-communicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .related-post-card-nederlands-sociale-communicatie {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .related-post-card-nederlands-sociale-communicatie {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

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

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

.disclaimer-box-nederlands-sociale-communicatie {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-nederlands-sociale-communicatie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-nederlands-sociale-communicatie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-section-nederlands-sociale-communicatie {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .intro-section-nederlands-sociale-communicatie,
  .fundamentals-section-nederlands-sociale-communicatie,
  .scenarios-section-nederlands-sociale-communicatie,
  .challenges-section-nederlands-sociale-communicatie,
  .practical-tips-section-nederlands-sociale-communicatie,
  .quote-section-nederlands-sociale-communicatie,
  .conclusion-section-nederlands-sociale-communicatie,
  .related-posts-section-nederlands-sociale-communicatie {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-nederlands-sociale-communicatie {
    padding: 6rem 0;
  }

  .intro-section-nederlands-sociale-communicatie,
  .fundamentals-section-nederlands-sociale-communicatie,
  .scenarios-section-nederlands-sociale-communicatie,
  .challenges-section-nederlands-sociale-communicatie,
  .practical-tips-section-nederlands-sociale-communicatie,
  .quote-section-nederlands-sociale-communicatie,
  .conclusion-section-nederlands-sociale-communicatie,
  .related-posts-section-nederlands-sociale-communicatie {
    padding: 6rem 0;
  }

  .disclaimer-section-nederlands-sociale-communicatie {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .hero-stats-nederlands-sociale-communicatie {
    gap: 1rem;
  }

  .stat-number-nederlands-sociale-communicatie {
    font-size: 1.75rem;
  }

  .breadcrumbs-nederlands-sociale-communicatie {
    font-size: 0.75rem;
  }
}