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

:root {
  
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #64748b;
  
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #60a5fa;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', 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.2);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

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

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;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: var(--color-secondary);
  transition: color 0.3s ease;
}

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

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

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

header {
  background: var(--color-bg-secondary);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-brand i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.navbar-menu a {
  color: var(--color-text-secondary);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.navbar-menu a:hover {
  color: var(--color-text-primary);
}

.navbar-menu a:hover::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.header-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-sm);
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-bg-secondary);
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-md);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  }

  .navbar-menu.active {
    display: flex;
  }

  .header-mobile-toggle {
    display: block;
  }

  .navbar-cta {
    display: none;
  }
}

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

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

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

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

.btn-secondary:hover {
  background: var(--color-secondary);
  color: var(--color-bg-primary);
}

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

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

footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(2rem, 4vw, 4rem);
  margin-top: clamp(4rem, 8vw, 8rem);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.footer-section h4 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-section a {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  padding-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

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

.footer-socials {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-4px);
}

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

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

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

input, textarea, select {
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border: 2px solid rgba(59, 130, 246, 0.3);
  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:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

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

.form-submit-btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

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

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

.card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.card-icon {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

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

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

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

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

.decoration-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
}

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

.decoration-blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: rgba(59, 130, 246, 0.05);
  filter: blur(40px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .header-language-hub {
    position: static;
    background: var(--color-bg-primary);
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    padding: clamp(0.75rem, 2vw, 1.25rem) 0;
    z-index: 100;
  }

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

  

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

  .header-language-hub-brand:hover {
    opacity: 0.8;
  }

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

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

  

  .header-language-hub-desktop-nav {
    display: none;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.5rem);
    margin-left: auto;
  }

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

  .header-language-hub-nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 300ms ease-in-out;
    position: relative;
  }

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

  .header-language-hub-nav-link:hover {
    color: var(--color-text-primary);
  }

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

  

  .header-language-hub-cta-button {
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: #0f172a;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: all 300ms ease-in-out;
    white-space: nowrap;
  }

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

  .header-language-hub-cta-button:active {
    transform: translateY(0);
  }

  

  .header-language-hub-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: -0.5rem;
    transition: opacity 300ms ease-in-out;
    z-index: 101;
  }

  @media (min-width: 1024px) {
    .header-language-hub-mobile-toggle {
      display: none;
    }
  }

  .header-language-hub-mobile-toggle:hover {
    opacity: 0.7;
  }

  .header-language-hub-hamburger-line {
    width: 24px;
    height: 2.5px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-language-hub-mobile-toggle.active .header-language-hub-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .header-language-hub-mobile-toggle.active .header-language-hub-hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .header-language-hub-mobile-toggle.active .header-language-hub-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  

  .header-language-hub-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-primary);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    padding-top: 70px;
  }

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

  .header-language-hub-mobile-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: var(--color-bg-primary);
    border-bottom: 1px solid rgba(59, 130, 246, 0.15);
    z-index: 102;
  }

  .header-language-hub-mobile-close {
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 300ms ease-in-out;
  }

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

  

  .header-language-hub-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
  }

  .header-language-hub-mobile-link {
    padding: 1rem 1.5rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 300ms ease-in-out;
    display: block;
  }

  .header-language-hub-mobile-link:hover {
    background: rgba(59, 130, 246, 0.05);
    color: var(--color-text-primary);
    padding-left: 2rem;
  }

  

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

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

  .header-language-hub-mobile-cta:active {
    transform: translateY(0);
  }

  

  @media (max-width: 767px) {
    .header-language-hub {
      padding: 0.75rem 0;
    }

    .header-language-hub-container {
      gap: 1rem;
    }

    .header-language-hub-logo-text {
      font-size: 1.125rem;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .header-language-hub-desktop-nav {
      display: flex;
      gap: 1.5rem;
      margin-left: auto;
    }

    .header-language-hub-nav-link {
      font-size: 0.875rem;
    }

    .header-language-hub-mobile-toggle {
      display: flex;
    }
  }

  @media (min-width: 1024px) {
    .header-language-hub {
      padding: 1rem 0;
    }

    .header-language-hub-container {
      gap: 3rem;
    }

    .header-language-hub-logo-img {
      width: 45px;
      height: 45px;
    }

    .header-language-hub-logo-text {
      font-size: 1.5rem;
    }

    .header-language-hub-desktop-nav {
      gap: 2.5rem;
    }

    .header-language-hub-nav-link {
      font-size: 0.9375rem;
    }

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

    .dutch-academy-hub {
  width: 100%;
}

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

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

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

.hero-floating-accent-index {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-shape-organic-index {
  position: absolute;
  bottom: 10%;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.hero-corner-element-index {
  position: absolute;
  bottom: 5%;
  right: 8%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-secondary-glow-index {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-image-block-index {
  flex: 1 1 350px;
  min-height: 400px;
}

.hero-title-index {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.hero-subtitle-index {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #60a5fa;
  font-weight: 600;
}

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

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin: clamp(1rem, 2vw, 2rem) 0;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-top: 1px solid rgba(96, 165, 250, 0.2);
  border-bottom: 1px solid rgba(96, 165, 250, 0.2);
}

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

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

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

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

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .hero-content-index {
    flex-direction: column;
  }
  
  .hero-image-block-index {
    flex: 1 1 100%;
    min-height: 300px;
  }
  
  .hero-stats-index {
    justify-content: space-between;
  }
  
  .hero-cta-group-index {
    flex-direction: column;
  }
  
  .hero-cta-group-index .btn {
    width: 100%;
  }
}

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

.why-choose-accent-top-index {
  position: absolute;
  top: -100px;
  right: -150px;
  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;
}

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

.why-choose-glow-center-index {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

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

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

.why-choose-header-index {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.why-choose-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-choose-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-top: 1rem;
}

.why-choose-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
  line-height: 1.7;
}

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

.why-choose-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.why-choose-card-icon-index {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 12px;
  font-size: 1.75rem;
}

.why-choose-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e293b;
  font-weight: 600;
}

.why-choose-card-text-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-choose-grid-index {
    flex-direction: column;
  }
  
  .why-choose-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.curriculum-glow-bottom-right-index {
  position: absolute;
  bottom: 5%;
  right: -50px;
  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;
}

.curriculum-shape-accent-index {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.curriculum-line-decoration-index {
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.curriculum-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.curriculum-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-top: 1rem;
}

.curriculum-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
  line-height: 1.7;
}

.curriculum-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.curriculum-step-index {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 12px;
  transition: all 350ms ease;
}

.curriculum-step-index:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateX(8px);
}

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

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

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

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

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

.featured-courses-glow-accent-index {
  position: absolute;
  top: 15%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-courses-shape-index {
  position: absolute;
  left: 8%;
  bottom: 10%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.featured-courses-corner-element-index {
  position: absolute;
  top: 8%;
  left: 12%;
  width: 100px;
  height: 100px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

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

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

.featured-courses-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-courses-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-top: 1rem;
}

.featured-courses-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
  line-height: 1.7;
}

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

.featured-courses-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.featured-courses-card-link-index {
  color: #2563eb;
  font-weight: 600;
  transition: color 300ms ease;
  align-self: flex-start;
}

.featured-courses-card-link-index:hover {
  color: #1d4ed8;
}

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

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

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

.learning-approach-glow-left-index {
  position: absolute;
  left: -150px;
  top: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

.learning-approach-accent-index {
  position: absolute;
  left: 15%;
  bottom: 10%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.learning-approach-shape-index {
  position: absolute;
  right: 10%;
  top: 15%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.learning-approach-text-block-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.learning-approach-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  font-weight: 700;
}

.learning-approach-intro-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.learning-approach-features-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.learning-approach-feature-index {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.learning-approach-feature-icon-index {
  font-size: 1.75rem;
  color: #60a5fa;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.125rem;
}

.learning-approach-feature-text-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.learning-approach-feature-title-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #ffffff;
  font-weight: 600;
}

.learning-approach-feature-desc-index {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #cbd5e1;
  line-height: 1.5;
}

.learning-approach-image-block-index {
  flex: 1 1 350px;
  min-height: 400px;
}

.learning-approach-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

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

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

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

.testimonial-shape-left-index {
  position: absolute;
  left: 5%;
  bottom: 15%;
  width: 180px;
  height: 180px;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.testimonial-shape-right-index {
  position: absolute;
  right: 8%;
  top: 25%;
  width: 150px;
  height: 150px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-content-index {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

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

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

.testimonial-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.testimonial-quote-index {
  padding: clamp(2rem, 4vw, 3rem);
  background: #ffffff;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.testimonial-benefits-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

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

.testimonial-benefit-icon-index {
  color: #2563eb;
  font-size: 1rem;
}

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

.contact-glow-top-index {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-accent-index {
  position: absolute;
  left: 10%;
  bottom: 15%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-line-element-index {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.contact-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.contact-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
  line-height: 1.7;
}

.contact-wrapper-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.contact-form-index {
  flex: 1 1 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.5rem);
}

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

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

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

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: #60a5fa;
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

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

.contact-submit-btn-index {
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

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

.contact-info-block-index {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 12px;
}

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

.contact-faq-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-faq-question-index {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #60a5fa;
  font-weight: 600;
}

.contact-faq-answer-index {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.contact-info-note-index {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin: clamp(1rem, 2vw, 1.5rem) 0 0;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(96, 165, 250, 0.2);
}

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

.contact-privacy-link-index:hover {
  color: #38bdf8;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #0f172a;
  border-top: 1px solid rgba(96, 165, 250, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.cookie-btn-accept {
  background: var(--color-primary);
  color: #0f172a;
}

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

.cookie-btn-decline {
  background: transparent;
  color: #bfdbfe;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.cookie-btn-decline:hover {
  border-color: rgba(96, 165, 250, 0.6);
  color: #ffffff;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .cookie-banner-buttons {
    width: 100%;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 calc(50% - 0.5rem);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.btn-secondary {
  background: transparent;
  color: #60a5fa;
  border: 2px solid rgba(96, 165, 250, 0.5);
}

.btn-secondary:hover {
  background: rgba(96, 165, 250, 0.1);
  border-color: #60a5fa;
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  section {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }
}

@media (max-width: 768px) {
  .hero-cta-group-index .btn {
    width: 100%;
  }
}

    

.footer {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  border-top: 1px solid rgba(96, 165, 250, 0.1);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
}

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

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

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

.footer-about-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.footer-about-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: #bfdbfe;
  margin: 0;
}

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

.footer-nav-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

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

.footer-nav-link {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: #bfdbfe;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-left: 0;
}

.footer-nav-link:hover {
  color: #ffffff;
  padding-left: 0.5rem;
}

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

.footer-contact-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

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

.footer-contact-item {
  font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
  line-height: 1.6;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  color: #60a5fa;
  font-weight: 600;
}

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

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

.footer-legal-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

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

.footer-legal-link {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: #bfdbfe;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #60a5fa;
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-legal-link:hover {
  color: #ffffff;
}

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

.footer-copyright {
  text-align: center;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(96, 165, 250, 0.08);
}

.footer-copyright-text {
  font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
  color: #64748b;
  margin: 0;
  letter-spacing: 0.3px;
}

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

.footer-deco-glow-2 {
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.footer-deco-accent-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

  .footer-content {
    gap: clamp(2.5rem, 5vw, 4rem);
  }

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

  .footer-nav-section {
    flex: 1 1 220px;
  }

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

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

@media (min-width: 1024px) {
  .footer {
    padding: 5rem 0 3.5rem;
  }

  .footer-about {
    flex: 0 1 320px;
  }

  .footer-nav-link:hover {
    padding-left: 0.75rem;
  }
}

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

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

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

  .footer-deco-glow-1,
  .footer-deco-glow-2 {
    animation: none;
  }
}
    

.category-page-conversational-dutch {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.hero-decoration-glow-2 {
  position: absolute;
  bottom: 100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-blob-1 {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-content-conversational-dutch {
  position: relative;
  z-index: 10;
}

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

.hero-title-conversational-dutch {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle-conversational-dutch {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

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

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

.stat-label-conversational-dutch {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  opacity: 0.9;
}

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

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

.posts-decoration-mesh-1 {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.posts-decoration-glow-3 {
  position: absolute;
  bottom: -100px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.posts-header-conversational-dutch {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 4rem;
}

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

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

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

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

.card-conversational-dutch {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.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: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

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

.card-conversational-dutch img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

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

.card-description-conversational-dutch {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-conversational-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.meta-badge-conversational-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-secondary);
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
}

.meta-badge-conversational-dutch i {
  font-size: 0.875rem;
  color: var(--color-primary);
}

.card-link-conversational-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-secondary);
  transition: color 0.3s ease;
  text-decoration: none;
}

.card-link-conversational-dutch:hover {
  color: var(--color-primary);
}

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

.learning-decoration-blob-2 {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.learning-decoration-glow-4 {
  position: absolute;
  bottom: 50px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

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

.learning-title-conversational-dutch {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

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

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

.learning-step-conversational-dutch:hover {
  border-color: var(--color-primary);
  background: rgba(59, 130, 246, 0.12);
}

.learning-step-number-conversational-dutch {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

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

.learning-step-title-conversational-dutch {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.learning-step-text-conversational-dutch {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.benefits-decoration-mesh-2 {
  position: absolute;
  top: -100px;
  right: 5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-decoration-glow-5 {
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.benefits-subtitle-conversational-dutch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.featured-quote-conversational-dutch {
  position: relative;
  z-index: 10;
  padding: 2.5rem 2rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  margin: 3rem 0;
  border-radius: 8px;
}

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

.quote-author-conversational-dutch {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
  opacity: 0.9;
}

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

.benefit-feature-conversational-dutch {
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
}

.benefit-feature-conversational-dutch:hover {
  border-color: var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

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

.benefit-feature-title-conversational-dutch {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.benefit-feature-text-conversational-dutch {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-stats-conversational-dutch {
    gap: 2rem;
  }

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

  .learning-step-conversational-dutch {
    flex-direction: column;
    gap: 1rem;
  }

  .learning-step-number-conversational-dutch {
    font-size: 2rem;
    min-width: auto;
  }

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

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

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

  .benefits-features-conversational-dutch {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .card-conversational-dutch {
    flex: 1 1 45%;
  }

  .benefit-feature-conversational-dutch {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .card-conversational-dutch {
    flex: 1 1 300px;
  }

  .benefit-feature-conversational-dutch {
    flex: 1 1 300px;
  }

  .posts-grid-conversational-dutch {
    gap: 2rem;
  }

  .benefits-features-conversational-dutch {
    gap: 2rem;
  }
}

.card-conversational-dutch:focus-visible,
.card-link-conversational-dutch:focus-visible,
.learning-step-conversational-dutch:focus-visible {
  outline: 2px solid var(--color-primary);
  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;
  }
}

.main-dagelijkse-conversaties-uitdrukkingen {
  width: 100%;
}

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

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

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

.breadcrumbs-dagelijkse-conversaties-uitdrukkingen a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-dagelijkse-conversaties-uitdrukkingen a:hover {
  color: #3b82f6;
}

.breadcrumbs-dagelijkse-conversaties-uitdrukkingen span {
  color: #94a3b8;
}

.hero-section-dagelijkse-conversaties-uitdrukkingen {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

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

.hero-text-block-dagelijkse-conversaties-uitdrukkingen {
  flex: 1 1 350px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.hero-meta-dagelijkse-conversaties-uitdrukkingen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.meta-badge-dagelijkse-conversaties-uitdrukkingen {
  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: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-dagelijkse-conversaties-uitdrukkingen i {
  color: #60a5fa;
}

.hero-image-block-dagelijkse-conversaties-uitdrukkingen {
  flex: 1 1 350px;
  max-width: 550px;
}

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

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

  .hero-text-block-dagelijkse-conversaties-uitdrukkingen,
  .hero-image-block-dagelijkse-conversaties-uitdrukkingen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.introduction-section-dagelijkse-conversaties-uitdrukkingen {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.introduction-content-dagelijkse-conversaties-uitdrukkingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-dagelijkse-conversaties-uitdrukkingen,
.introduction-image-dagelijkse-conversaties-uitdrukkingen {
  flex: 1 1 350px;
  max-width: 550px;
}

.introduction-title-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.introduction-description-dagelijkse-conversaties-uitdrukkingen,
.introduction-text-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.introduction-image-dagelijkse-conversaties-uitdrukkingen img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .introduction-content-dagelijkse-conversaties-uitdrukkingen {
    flex-direction: column;
  }

  .introduction-text-dagelijkse-conversaties-uitdrukkingen,
  .introduction-image-dagelijkse-conversaties-uitdrukkingen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.content-section-one-dagelijkse-conversaties-uitdrukkingen {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-wrapper-one-dagelijkse-conversaties-uitdrukkingen,
.content-wrapper-two-dagelijkse-conversaties-uitdrukkingen,
.content-wrapper-three-dagelijkse-conversaties-uitdrukkingen,
.content-wrapper-four-dagelijkse-conversaties-uitdrukkingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-dagelijkse-conversaties-uitdrukkingen,
.content-text-two-dagelijkse-conversaties-uitdrukkingen,
.content-text-three-dagelijkse-conversaties-uitdrukkingen,
.content-text-four-dagelijkse-conversaties-uitdrukkingen {
  flex: 1 1 350px;
  max-width: 550px;
}

.content-image-one-dagelijkse-conversaties-uitdrukkingen,
.content-image-two-dagelijkse-conversaties-uitdrukkingen,
.content-image-three-dagelijkse-conversaties-uitdrukkingen,
.content-image-four-dagelijkse-conversaties-uitdrukkingen {
  flex: 1 1 350px;
  max-width: 550px;
}

.content-title-one-dagelijkse-conversaties-uitdrukkingen,
.content-title-two-dagelijkse-conversaties-uitdrukkingen,
.content-title-three-dagelijkse-conversaties-uitdrukkingen,
.content-title-four-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-description-one-dagelijkse-conversaties-uitdrukkingen,
.content-description-two-dagelijkse-conversaties-uitdrukkingen,
.content-description-three-dagelijkse-conversaties-uitdrukkingen,
.content-description-four-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-image-dagelijkse-conversaties-uitdrukkingen {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.expression-list-dagelijkse-conversaties-uitdrukkingen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expression-item-dagelijkse-conversaties-uitdrukkingen {
  padding: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid #60a5fa;
  border-radius: 4px;
}

.expression-dutch-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.expression-translation-dagelijkse-conversaties-uitdrukkingen {
  font-size: 0.875rem;
  color: #a5d6ff;
  margin-bottom: 0.25rem;
  font-style: italic;
}

.expression-context-dagelijkse-conversaties-uitdrukkingen {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.content-section-two-dagelijkse-conversaties-uitdrukkingen {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-section-three-dagelijkse-conversaties-uitdrukkingen {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-section-four-dagelijkse-conversaties-uitdrukkingen {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

@media (max-width: 768px) {
  .content-wrapper-one-dagelijkse-conversaties-uitdrukkingen,
  .content-wrapper-two-dagelijkse-conversaties-uitdrukkingen,
  .content-wrapper-three-dagelijkse-conversaties-uitdrukkingen,
  .content-wrapper-four-dagelijkse-conversaties-uitdrukkingen {
    flex-direction: column;
  }

  .content-text-one-dagelijkse-conversaties-uitdrukkingen,
  .content-text-two-dagelijkse-conversaties-uitdrukkingen,
  .content-text-three-dagelijkse-conversaties-uitdrukkingen,
  .content-text-four-dagelijkse-conversaties-uitdrukkingen,
  .content-image-one-dagelijkse-conversaties-uitdrukkingen,
  .content-image-two-dagelijkse-conversaties-uitdrukkingen,
  .content-image-three-dagelijkse-conversaties-uitdrukkingen,
  .content-image-four-dagelijkse-conversaties-uitdrukkingen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.quote-section-dagelijkse-conversaties-uitdrukkingen {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.featured-quote-dagelijkse-conversaties-uitdrukkingen {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: 0;
  border-radius: 4px;
}

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

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

.conclusion-section-dagelijkse-conversaties-uitdrukkingen {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-dagelijkse-conversaties-uitdrukkingen {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conclusion-title-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-text-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.tips-grid-dagelijkse-conversaties-uitdrukkingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin: 2rem 0;
}

.tip-card-dagelijkse-conversaties-uitdrukkingen {
  flex: 1 1 200px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tip-card-dagelijkse-conversaties-uitdrukkingen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.tip-number-dagelijkse-conversaties-uitdrukkingen {
  font-size: 2rem;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

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

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

@media (max-width: 768px) {
  .tips-grid-dagelijkse-conversaties-uitdrukkingen {
    flex-direction: column;
  }

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

.cta-box-dagelijkse-conversaties-uitdrukkingen {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.cta-title-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #e0e7ff;
  margin-bottom: 1.5rem;
}

.cta-box-dagelijkse-conversaties-uitdrukkingen .btn {
  background: #ffffff;
  color: #3b82f6;
}

.cta-box-dagelijkse-conversaties-uitdrukkingen .btn:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
}

.disclaimer-section-dagelijkse-conversaties-uitdrukkingen {
  background: #0c1929;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.disclaimer-content-dagelijkse-conversaties-uitdrukkingen {
  background: rgba(59, 130, 246, 0.05);
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 4px;
}

.disclaimer-title-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.75rem;
}

.disclaimer-text-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.related-section-dagelijkse-conversaties-uitdrukkingen {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-header-dagelijkse-conversaties-uitdrukkingen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.related-subtitle-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-dagelijkse-conversaties-uitdrukkingen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  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-card-dagelijkse-conversaties-uitdrukkingen:hover {
  border-color: #60a5fa;
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
}

.related-card-image-dagelijkse-conversaties-uitdrukkingen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-dagelijkse-conversaties-uitdrukkingen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-dagelijkse-conversaties-uitdrukkingen:hover .related-card-image-dagelijkse-conversaties-uitdrukkingen img {
  transform: scale(1.05);
}

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

.related-card-title-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.related-card-description-dagelijkse-conversaties-uitdrukkingen {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #94a3b8;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .related-cards-dagelijkse-conversaties-uitdrukkingen {
    flex-direction: column;
  }

  .related-card-dagelijkse-conversaties-uitdrukkingen {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

  .introduction-section-dagelijkse-conversaties-uitdrukkingen,
  .content-section-one-dagelijkse-conversaties-uitdrukkingen,
  .content-section-two-dagelijkse-conversaties-uitdrukkingen,
  .content-section-three-dagelijkse-conversaties-uitdrukkingen,
  .content-section-four-dagelijkse-conversaties-uitdrukkingen,
  .quote-section-dagelijkse-conversaties-uitdrukkingen,
  .conclusion-section-dagelijkse-conversaties-uitdrukkingen,
  .disclaimer-section-dagelijkse-conversaties-uitdrukkingen,
  .related-section-dagelijkse-conversaties-uitdrukkingen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-content-dagelijkse-conversaties-uitdrukkingen,
  .introduction-content-dagelijkse-conversaties-uitdrukkingen,
  .content-wrapper-one-dagelijkse-conversaties-uitdrukkingen,
  .content-wrapper-two-dagelijkse-conversaties-uitdrukkingen,
  .content-wrapper-three-dagelijkse-conversaties-uitdrukkingen,
  .content-wrapper-four-dagelijkse-conversaties-uitdrukkingen {
    gap: clamp(3rem, 6vw, 5rem);
  }
}

.main-eerste-kennismaking-introductie {
  width: 100%;
  overflow-x: hidden;
}

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

.breadcrumb-link-eerste-kennismaking-introductie {
  color: var(--color-secondary);
  transition: color 0.3s ease;
}

.breadcrumb-link-eerste-kennismaking-introductie:hover {
  color: var(--color-text-primary);
}

.breadcrumb-separator-eerste-kennismaking-introductie {
  color: var(--color-text-muted);
  margin: 0 0.25rem;
}

.breadcrumb-current-eerste-kennismaking-introductie {
  color: var(--color-text-secondary);
}

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

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

.hero-text-block-eerste-kennismaking-introductie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-eerste-kennismaking-introductie {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-eerste-kennismaking-introductie {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.article-meta-eerste-kennismaking-introductie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-eerste-kennismaking-introductie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-eerste-kennismaking-introductie i {
  color: var(--color-primary);
}

.hero-stats-eerste-kennismaking-introductie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-item-eerste-kennismaking-introductie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-eerste-kennismaking-introductie {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-eerste-kennismaking-introductie {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  opacity: 0.9;
}

.hero-image-block-eerste-kennismaking-introductie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-eerste-kennismaking-introductie {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: block;
  object-fit: cover;
}

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

  .hero-text-block-eerste-kennismaking-introductie,
  .hero-image-block-eerste-kennismaking-introductie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-eerste-kennismaking-introductie {
    gap: 1.5rem;
  }
}

.introduction-section-eerste-kennismaking-introductie {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.introduction-text-eerste-kennismaking-introductie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-title-eerste-kennismaking-introductie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.introduction-description-eerste-kennismaking-introductie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.introduction-image-eerste-kennismaking-introductie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.introduction-image-content-eerste-kennismaking-introductie {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: block;
}

@media (max-width: 768px) {
  .introduction-content-eerste-kennismaking-introductie {
    flex-direction: column;
  }

  .introduction-text-eerste-kennismaking-introductie,
  .introduction-image-eerste-kennismaking-introductie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-eerste-kennismaking-introductie {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-wrapper-one-eerste-kennismaking-introductie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-one-eerste-kennismaking-introductie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-title-one-eerste-kennismaking-introductie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.content-description-one-eerste-kennismaking-introductie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.steps-section-one-eerste-kennismaking-introductie {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.step-item-eerste-kennismaking-introductie {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  align-items: flex-start;
}

.step-number-eerste-kennismaking-introductie {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.step-content-eerste-kennismaking-introductie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.step-title-eerste-kennismaking-introductie {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.step-text-eerste-kennismaking-introductie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.content-image-one-eerste-kennismaking-introductie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image-eerste-kennismaking-introductie {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-one-eerste-kennismaking-introductie {
    flex-direction: column;
  }

  .content-text-one-eerste-kennismaking-introductie,
  .content-image-one-eerste-kennismaking-introductie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-eerste-kennismaking-introductie {
    gap: 1rem;
  }
}

.content-section-two-eerste-kennismaking-introductie {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-wrapper-two-eerste-kennismaking-introductie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-two-eerste-kennismaking-introductie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}

.content-image-tweede-eerste-kennismaking-introductie {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: block;
}

.content-text-two-eerste-kennismaking-introductie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-title-two-eerste-kennismaking-introductie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.content-description-two-eerste-kennismaking-introductie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.scenario-cards-eerste-kennismaking-introductie {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.scenario-card-eerste-kennismaking-introductie {
  flex: 1 1 calc(50% - 0.625rem);
  min-width: 200px;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.scenario-title-eerste-kennismaking-introductie {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
}

.scenario-text-eerste-kennismaking-introductie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-wrapper-two-eerste-kennismaking-introductie {
    flex-direction: column;
  }

  .content-image-two-eerste-kennismaking-introductie,
  .content-text-two-eerste-kennismaking-introductie {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .scenario-card-eerste-kennismaking-introductie {
    flex: 1 1 100%;
  }
}

.featured-quote-section-eerste-kennismaking-introductie {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-eerste-kennismaking-introductie {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
}

.quote-text-eerste-kennismaking-introductie {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.quote-cite-eerste-kennismaking-introductie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
  opacity: 0.9;
}

.content-section-three-eerste-kennismaking-introductie {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-wrapper-three-eerste-kennismaking-introductie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-three-eerste-kennismaking-introductie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-title-three-eerste-kennismaking-introductie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.content-description-three-eerste-kennismaking-introductie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.phrases-list-eerste-kennismaking-introductie {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.phrase-item-eerste-kennismaking-introductie {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.phrase-label-eerste-kennismaking-introductie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phrase-text-eerste-kennismaking-introductie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #333333;
  line-height: 1.6;
  font-style: italic;
}

.content-image-three-eerste-kennismaking-introductie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image-groep-eerste-kennismaking-introductie {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-three-eerste-kennismaking-introductie {
    flex-direction: column;
  }

  .content-text-three-eerste-kennismaking-introductie,
  .content-image-three-eerste-kennismaking-introductie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-eerste-kennismaking-introductie {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.tips-content-eerste-kennismaking-introductie {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tips-title-eerste-kennismaking-introductie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.2;
}

.tips-cards-eerste-kennismaking-introductie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
  justify-content: center;
}

.tips-card-eerste-kennismaking-introductie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 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;
}

.tips-card-eerste-kennismaking-introductie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
  border-color: var(--color-primary);
}

.tips-card-number-eerste-kennismaking-introductie {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.tips-card-title-eerste-kennismaking-introductie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

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

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

.conclusion-section-eerste-kennismaking-introductie {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-eerste-kennismaking-introductie {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.conclusion-title-eerste-kennismaking-introductie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.conclusion-text-eerste-kennismaking-introductie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.conclusion-cta-eerste-kennismaking-introductie {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.cta-button-eerste-kennismaking-introductie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-primary);
  color: #0f172a;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  text-decoration: none;
}

.cta-button-eerste-kennismaking-introductie:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cta-button-eerste-kennismaking-introductie i {
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.disclaimer-section-eerste-kennismaking-introductie {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-eerste-kennismaking-introductie {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.disclaimer-title-eerste-kennismaking-introductie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

.related-section-eerste-kennismaking-introductie {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-eerste-kennismaking-introductie {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-eerste-kennismaking-introductie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-eerste-kennismaking-introductie {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

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

.related-card-eerste-kennismaking-introductie {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.related-card-eerste-kennismaking-introductie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.related-card-image-eerste-kennismaking-introductie {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-image-eerste-kennismaking-introductie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-eerste-kennismaking-introductie:hover .related-image-eerste-kennismaking-introductie {
  transform: scale(1.05);
}

.related-card-content-eerste-kennismaking-introductie {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-eerste-kennismaking-introductie {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-eerste-kennismaking-introductie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-eerste-kennismaking-introductie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.related-link-eerste-kennismaking-introductie:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.related-link-eerste-kennismaking-introductie i {
  font-size: 0.875rem;
}

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

@media (max-width: 1024px) {
  .tips-card-eerste-kennismaking-introductie {
    flex: 1 1 calc(50% - 0.625rem);
  }
}

@media (max-width: 640px) {
  .tips-card-eerste-kennismaking-introductie {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-eerste-kennismaking-introductie {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.main-vertelling-technieken-anekdotes {
  width: 100%;
}

.hero-section-vertelling-technieken-anekdotes {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-vertelling-technieken-anekdotes {
  flex: 1 1 400px;
  max-width: 50%;
}

.hero-image-vertelling-technieken-anekdotes {
  flex: 1 1 400px;
  max-width: 50%;
}

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

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

.hero-meta-vertelling-technieken-anekdotes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-vertelling-technieken-anekdotes i {
  font-size: 1rem;
}

.hero-img-vertelling-technieken-anekdotes {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

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

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

.breadcrumbs-vertelling-technieken-anekdotes a {
  color: #60a5fa;
  transition: color 0.3s ease;
}

.breadcrumbs-vertelling-technieken-anekdotes a:hover {
  color: #3b82f6;
}

.breadcrumbs-vertelling-technieken-anekdotes span {
  color: #64748b;
}

.intro-section-vertelling-technieken-anekdotes {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-wrapper-vertelling-technieken-anekdotes {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-vertelling-technieken-anekdotes,
.intro-image-vertelling-technieken-anekdotes {
  flex: 1 1 400px;
  max-width: 50%;
}

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

.intro-description-vertelling-technieken-anekdotes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.intro-text-vertelling-technieken-anekdotes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.intro-img-vertelling-technieken-anekdotes {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-wrapper-vertelling-technieken-anekdotes {
    flex-direction: column;
  }

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

.techniques-section-vertelling-technieken-anekdotes {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-header-vertelling-technieken-anekdotes {
  text-align: center;
  margin-bottom: 3rem;
}

.techniques-title-vertelling-technieken-anekdotes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.techniques-steps-vertelling-technieken-anekdotes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.techniques-step-vertelling-technieken-anekdotes {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

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

.techniques-step-content-vertelling-technieken-anekdotes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.techniques-step-text-vertelling-technieken-anekdotes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

  .techniques-step-number-vertelling-technieken-anekdotes {
    font-size: 1.75rem;
  }
}

.content-section-vertelling-technieken-anekdotes {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-vertelling-technieken-anekdotes {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-vertelling-technieken-anekdotes {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-vertelling-technieken-anekdotes {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-vertelling-technieken-anekdotes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-description-vertelling-technieken-anekdotes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.content-text-vertelling-technieken-anekdotes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.content-img-vertelling-technieken-anekdotes {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-wrapper-vertelling-technieken-anekdotes {
    flex-direction: column;
  }

  .content-text-vertelling-technieken-anekdotes,
  .content-image-vertelling-technieken-anekdotes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.features-header-vertelling-technieken-anekdotes {
  text-align: center;
  margin-bottom: 3rem;
}

.features-title-vertelling-technieken-anekdotes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

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

.features-card-vertelling-technieken-anekdotes {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.features-card-vertelling-technieken-anekdotes:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.features-card-title-vertelling-technieken-anekdotes {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

.features-card-text-vertelling-technieken-anekdotes {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

.practice-section-vertelling-technieken-anekdotes {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-wrapper-vertelling-technieken-anekdotes {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-image-vertelling-technieken-anekdotes {
  flex: 1 1 400px;
  max-width: 50%;
}

.practice-text-vertelling-technieken-anekdotes {
  flex: 1 1 400px;
  max-width: 50%;
}

.practice-title-vertelling-technieken-anekdotes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.practice-description-vertelling-technieken-anekdotes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.practice-text-vertelling-technieken-anekdotes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.practice-img-vertelling-technieken-anekdotes {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .practice-wrapper-vertelling-technieken-anekdotes {
    flex-direction: column-reverse;
  }

  .practice-image-vertelling-technieken-anekdotes,
  .practice-text-vertelling-technieken-anekdotes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.featured-quote-vertelling-technieken-anekdotes {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
}

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

.quote-author-vertelling-technieken-anekdotes {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
  text-align: right;
}

.advanced-section-vertelling-technieken-anekdotes {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.advanced-wrapper-vertelling-technieken-anekdotes {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.advanced-text-vertelling-technieken-anekdotes {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-image-vertelling-technieken-anekdotes {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-title-vertelling-technieken-anekdotes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.advanced-description-vertelling-technieken-anekdotes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.advanced-text-vertelling-technieken-anekdotes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.advanced-img-vertelling-technieken-anekdotes {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .advanced-wrapper-vertelling-technieken-anekdotes {
    flex-direction: column;
  }

  .advanced-text-vertelling-technieken-anekdotes,
  .advanced-image-vertelling-technieken-anekdotes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-vertelling-technieken-anekdotes {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-vertelling-technieken-anekdotes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-vertelling-technieken-anekdotes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-cta-vertelling-technieken-anekdotes {
  margin-top: 2.5rem;
}

.btn-primary-vertelling-technieken-anekdotes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  cursor: pointer;
}

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

.disclaimer-section-vertelling-technieken-anekdotes {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-vertelling-technieken-anekdotes {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.disclaimer-title-vertelling-technieken-anekdotes {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-vertelling-technieken-anekdotes {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.related-section-vertelling-technieken-anekdotes {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-vertelling-technieken-anekdotes {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-vertelling-technieken-anekdotes {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

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

.related-card-vertelling-technieken-anekdotes {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.related-card-vertelling-technieken-anekdotes:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.related-card-image-vertelling-technieken-anekdotes {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-vertelling-technieken-anekdotes {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-vertelling-technieken-anekdotes {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-vertelling-technieken-anekdotes {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

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

.related-card-link-vertelling-technieken-anekdotes {
  display: inline-block;
  margin-top: 0.5rem;
  color: #60a5fa;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.related-card-link-vertelling-technieken-anekdotes:hover {
  color: #3b82f6;
}

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

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

  .intro-section-vertelling-technieken-anekdotes {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .techniques-section-vertelling-technieken-anekdotes {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .content-section-vertelling-technieken-anekdotes {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .features-section-vertelling-technieken-anekdotes {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .practice-section-vertelling-technieken-anekdotes {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .quote-section-vertelling-technieken-anekdotes {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .advanced-section-vertelling-technieken-anekdotes {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .conclusion-section-vertelling-technieken-anekdotes {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .disclaimer-section-vertelling-technieken-anekdotes {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .related-section-vertelling-technieken-anekdotes {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-vertelling-technieken-anekdotes {
    padding: 6rem 0;
  }

  .intro-section-vertelling-technieken-anekdotes {
    padding: 6rem 0;
  }

  .techniques-section-vertelling-technieken-anekdotes {
    padding: 6rem 0;
  }

  .content-section-vertelling-technieken-anekdotes {
    padding: 6rem 0;
  }

  .features-section-vertelling-technieken-anekdotes {
    padding: 6rem 0;
  }

  .practice-section-vertelling-technieken-anekdotes {
    padding: 6rem 0;
  }

  .quote-section-vertelling-technieken-anekdotes {
    padding: 6rem 0;
  }

  .advanced-section-vertelling-technieken-anekdotes {
    padding: 6rem 0;
  }

  .conclusion-section-vertelling-technieken-anekdotes {
    padding: 6rem 0;
  }

  .disclaimer-section-vertelling-technieken-anekdotes {
    padding: 4rem 0;
  }

  .related-section-vertelling-technieken-anekdotes {
    padding: 6rem 0;
  }
}

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

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

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

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

.hero-text-block-werkplaats-comunicatie-nederlands {
  flex: 1 1 45%;
  min-width: 300px;
}

.hero-image-block-werkplaats-comunicatie-nederlands {
  flex: 1 1 55%;
  min-width: 300px;
}

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

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

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

.breadcrumbs-werkplaats-comunicatie-nederlands span {
  color: var(--color-text-secondary);
}

.hero-title-werkplaats-comunicatie-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-werkplaats-comunicatie-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.meta-badges-werkplaats-comunicatie-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

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

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

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

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

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

.stat-label-werkplaats-comunicatie-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  opacity: 0.85;
}

.hero-image-werkplaats-comunicatie-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-block-werkplaats-comunicatie-nederlands,
  .hero-image-block-werkplaats-comunicatie-nederlands {
    flex: 1 1 100%;
    min-width: unset;
  }

  .hero-stats-werkplaats-comunicatie-nederlands {
    gap: 1rem;
  }
}

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

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

.intro-text-werkplaats-comunicatie-nederlands {
  flex: 1 1 50%;
  min-width: 300px;
}

.intro-image-werkplaats-comunicatie-nederlands {
  flex: 1 1 50%;
  min-width: 300px;
}

.intro-title-werkplaats-comunicatie-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.intro-description-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-text-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.intro-image-img-werkplaats-comunicatie-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .intro-text-werkplaats-comunicatie-nederlands,
  .intro-image-werkplaats-comunicatie-nederlands {
    flex: 1 1 100%;
    min-width: unset;
  }
}

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

.section-header-werkplaats-comunicatie-nederlands {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

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

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

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

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

.step-item-werkplaats-comunicatie-nederlands:hover {
  border-color: var(--color-primary);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.step-number-werkplaats-comunicatie-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}

.step-content-werkplaats-comunicatie-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-werkplaats-comunicatie-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.step-text-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-item-werkplaats-comunicatie-nederlands {
    gap: 1rem;
    padding: 1.25rem;
  }

  .step-number-werkplaats-comunicatie-nederlands {
    min-width: 50px;
  }
}

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

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

.scenarios-text-werkplaats-comunicatie-nederlands {
  flex: 1 1 50%;
  min-width: 300px;
}

.scenarios-image-werkplaats-comunicatie-nederlands {
  flex: 1 1 50%;
  min-width: 300px;
}

.scenarios-title-werkplaats-comunicatie-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.scenarios-description-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.scenarios-text-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.scenario-highlight-werkplaats-comunicatie-nederlands {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  margin-top: 2rem;
}

.highlight-text-werkplaats-comunicatie-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.highlight-attribution-werkplaats-comunicatie-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  opacity: 0.8;
}

.scenarios-image-img-werkplaats-comunicatie-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .scenarios-text-werkplaats-comunicatie-nederlands,
  .scenarios-image-werkplaats-comunicatie-nederlands {
    flex: 1 1 100%;
    min-width: unset;
  }
}

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

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

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

.techniques-cards-werkplaats-comunicatie-nederlands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.technique-card-werkplaats-comunicatie-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  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;
}

.technique-card-werkplaats-comunicatie-nederlands:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
  transform: translateY(-5px);
}

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

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

.card-description-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

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

.implementation-image-werkplaats-comunicatie-nederlands {
  flex: 1 1 50%;
  min-width: 300px;
}

.implementation-text-werkplaats-comunicatie-nederlands {
  flex: 1 1 50%;
  min-width: 300px;
}

.implementation-title-werkplaats-comunicatie-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.implementation-description-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.implementation-text-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.implementation-checklist-werkplaats-comunicatie-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.checklist-item-werkplaats-comunicatie-nederlands {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
}

.checklist-item-werkplaats-comunicatie-nederlands i {
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.implementation-image-img-werkplaats-comunicatie-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .implementation-image-werkplaats-comunicatie-nederlands,
  .implementation-text-werkplaats-comunicatie-nederlands {
    flex: 1 1 100%;
    min-width: unset;
  }
}

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

.advanced-content-werkplaats-comunicatie-nederlands {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.advanced-title-werkplaats-comunicatie-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.advanced-intro-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.advanced-grid-werkplaats-comunicatie-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.advanced-item-werkplaats-comunicatie-nederlands {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 250px;
  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;
}

.advanced-item-werkplaats-comunicatie-nederlands:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.advanced-item-title-werkplaats-comunicatie-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.advanced-item-text-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.advanced-image-werkplaats-comunicatie-nederlands {
  display: flex;
  justify-content: center;
}

.advanced-image-img-werkplaats-comunicatie-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .advanced-item-werkplaats-comunicatie-nederlands {
    flex: 1 1 100%;
    min-width: unset;
  }
}

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

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

.conclusion-title-werkplaats-comunicatie-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.conclusion-text-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2.5rem;
}

.conclusion-quote-werkplaats-comunicatie-nederlands {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  margin: 2.5rem 0;
}

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

.quote-author-werkplaats-comunicatie-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  opacity: 0.85;
}

.conclusion-closing-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2.5rem;
}

.cta-box-werkplaats-comunicatie-nederlands {
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--color-text-primary);
}

.cta-title-werkplaats-comunicatie-nederlands {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-description-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

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

.btn-primary-cta-werkplaats-comunicatie-nederlands:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.related-subtitle-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

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

.related-card-werkplaats-comunicatie-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.related-card-werkplaats-comunicatie-nederlands:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.related-image-werkplaats-comunicatie-nederlands {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(59, 130, 246, 0.05);
}

.related-card-img-werkplaats-comunicatie-nederlands {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-werkplaats-comunicatie-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.related-card-description-werkplaats-comunicatie-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.related-card-link-werkplaats-comunicatie-nederlands:hover {
  color: var(--color-primary);
  gap: 1rem;
}

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

.disclaimer-section-werkplaats-comunicatie-nederlands {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

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

.disclaimer-title-werkplaats-comunicatie-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-werkplaats-comunicatie-nederlands {
  font-size: clamp(0.8125rem, 1vw + 0.25rem, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .container {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
  }
}

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

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

.main-geavanceerde-discussie-debat {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-text-wrapper-geavanceerde-discussie-debat {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

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

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

.hero-meta-geavanceerde-discussie-debat {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-geavanceerde-discussie-debat {
  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-geavanceerde-discussie-debat i {
  color: #3b82f6;
}

.hero-stats-geavanceerde-discussie-debat {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.stat-item-geavanceerde-discussie-debat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.stat-label-geavanceerde-discussie-debat {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-wrapper-geavanceerde-discussie-debat {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-geavanceerde-discussie-debat {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.breadcrumbs-geavanceerde-discussie-debat {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

.breadcrumbs-geavanceerde-discussie-debat a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-geavanceerde-discussie-debat a:hover {
  color: #3b82f6;
}

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

  .hero-text-wrapper-geavanceerde-discussie-debat,
  .hero-image-wrapper-geavanceerde-discussie-debat {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-geavanceerde-discussie-debat {
    gap: 1.5rem;
  }
}

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

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

.introduction-text-geavanceerde-discussie-debat {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

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

.introduction-description-geavanceerde-discussie-debat {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.introduction-image-geavanceerde-discussie-debat {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-geavanceerde-discussie-debat {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .introduction-content-geavanceerde-discussie-debat {
    flex-direction: column;
  }

  .introduction-text-geavanceerde-discussie-debat,
  .introduction-image-geavanceerde-discussie-debat {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-section-geavanceerde-discussie-debat {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.techniques-header-geavanceerde-discussie-debat {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

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

.techniques-grid-geavanceerde-discussie-debat {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.techniques-step-geavanceerde-discussie-debat {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  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: 12px;
}

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

.techniques-step-content-geavanceerde-discussie-debat {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

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

  .techniques-step-number-geavanceerde-discussie-debat {
    min-width: auto;
  }
}

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

.featured-quote-geavanceerde-discussie-debat {
  border-left: 4px solid #3b82f6;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-geavanceerde-discussie-debat {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-geavanceerde-discussie-debat {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
}

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

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

.content-one-text-geavanceerde-discussie-debat {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.content-one-title-geavanceerde-discussie-debat {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-one-description-geavanceerde-discussie-debat {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.content-one-list-geavanceerde-discussie-debat {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.content-one-list-item-geavanceerde-discussie-debat {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #334155;
  padding-left: 1.5rem;
  position: relative;
}

.content-one-list-item-geavanceerde-discussie-debat::before {
  content: "";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.content-one-image-geavanceerde-discussie-debat {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-img-geavanceerde-discussie-debat {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .content-one-wrapper-geavanceerde-discussie-debat {
    flex-direction: column;
  }

  .content-one-text-geavanceerde-discussie-debat,
  .content-one-image-geavanceerde-discussie-debat {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-two-section-geavanceerde-discussie-debat {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.content-two-image-geavanceerde-discussie-debat {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-img-geavanceerde-discussie-debat {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.content-two-text-geavanceerde-discussie-debat {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.content-two-title-geavanceerde-discussie-debat {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.content-two-description-geavanceerde-discussie-debat {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.content-two-highlight-geavanceerde-discussie-debat {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(59, 130, 246, 0.1);
  border-left: 3px solid #3b82f6;
  border-radius: 8px;
}

.highlight-text-geavanceerde-discussie-debat {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-two-wrapper-geavanceerde-discussie-debat {
    flex-direction: column-reverse;
  }

  .content-two-image-geavanceerde-discussie-debat,
  .content-two-text-geavanceerde-discussie-debat {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.content-three-text-geavanceerde-discussie-debat {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.content-three-title-geavanceerde-discussie-debat {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-three-description-geavanceerde-discussie-debat {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.content-three-image-geavanceerde-discussie-debat {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-img-geavanceerde-discussie-debat {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .content-three-wrapper-geavanceerde-discussie-debat {
    flex-direction: column;
  }

  .content-three-text-geavanceerde-discussie-debat,
  .content-three-image-geavanceerde-discussie-debat {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-geavanceerde-discussie-debat {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-geavanceerde-discussie-debat {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-geavanceerde-discussie-debat {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-text-geavanceerde-discussie-debat {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.conclusion-cta-geavanceerde-discussie-debat {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-primary-geavanceerde-discussie-debat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

.disclaimer-section-geavanceerde-discussie-debat {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-geavanceerde-discussie-debat {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-geavanceerde-discussie-debat {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-geavanceerde-discussie-debat {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.related-section-geavanceerde-discussie-debat {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-geavanceerde-discussie-debat {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-geavanceerde-discussie-debat {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

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

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

.related-card-geavanceerde-discussie-debat {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.related-card-image-geavanceerde-discussie-debat {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-geavanceerde-discussie-debat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-geavanceerde-discussie-debat:hover .related-card-image-geavanceerde-discussie-debat img {
  transform: scale(1.05);
}

.related-card-content-geavanceerde-discussie-debat {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-geavanceerde-discussie-debat {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

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

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

@media (min-width: 768px) {
  .hero-section-geavanceerde-discussie-debat {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .introduction-section-geavanceerde-discussie-debat {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .techniques-section-geavanceerde-discussie-debat {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .quote-section-geavanceerde-discussie-debat {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .content-one-section-geavanceerde-discussie-debat {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .content-two-section-geavanceerde-discussie-debat {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .content-three-section-geavanceerde-discussie-debat {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .conclusion-section-geavanceerde-discussie-debat {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .related-section-geavanceerde-discussie-debat {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-geavanceerde-discussie-debat {
    padding: 6rem 0;
  }

  .introduction-section-geavanceerde-discussie-debat {
    padding: 6rem 0;
  }

  .techniques-section-geavanceerde-discussie-debat {
    padding: 6rem 0;
  }

  .quote-section-geavanceerde-discussie-debat {
    padding: 6rem 0;
  }

  .content-one-section-geavanceerde-discussie-debat {
    padding: 6rem 0;
  }

  .content-two-section-geavanceerde-discussie-debat {
    padding: 6rem 0;
  }

  .content-three-section-geavanceerde-discussie-debat {
    padding: 6rem 0;
  }

  .conclusion-section-geavanceerde-discussie-debat {
    padding: 6rem 0;
  }

  .related-section-geavanceerde-discussie-debat {
    padding: 6rem 0;
  }
}

:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #64748b;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #60a5fa;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);
  --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;
  background: #0a0e1a;
}

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

.dutch-academy-about {
  background: #0a0e1a;
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.hero-conversation-about {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: linear-gradient(135deg, #0c1929 0%, #0f2847 100%);
  position: relative;
  overflow: hidden;
}

.hero-conversation-about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content-about {
  position: relative;
  z-index: 1;
}

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw + 1rem, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-about {
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  color: #bfdbfe;
  margin-bottom: 2rem;
  max-width: 700px;
  line-height: 1.6;
}

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

.stat-item-about {
  flex: 1 1 150px;
  min-width: 120px;
}

.stat-number-about {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image-about {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 3rem auto 0;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
  .hero-conversation-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
  
  .hero-stats-about {
    gap: 4rem;
  }
}

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

.journey-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.journey-block-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.journey-tag-about {
  display: inline-block;
  width: fit-content;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.journey-heading-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.journey-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  max-width: 700px;
}

.journey-image-about {
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 1rem 0;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

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

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.approach-intro-about {
  text-align: center;
  margin-bottom: 2rem;
}

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

.approach-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.methodology-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methodology-step-about {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
}

.step-number-about {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

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

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

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

.values-section-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, #0c1929 0%, #0f2847 100%);
  position: relative;
  overflow: hidden;
}

.values-header-about {
  text-align: center;
  margin-bottom: 3rem;
}

.values-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.values-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.value-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.value-card-about:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: #60a5fa;
  transform: translateY(-5px);
}

.value-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.2);
  border-radius: var(--radius-md);
  color: #60a5fa;
  font-size: 1.75rem;
}

.value-card-title-about {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.value-card-text-about {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

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

.commitment-content-about {
  max-width: 850px;
  margin: 0 auto;
}

.commitment-heading-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.2;
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.commitment-image-about {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.featured-quote-about {
  margin: 2rem 0;
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #f8fafc;
  border-radius: var(--radius-md);
}

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

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

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

.disclaimer-content-about {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-icon-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

.disclaimer-text-about {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-conversation-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
  
  .journey-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .approach-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .values-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
  
  .commitment-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (max-width: 768px) {
  .value-card-about {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .methodology-step-about {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-number-about {
    width: 56px;
    height: 56px;
  }
}

.legal-hub {
  width: 100%;
  font-family: var(--font-primary);
}

.legal-hub section {
  width: 100%;
  overflow: hidden;
}

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

.legal-hub-hero {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.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;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-hub-hero-meta p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .legal-hub-hero {
    padding: 5rem 0;
  }

  .legal-hub-hero h1 {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  }
}

@media (min-width: 1024px) {
  .legal-hub-hero {
    padding: 6rem 0;
  }
}

.legal-hub-content {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.legal-hub-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.legal-hub-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-hub-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section p,
.legal-hub-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section ul {
  margin-left: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-hub-section li {
  list-style-type: disc;
  margin-left: 0;
}

@media (min-width: 768px) {
  .legal-hub-content {
    padding: 5rem 0;
  }

  .legal-hub-content-wrapper {
    gap: 4rem;
  }

  .legal-hub-section {
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .legal-hub-content {
    padding: 6rem 0;
  }

  .legal-hub-content-wrapper {
    gap: 5rem;
  }
}

.legal-hub-contact {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.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;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.legal-hub-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.legal-hub-contact-label {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-primary);
}

.legal-hub-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .legal-hub-contact {
    padding: 5rem 0;
  }

  .legal-hub-contact-content {
    gap: 2.5rem;
  }

  .legal-hub-contact-details {
    gap: 1.25rem;
  }

  .legal-hub-contact-item {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-hub-contact {
    padding: 6rem 0;
  }

  .legal-hub-contact-content {
    gap: 3rem;
  }

  .legal-hub-contact-details {
    gap: 1.5rem;
  }
}

  .thank-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  .thank-section {
    background: var(--color-bg-primary);
    width: 100%;
    overflow: hidden;
    padding: clamp(2rem, 8vw, 4rem) 0;
  }

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

  .thank-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .thank-icon {
    font-size: clamp(4rem, 12vw, 6rem);
    color: var(--color-primary);
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
  }

  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.5);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .thank-section h1 {
    color: var(--color-text-primary);
    font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-lead {
    color: var(--color-secondary);
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
    font-weight: 600;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-message {
    color: var(--color-text-secondary);
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    max-width: 600px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-info {
    color: var(--color-text-muted);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    line-height: 1.6;
    max-width: 550px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .btn {
    display: inline-block;
    padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

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

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

    .thank-content {
      gap: clamp(2rem, 5vw, 3rem);
    }

    .thank-icon {
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }
  }

  
  @media (min-width: 1024px) {
    .thank-page {
      min-height: 100vh;
    }

    .thank-section {
      padding: clamp(4rem, 12vw, 6rem) 0;
    }

    .thank-content {
      gap: clamp(2.5rem, 6vw, 3.5rem);
    }
  }

  
  @media (min-width: 1440px) {
    .thank-section {
      padding: 6rem 0;
    }

    .thank-content {
      gap: 3.5rem;
    }
  }

  
  @media (prefers-reduced-motion: reduce) {
    .thank-icon {
      animation: none;
    }

    .btn {
      transition: none;
    }
  }

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

.error-page {
    width: 100%;
  }

  .error-section {
    width: 100%;
    background: var(--color-bg-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
    position: relative;
  }

  .error-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    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: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

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

  .error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.5rem, 4vw, 3rem);
  }

  .error-illustration {
    position: relative;
    width: clamp(200px, 60vw, 350px);
    height: clamp(200px, 60vw, 350px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
  }

  .error-code-main {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    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;
    font-family: var(--font-heading);
    letter-spacing: -2px;
  }

  .error-title {
    color: var(--color-text-primary);
    font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .error-description {
    color: var(--color-text-secondary);
    font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    max-width: 500px;
    font-family: var(--font-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .error-icon-group {
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 3vw, 2rem);
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: clamp(1rem, 2vw, 1.5rem) 0;
  }

  .error-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(1rem, 2vw, 1.5rem);
    background: var(--color-bg-card);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 120px;
  }

  .error-icon-item:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
  }

  .error-icon-item i {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-primary);
  }

  .error-icon-item span {
    color: var(--color-text-secondary);
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
    font-size: clamp(0.9375rem, 1vw, 1.0625rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-primary);
    border: none;
    line-height: 1.5;
  }

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

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

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

  .btn-large {
    padding: clamp(1rem, 2vw, 1.5rem) clamp(2rem, 5vw, 3rem);
    font-size: clamp(1rem, 1.2vw, 1.125rem);
  }

  .error-footer-text {
    color: var(--color-text-muted);
    font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
    font-family: var(--font-primary);
    margin-top: clamp(0.5rem, 1vw, 1rem);
    line-height: 1.6;
  }

  
  @media (min-width: 768px) {
    .error-section {
      padding: clamp(3rem, 8vw, 6rem) 0;
    }

    .error-icon-group {
      gap: 2rem;
    }

    .error-icon-item {
      min-width: 140px;
    }

    .error-section::before {
      width: 700px;
      height: 700px;
      top: -40%;
      right: -5%;
    }

    .error-section::after {
      width: 600px;
      height: 600px;
      bottom: -20%;
      left: 0%;
    }
  }

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

    .error-content {
      gap: 3rem;
    }

    .error-icon-group {
      gap: 2.5rem;
      margin: 2rem 0;
    }

    .error-icon-item {
      min-width: 160px;
      padding: 1.5rem;
    }

    .error-icon-item:hover {
      transform: translateY(-4px);
    }
  }

  @media (min-width: 1440px) {
    .error-section::before {
      width: 800px;
      height: 800px;
      right: 5%;
    }
  }

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

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

  
  h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .header-language-hub-mobile-toggle.active{
    display: none;
  }
  
.main-werkplaats-communicatie-nederlands {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.hero-text-block-werkplaats-communicatie-nederlands {
  flex: 1 1 45%;
  min-width: 300px;
}

.hero-image-block-werkplaats-communicatie-nederlands {
  flex: 1 1 55%;
  min-width: 300px;
}

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

.breadcrumbs-werkplaats-communicatie-nederlands a {
  color: var(--color-secondary);
  transition: color 0.3s ease;
}

.breadcrumbs-werkplaats-communicatie-nederlands a:hover {
  color: var(--color-primary);
}

.breadcrumbs-werkplaats-communicatie-nederlands span {
  color: var(--color-text-secondary);
}

.hero-title-werkplaats-communicatie-nederlands {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-werkplaats-communicatie-nederlands {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.meta-badges-werkplaats-communicatie-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

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

.meta-badge-werkplaats-communicatie-nederlands i {
  color: var(--color-primary);
}

.hero-stats-werkplaats-communicatie-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
}

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

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

.stat-label-werkplaats-communicatie-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  opacity: 0.85;
}

.hero-image-werkplaats-communicatie-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-block-werkplaats-communicatie-nederlands,
  .hero-image-block-werkplaats-communicatie-nederlands {
    flex: 1 1 100%;
    min-width: unset;
  }

  .hero-stats-werkplaats-communicatie-nederlands {
    gap: 1rem;
  }
}

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

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

.intro-text-werkplaats-communicatie-nederlands {
  flex: 1 1 50%;
  min-width: 300px;
}

.intro-image-werkplaats-communicatie-nederlands {
  flex: 1 1 50%;
  min-width: 300px;
}

.intro-title-werkplaats-communicatie-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.intro-description-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-text-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.intro-image-img-werkplaats-communicatie-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .intro-text-werkplaats-communicatie-nederlands,
  .intro-image-werkplaats-communicatie-nederlands {
    flex: 1 1 100%;
    min-width: unset;
  }
}

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

.section-header-werkplaats-communicatie-nederlands {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

.foundations-title-werkplaats-communicatie-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

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

.foundations-steps-werkplaats-communicatie-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.step-item-werkplaats-communicatie-nederlands:hover {
  border-color: var(--color-primary);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.step-number-werkplaats-communicatie-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}

.step-content-werkplaats-communicatie-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-werkplaats-communicatie-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.step-text-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-item-werkplaats-communicatie-nederlands {
    gap: 1rem;
    padding: 1.25rem;
  }

  .step-number-werkplaats-communicatie-nederlands {
    min-width: 50px;
  }
}

.scenarios-section-werkplaats-communicatie-nederlands {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

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

.scenarios-text-werkplaats-communicatie-nederlands {
  flex: 1 1 50%;
  min-width: 300px;
}

.scenarios-image-werkplaats-communicatie-nederlands {
  flex: 1 1 50%;
  min-width: 300px;
}

.scenarios-title-werkplaats-communicatie-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.scenarios-description-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.scenarios-text-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.scenario-highlight-werkplaats-communicatie-nederlands {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  margin-top: 2rem;
}

.highlight-text-werkplaats-communicatie-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.highlight-attribution-werkplaats-communicatie-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  opacity: 0.8;
}

.scenarios-image-img-werkplaats-communicatie-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .scenarios-text-werkplaats-communicatie-nederlands,
  .scenarios-image-werkplaats-communicatie-nederlands {
    flex: 1 1 100%;
    min-width: unset;
  }
}

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

.techniques-title-werkplaats-communicatie-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

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

.techniques-cards-werkplaats-communicatie-nederlands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.technique-card-werkplaats-communicatie-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  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;
}

.technique-card-werkplaats-communicatie-nederlands:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
  transform: translateY(-5px);
}

.card-icon-werkplaats-communicatie-nederlands {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.75rem;
}

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

.card-description-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.implementation-section-werkplaats-communicatie-nederlands {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

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

.implementation-image-werkplaats-communicatie-nederlands {
  flex: 1 1 50%;
  min-width: 300px;
}

.implementation-text-werkplaats-communicatie-nederlands {
  flex: 1 1 50%;
  min-width: 300px;
}

.implementation-title-werkplaats-communicatie-nederlands {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.implementation-description-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.implementation-text-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.implementation-checklist-werkplaats-communicatie-nederlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.checklist-item-werkplaats-communicatie-nederlands {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
}

.checklist-item-werkplaats-communicatie-nederlands i {
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.implementation-image-img-werkplaats-communicatie-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .implementation-wrapper-werkplaats-communicatie-nederlands {
    flex-direction: column-reverse;
  }

  .implementation-image-werkplaats-communicatie-nederlands,
  .implementation-text-werkplaats-communicatie-nederlands {
    flex: 1 1 100%;
    min-width: unset;
  }
}

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

.advanced-content-werkplaats-communicatie-nederlands {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.advanced-title-werkplaats-communicatie-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.advanced-intro-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.advanced-grid-werkplaats-communicatie-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.advanced-item-werkplaats-communicatie-nederlands {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 250px;
  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;
}

.advanced-item-werkplaats-communicatie-nederlands:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.advanced-item-title-werkplaats-communicatie-nederlands {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.advanced-item-text-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.advanced-image-werkplaats-communicatie-nederlands {
  display: flex;
  justify-content: center;
}

.advanced-image-img-werkplaats-communicatie-nederlands {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .advanced-item-werkplaats-communicatie-nederlands {
    flex: 1 1 100%;
    min-width: unset;
  }
}

.conclusion-section-werkplaats-communicatie-nederlands {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

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

.conclusion-title-werkplaats-communicatie-nederlands {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.conclusion-text-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2.5rem;
}

.conclusion-quote-werkplaats-communicatie-nederlands {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  margin: 2.5rem 0;
}

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

.quote-author-werkplaats-communicatie-nederlands {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  opacity: 0.85;
}

.conclusion-closing-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2.5rem;
}

.cta-box-werkplaats-communicatie-nederlands {
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--color-text-primary);
}

.cta-title-werkplaats-communicatie-nederlands {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-description-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

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

.btn-primary-cta-werkplaats-communicatie-nederlands:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

.related-subtitle-werkplaats-communicatie-nederlands {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

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

.related-card-werkplaats-communicatie-nederlands {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.related-card-werkplaats-communicatie-nederlands:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.related-image-werkplaats-communicatie-nederlands {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(59, 130, 246, 0.05);
}

.related-card-img-werkplaats-communicatie-nederlands {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-werkplaats-communicatie-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.related-card-description-werkplaats-communicatie-nederlands {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.related-card-link-werkplaats-communicatie-nederlands:hover {
  color: var(--color-primary);
  gap: 1rem;
}

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

.disclaimer-section-werkplaats-communicatie-nederlands {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

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

.disclaimer-title-werkplaats-communicatie-nederlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-werkplaats-communicatie-nederlands {
  font-size: clamp(0.8125rem, 1vw + 0.25rem, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .container {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
  }
}

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

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