
    @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-dark: #042f2e;
  --color-bg-secondary-dark: #064e4a;
  --color-bg-primary-light: #ffffff;
  --color-bg-secondary-light: #f8fafc;
  --color-bg-tertiary-light: #f1f5f9;
  --color-bg-card-dark: rgba(20, 184, 166, 0.08);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #99f6e4;
  --color-text-muted-dark: #5eead4;
  
  
  --color-text-primary-light: #042f2e;
  --color-text-secondary-light: #0d7377;
  --color-text-muted-light: #4b7a7f;
  
  
  --color-primary: #14b8a6;
  --color-primary-hover: #0d9488;
  --color-secondary: #10b981;
  --color-accent-warm: #f59e0b;
  
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

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

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

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

p {
  line-height: 1.8;
}

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(20, 184, 166, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 4vw, 2rem) 0;
}

.hero-title {
  color: var(--color-text-primary-dark);
  font-weight: 700;
}

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

.hero-description {
  color: var(--color-text-muted-dark);
  max-width: 550px;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

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

.features-section {
  background: var(--color-bg-primary-light);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

.features-header {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.features-title {
  color: var(--color-text-primary-light);
  font-weight: 700;
}

.features-description {
  color: var(--color-text-muted-light);
  max-width: 650px;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.feature-card {
  background: var(--color-bg-card-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
  width: clamp(2.5rem, 6vw, 3.5rem);
  height: clamp(2.5rem, 6vw, 3.5rem);
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

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

.feature-card-text {
  color: var(--color-text-muted-light);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.about-section {
  background: var(--color-bg-secondary-dark);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(200px, 40vw, 600px);
  height: clamp(200px, 40vw, 600px);
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.about-title {
  color: var(--color-text-primary-dark);
  font-weight: 700;
}

.about-description {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  list-style: none;
}

.about-list-item {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
  color: var(--color-text-muted-dark);
}

.about-list-icon {
  color: var(--color-secondary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.testimonials-section {
  background: var(--color-bg-secondary-light);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

.testimonials-header {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-title {
  color: var(--color-text-primary-light);
  font-weight: 700;
}

.testimonials-subtitle {
  color: var(--color-text-muted-light);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.testimonial-card {
  background: var(--color-bg-card-light);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid var(--color-primary);
}

.testimonial-text {
  color: var(--color-text-muted-light);
  font-style: italic;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.testimonial-name {
  color: var(--color-text-primary-light);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
}

.testimonial-role {
  color: var(--color-text-muted-light);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

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

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  color: var(--color-text-primary-dark);
  font-weight: 700;
}

.cta-description {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  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-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  border: 2px solid transparent;
  white-space: nowrap;
}

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

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

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

.btn-secondary:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: var(--color-primary-hover);
}

.hero-section .btn-primary {
  background: var(--color-primary);
  color: #042f2e;
}

.hero-section .btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.hero-section .btn-secondary:hover {
  background: rgba(20, 184, 166, 0.15);
}

.features-section .btn-primary,
.testimonials-section .btn-primary {
  background: var(--color-primary);
  color: #042f2e;
}

.features-section .btn-secondary,
.testimonials-section .btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

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

.form-input,
.form-textarea {
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border: 2px solid;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.form-submit-btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

:root {
  --color-bg-primary-dark: #042f2e;
  --color-bg-secondary-dark: #064e4a;
  --color-bg-primary-light: #ffffff;
  --color-bg-secondary-light: #f8fafc;
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #99f6e4;
  --color-text-primary-light: #042f2e;
  --color-text-secondary-light: #0d7377;
  --color-primary: #14b8a6;
  --color-primary-hover: #0d9488;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --radius-md: 8px;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
}

.header-dutch-speak {
  background: var(--color-bg-primary-dark);
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
  padding: var(--space-sm) 0;
  position: static;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

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

.header-dutch-speak-brand:hover {
  opacity: 0.85;
}

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

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

.header-dutch-speak-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  justify-content: flex-end;
}

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

.header-dutch-speak-nav-link {
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-family: var(--font-body);
  font-weight: 500;
  transition: color 300ms ease;
  position: relative;
  padding-bottom: 2px;
}

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

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

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

.header-dutch-speak-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: var(--color-bg-primary-dark);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 300ms ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.25);
  white-space: nowrap;
}

.header-dutch-speak-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.35);
}

.header-dutch-speak-cta-button:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.header-dutch-speak-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 102;
  transition: all 300ms ease;
}

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

.header-dutch-speak-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary-dark);
  border-radius: 2px;
  transition: all 300ms ease;
  transform-origin: center;
}

.header-dutch-speak-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-dutch-speak-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header-dutch-speak-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.header-dutch-speak-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary-dark);
  z-index: 101;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

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

.header-dutch-speak-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

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

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

.header-dutch-speak-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
  flex: 1;
}

.header-dutch-speak-mobile-link {
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  padding: clamp(1rem, 2vw, 1.25rem) 0;
  border-bottom: 1px solid rgba(20, 184, 166, 0.08);
  transition: color 300ms ease;
}

.header-dutch-speak-mobile-link:hover {
  color: var(--color-primary);
}

.header-dutch-speak-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2rem);
  background: var(--color-primary);
  color: var(--color-bg-primary-dark);
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 300ms ease;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.25);
}

.header-dutch-speak-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.35);
}

.header-dutch-speak-nav-link:focus-visible,
.header-dutch-speak-mobile-link:focus-visible,
.header-dutch-speak-cta-button:focus-visible,
.header-dutch-speak-mobile-cta:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

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

  .header-dutch-speak-container {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }

  .header-dutch-speak-logo-text {
    font-size: 1.125rem;
  }
}

    .dutch-academy {
  width: 100%;
}

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

.hero-ambient-glow {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field {
  position: absolute;
  top: 20%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.hero-floating-accent-2 {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-light-pulse {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-corner-element {
  position: absolute;
  top: 5%;
  right: 2%;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(20, 184, 166, 0.15);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.hero-wave-line {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-title {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-description {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 550px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(20, 184, 166, 0.2);
}

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

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

.hero-stat-label {
  font-size: clamp(0.75rem, 1.5vw, 0.9375rem);
  color: var(--color-text-muted-dark);
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .hero-stats {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

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

.features-gradient-accent {
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-left {
  position: absolute;
  top: 50%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-right {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-shape-element {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.features-float-panel {
  position: absolute;
  bottom: 15%;
  right: 20%;
  width: 180px;
  height: 140px;
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid rgba(20, 184, 166, 0.1);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.features-line-accent {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.features-header {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.features-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
}

.features-title {
  color: var(--color-text-primary-light);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.features-subtitle {
  color: var(--color-text-muted-light);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 650px;
  line-height: 1.8;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.features-card {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.features-card-icon {
  width: clamp(2.5rem, 6vw, 3.5rem);
  height: clamp(2.5rem, 6vw, 3.5rem);
  background: rgba(20, 184, 166, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

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

.features-card-text {
  color: var(--color-text-muted-light);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

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

.methodology-section {
  background: var(--color-bg-secondary-dark);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.methodology-color-field {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.methodology-glow-center {
  position: absolute;
  bottom: 15%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.methodology-accent-shape {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 220px;
  height: 220px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 70% 30% 40% 60% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.methodology-float-element {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 150px;
  height: 150px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

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

.methodology-header {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.methodology-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-text-secondary-dark);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
}

.methodology-title {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 600px;
}

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

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

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

.methodology-step-content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

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

.methodology-step-text {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

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

.featured-glow-top-left {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.featured-glow-bottom-right {
  position: absolute;
  bottom: -100px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.featured-accent-line {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.featured-shape-accent {
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 180px;
  height: 180px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.featured-float-panel-1 {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 160px;
  height: 120px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
}

.featured-float-panel-2 {
  position: absolute;
  bottom: 15%;
  right: 15%;
  width: 140px;
  height: 140px;
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid rgba(20, 184, 166, 0.08);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

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

.featured-header {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.featured-tag {
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
}

.featured-title {
  color: var(--color-text-primary-light);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.featured-subtitle {
  color: var(--color-text-muted-light);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.featured-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.featured-card {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.featured-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

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

.featured-card-text {
  color: var(--color-text-muted-light);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.featured-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  width: fit-content;
}

.featured-card-link:hover {
  gap: 1rem;
  color: var(--color-primary-hover);
}

.featured-cta {
  display: flex;
  justify-content: center;
  padding-top: clamp(1rem, 2vw, 2rem);
}

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

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

.benefits-glow-accent {
  position: absolute;
  top: 10%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-left {
  position: absolute;
  top: 40%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.benefits-shape-right {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.benefits-line-element {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.benefits-float-decoration {
  position: absolute;
  bottom: 25%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

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

.benefits-title {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.benefits-description {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  list-style: none;
}

.benefits-list-item {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
  color: var(--color-text-muted-dark);
}

.benefits-list-icon {
  color: var(--color-secondary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-list-text {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.benefits-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(20, 184, 166, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .benefits-content {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }
}

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

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

.testimonials-glow-bottom {
  position: absolute;
  bottom: -50px;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-accent-shape {
  position: absolute;
  top: 35%;
  right: 10%;
  width: 180px;
  height: 180px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 70% 30% 40% 60% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-line-accent {
  position: absolute;
  bottom: 30%;
  left: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.testimonials-float-element {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 130px;
  height: 130px;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

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

.testimonials-header {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-tag {
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
}

.testimonials-title {
  color: var(--color-text-primary-light);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.testimonials-subtitle {
  color: var(--color-text-muted-light);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.testimonials-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.testimonials-text {
  color: var(--color-text-muted-light);
  font-style: italic;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.testimonials-author {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.testimonials-name {
  color: var(--color-text-primary-light);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
}

.testimonials-role {
  color: var(--color-text-muted-light);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

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

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

.contact-glow-left {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-right {
  position: absolute;
  bottom: 5%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.contact-accent-shape {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 60% 40% 30% 70% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.contact-line-element {
  position: absolute;
  top: 25%;
  right: 20%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.contact-title {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  line-height: 1.2;
}

.contact-subtitle {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.8;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

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

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

.contact-input,
.contact-textarea {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-text-primary-dark);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(20, 184, 166, 0.12);
}

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

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

.contact-privacy-text {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  line-height: 1.6;
}

.contact-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-submit {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(2rem, 4vw, 3rem);
  background: var(--color-primary);
  color: #042f2e;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  font-family: var(--font-body);
}

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

.contact-info {
  flex: 1 1 400px;
  max-width: 500px;
}

.contact-info-title {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
}

.contact-faq {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

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

.contact-faq-question {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.4;
}

.contact-faq-answer {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }
  
  .contact-form-wrapper,
  .contact-info {
    flex: 1 1 100%;
    max-width: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  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-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease;
  font-family: var(--font-body);
  border: 2px solid transparent;
  white-space: nowrap;
}

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

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

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

.btn-secondary:hover {
  background: rgba(20, 184, 166, 0.12);
  border-color: var(--color-primary-hover);
  transform: translateY(-3px);
}

.hero-section .btn-primary {
  background: var(--color-primary);
  color: #042f2e;
}

.hero-section .btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

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

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

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

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  flex-shrink: 0;
}

.cookie-btn-accept {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-primary);
  color: #042f2e;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.cookie-btn-accept:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .features-card {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .featured-card {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .testimonials-card {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .benefits-content {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-form-wrapper,
  .contact-info {
    flex: 1 1 100%;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

.btn:focus-visible,
.contact-input:focus-visible,
.contact-textarea: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;
    scroll-behavior: auto !important;
  }
}

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

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

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

.footer-about {
  display: block;
  max-width: 400px;
}

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

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

.footer-navigation {
  display: block;
}

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

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 1vw, 0.75rem);
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
  width: fit-content;
}

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

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

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

.footer-contact {
  display: block;
}

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

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.footer-contact-item {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  font-weight: 600;
  color: var(--color-text-muted-dark);
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact-value {
  color: var(--color-text-secondary-dark);
}

.footer-legal {
  display: block;
}

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

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.footer-legal-link {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  color: var(--color-text-muted-dark);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

.footer-legal-link::before {
  content: '';
  margin-right: clamp(0.75rem, 1.5vw, 1rem);
  color: var(--color-primary);
  opacity: 0.5;
}

.footer-legal-link:first-child::before {
  content: '';
  margin-right: 0;
}

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(20, 184, 166, 0.1);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.footer-copyright-text {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  color: var(--color-text-muted-dark);
  text-align: center;
  letter-spacing: 0.5px;
}

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

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

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

  .footer-contact {
    grid-column: 1;
  }

  .footer-legal {
    grid-column: 2;
  }

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

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

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

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

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

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

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

  .footer-nav-links {
    gap: 0.75rem;
  }

  .footer-contact-details {
    gap: 1.25rem;
  }
}

.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-nav-link::after,
  .footer-legal-link {
    transition: none;
  }
}

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

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

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

.hero-decoration-glow-dutch {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-decoration-shape-dutch {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  pointer-events: none;
  z-index: 1;
}

.hero-decoration-accent-dutch {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hero-content-dutch-conversation {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 700px;
}

.hero-tagline-dutch-conversation {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.2);
  color: #5eead4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

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

.hero-subtitle-dutch-conversation {
  color: #99f6e4;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
}

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

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

.stat-number-dutch-conversation {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #14b8a6;
  display: block;
}

.stat-label-dutch-conversation {
  font-size: 0.875rem;
  color: #5eead4;
  opacity: 0.9;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  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-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary-dutch-conversation {
  background: #14b8a6;
  color: #042f2e;
}

.btn-primary-dutch-conversation:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary-dutch-conversation {
  background: transparent;
  color: #14b8a6;
  border-color: #14b8a6;
}

.btn-secondary-dutch-conversation:hover {
  background: rgba(20, 184, 166, 0.15);
  border-color: #0d9488;
  color: #5eead4;
}

.posts-section-dutch-conversation {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.posts-header-dutch-conversation {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.posts-tag-dutch-conversation {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 auto;
}

.posts-title-dutch-conversation {
  color: #042f2e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.posts-subtitle-dutch-conversation {
  color: #4b7a7f;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.posts-grid-dutch-conversation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
}

.card-dutch-conversation {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 300px;
  max-width: 380px;
  border: 1px solid #e5e7eb;
}

.card-dutch-conversation:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.card-image-dutch-conversation {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.card-title-dutch-conversation {
  color: #042f2e;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.card-description-dutch-conversation {
  color: #4b7a7f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.card-link-dutch-conversation {
  color: #14b8a6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.card-link-dutch-conversation:hover {
  color: #0d9488;
  text-decoration: underline;
}

.methodology-section-dutch-conversation {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.methodology-header-dutch-conversation {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.methodology-title-dutch-conversation {
  color: #042f2e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
}

.methodology-subtitle-dutch-conversation {
  color: #4b7a7f;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.methodology-steps-dutch-conversation {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.methodology-step-dutch-conversation {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

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

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

.methodology-step-title-dutch-conversation {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #042f2e;
}

.methodology-step-text-dutch-conversation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #4b7a7f;
}

.benefits-section-dutch-conversation {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.benefits-header-dutch-conversation {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-title-dutch-conversation {
  color: #042f2e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
}

.benefits-subtitle-dutch-conversation {
  color: #4b7a7f;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.benefits-grid-dutch-conversation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 2.5rem);
  justify-content: center;
}

.benefit-card-dutch-conversation {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 280px;
  max-width: 340px;
  text-align: center;
}

.benefit-card-dutch-conversation:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon-dutch-conversation {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 12px;
  color: #14b8a6;
  font-size: 1.5rem;
}

.benefit-card-title-dutch-conversation {
  color: #042f2e;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.benefit-card-text-dutch-conversation {
  color: #4b7a7f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  .hero-cta-group-dutch-conversation {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group-dutch-conversation .btn {
    width: 100%;
  }

  .hero-stats-dutch-conversation {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .methodology-step-dutch-conversation {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .methodology-step-number-dutch-conversation {
    min-width: auto;
  }

  .posts-grid-dutch-conversation {
    flex-direction: column;
  }

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

  .benefits-grid-dutch-conversation {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .hero-stats-dutch-conversation {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-dutch-conversation {
    align-items: flex-start;
  }
}

.main-luistervaardigheden-verbeteren {
  width: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

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

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

a {
  text-decoration: none;
}

.hero-section-luistervaardigheden-verbeteren {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-luistervaardigheden-verbeteren::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-luistervaardigheden-verbeteren {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.breadcrumb-link-luistervaardigheden-verbeteren {
  color: #5eead4;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  transition: color 0.2s ease;
}

.breadcrumb-link-luistervaardigheden-verbeteren:hover {
  color: #14b8a6;
}

.breadcrumb-separator-luistervaardigheden-verbeteren {
  color: #0d7377;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

.breadcrumb-current-luistervaardigheden-verbeteren {
  color: #99f6e4;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 500;
}

.hero-title-luistervaardigheden-verbeteren {
  color: #ffffff;
  font-weight: 700;
  max-width: 700px;
}

.hero-subtitle-luistervaardigheden-verbeteren {
  color: #5eead4;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  max-width: 600px;
}

.hero-meta-luistervaardigheden-verbeteren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.meta-badge-luistervaardigheden-verbeteren {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #99f6e4;
}

.meta-badge-luistervaardigheden-verbeteren i {
  color: #14b8a6;
  font-size: 0.875rem;
}

.hero-cta-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(0.5rem, 2vw, 1rem);
  flex-wrap: wrap;
}

.btn-primary-luistervaardigheden-verbeteren,
.btn-secondary-luistervaardigheden-verbeteren,
.cta-btn-primary-luistervaardigheden-verbeteren,
.cta-btn-secondary-luistervaardigheden-verbeteren {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}

.btn-primary-luistervaardigheden-verbeteren,
.cta-btn-primary-luistervaardigheden-verbeteren {
  background: #14b8a6;
  color: #042f2e;
}

.btn-primary-luistervaardigheden-verbeteren:hover,
.cta-btn-primary-luistervaardigheden-verbeteren:hover {
  background: #0d9488;
  transform: translateY(-2px);
}

.btn-secondary-luistervaardigheden-verbeteren,
.cta-btn-secondary-luistervaardigheden-verbeteren {
  background: transparent;
  color: #14b8a6;
  border-color: #14b8a6;
}

.btn-secondary-luistervaardigheden-verbeteren:hover,
.cta-btn-secondary-luistervaardigheden-verbeteren:hover {
  background: rgba(20, 184, 166, 0.15);
  border-color: #0d9488;
}

.hero-image-luistervaardigheden-verbeteren {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-image-luistervaardigheden-verbeteren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-cta-luistervaardigheden-verbeteren {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary-luistervaardigheden-verbeteren,
  .btn-secondary-luistervaardigheden-verbeteren {
    width: 100%;
  }
}

.intro-section-luistervaardigheden-verbeteren {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.intro-content-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.intro-text-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-luistervaardigheden-verbeteren {
  color: #042f2e;
  font-weight: 700;
}

.intro-description-luistervaardigheden-verbeteren,
.intro-secondary-text-luistervaardigheden-verbeteren {
  color: #0d7377;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.intro-highlight-luistervaardigheden-verbeteren {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #f1f5f9;
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
}

.highlight-text-luistervaardigheden-verbeteren {
  color: #042f2e;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  margin: 0;
}

.intro-image-luistervaardigheden-verbeteren {
  flex: 1 1 50%;
  max-width: 50%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.intro-image-luistervaardigheden-verbeteren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.techniques-section-luistervaardigheden-verbeteren {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.techniques-section-luistervaardigheden-verbeteren::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(200px, 40vw, 600px);
  height: clamp(200px, 40vw, 600px);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.techniques-header-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.techniques-title-luistervaardigheden-verbeteren {
  color: #ffffff;
  font-weight: 700;
}

.techniques-subtitle-luistervaardigheden-verbeteren {
  color: #5eead4;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.techniques-grid-luistervaardigheden-verbeteren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.technique-card-luistervaardigheden-verbeteren {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(20, 184, 166, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(20, 184, 166, 0.15);
}

.technique-number-luistervaardigheden-verbeteren {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.technique-title-luistervaardigheden-verbeteren {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.technique-text-luistervaardigheden-verbeteren {
  color: #99f6e4;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

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

.exercises-section-luistervaardigheden-verbeteren {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.exercises-wrapper-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.exercises-text-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex: 1 1 50%;
  max-width: 50%;
}

.exercises-title-luistervaardigheden-verbeteren {
  color: #042f2e;
  font-weight: 700;
}

.exercises-intro-luistervaardigheden-verbeteren {
  color: #0d7377;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.exercise-list-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.exercise-item-luistervaardigheden-verbeteren {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
}

.exercise-name-luistervaardigheden-verbeteren {
  color: #042f2e;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.exercise-description-luistervaardigheden-verbeteren {
  color: #4b7a7f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.exercises-image-luistervaardigheden-verbeteren {
  flex: 1 1 50%;
  max-width: 50%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.exercises-image-luistervaardigheden-verbeteren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .exercises-wrapper-luistervaardigheden-verbeteren {
    flex-direction: column;
  }
  
  .exercises-text-luistervaardigheden-verbeteren,
  .exercises-image-luistervaardigheden-verbeteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .exercises-image-luistervaardigheden-verbeteren {
    aspect-ratio: auto;
    min-height: 300px;
  }
}

.resources-section-luistervaardigheden-verbeteren {
  background: #042f2e;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.resources-section-luistervaardigheden-verbeteren::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.resources-wrapper-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.resources-image-luistervaardigheden-verbeteren {
  flex: 1 1 50%;
  max-width: 50%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.resources-image-luistervaardigheden-verbeteren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resources-text-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex: 1 1 50%;
  max-width: 50%;
}

.resources-title-luistervaardigheden-verbeteren {
  color: #ffffff;
  font-weight: 700;
}

.resources-intro-luistervaardigheden-verbeteren {
  color: #99f6e4;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.resources-list-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.resource-item-luistervaardigheden-verbeteren {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(20, 184, 166, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(20, 184, 166, 0.15);
}

.resource-category-luistervaardigheden-verbeteren {
  display: block;
  color: #14b8a6;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  margin-bottom: 0.5rem;
}

.resource-description-luistervaardigheden-verbeteren {
  color: #5eead4;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .resources-wrapper-luistervaardigheden-verbeteren {
    flex-direction: column;
  }
  
  .resources-image-luistervaardigheden-verbeteren,
  .resources-text-luistervaardigheden-verbeteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .resources-image-luistervaardigheden-verbeteren {
    aspect-ratio: auto;
    min-height: 300px;
  }
}

.tips-section-luistervaardigheden-verbeteren {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.tips-content-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

.tips-title-luistervaardigheden-verbeteren {
  color: #042f2e;
  font-weight: 700;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.tips-grid-luistervaardigheden-verbeteren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.tip-card-luistervaardigheden-verbeteren {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card-luistervaardigheden-verbeteren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tip-icon-luistervaardigheden-verbeteren {
  width: 56px;
  height: 56px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14b8a6;
  font-size: clamp(1.5rem, 2vw, 1.75rem);
}

.tip-name-luistervaardigheden-verbeteren {
  color: #042f2e;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.tip-description-luistervaardigheden-verbeteren {
  color: #4b7a7f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.tips-quote-luistervaardigheden-verbeteren {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #14b8a6;
  background: #f1f5f9;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
}

.quote-text-luistervaardigheden-verbeteren {
  color: #042f2e;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.quote-author-luistervaardigheden-verbeteren {
  color: #0d7377;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
  margin: 0;
}

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

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

.cta-section-luistervaardigheden-verbeteren::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-luistervaardigheden-verbeteren {
  color: #ffffff;
  font-weight: 700;
}

.cta-description-luistervaardigheden-verbeteren {
  color: #99f6e4;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.cta-buttons-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

@media (max-width: 768px) {
  .cta-buttons-luistervaardigheden-verbeteren {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-btn-primary-luistervaardigheden-verbeteren,
  .cta-btn-secondary-luistervaardigheden-verbeteren {
    width: 100%;
  }
}

.related-section-luistervaardigheden-verbeteren {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.related-header-luistervaardigheden-verbeteren {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.related-title-luistervaardigheden-verbeteren {
  color: #042f2e;
  font-weight: 700;
}

.related-subtitle-luistervaardigheden-verbeteren {
  color: #4b7a7f;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.related-cards-luistervaardigheden-verbeteren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-card-luistervaardigheden-verbeteren {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}

.related-card-luistervaardigheden-verbeteren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #14b8a6;
}

.related-card-image-luistervaardigheden-verbeteren {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.related-card-image-luistervaardigheden-verbeteren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-title-luistervaardigheden-verbeteren {
  color: #042f2e;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.related-card-text-luistervaardigheden-verbeteren {
  color: #4b7a7f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: 0;
}

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

.disclaimer-section-luistervaardigheden-verbeteren {
  background: #042f2e;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-luistervaardigheden-verbeteren {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(20, 184, 166, 0.08);
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-luistervaardigheden-verbeteren {
  color: #14b8a6;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-luistervaardigheden-verbeteren {
  color: #99f6e4;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-luistervaardigheden-verbeteren {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }
  
  .intro-section-luistervaardigheden-verbeteren,
  .techniques-section-luistervaardigheden-verbeteren,
  .exercises-section-luistervaardigheden-verbeteren,
  .resources-section-luistervaardigheden-verbeteren,
  .tips-section-luistervaardigheden-verbeteren,
  .cta-section-luistervaardigheden-verbeteren,
  .related-section-luistervaardigheden-verbeteren {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }
}

.main-natuurlijke-conversatie-technieken {
  width: 100%;
}

.hero-section-natuurlijke-conversatie-technieken {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-natuurlijke-conversatie-technieken::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(20, 184, 166, 0.12) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-content-natuurlijke-conversatie-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.breadcrumbs-natuurlijke-conversatie-technieken {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.breadcrumb-link-natuurlijke-conversatie-technieken {
  color: #5eead4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-natuurlijke-conversatie-technieken:hover {
  color: #ffffff;
}

.breadcrumb-separator-natuurlijke-conversatie-technieken {
  color: #0d7377;
}

.breadcrumb-current-natuurlijke-conversatie-technieken {
  color: #99f6e4;
}

.hero-title-natuurlijke-conversatie-technieken {
  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-natuurlijke-conversatie-technieken {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #99f6e4;
  max-width: 650px;
  line-height: 1.6;
}

.hero-meta-natuurlijke-conversatie-technieken {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.meta-badge-natuurlijke-conversatie-technieken {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #5eead4;
}

.meta-badge-natuurlijke-conversatie-technieken i {
  font-size: 1rem;
  color: #14b8a6;
}

.hero-image-wrapper-natuurlijke-conversatie-technieken {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.hero-image-natuurlijke-conversatie-technieken {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.introduction-section-natuurlijke-conversatie-technieken {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

.introduction-text-natuurlijke-conversatie-technieken {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.introduction-title-natuurlijke-conversatie-technieken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #042f2e;
  line-height: 1.2;
}

.introduction-content-natuurlijke-conversatie-technieken {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #0d7377;
  line-height: 1.8;
}

.introduction-image-natuurlijke-conversatie-technieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-natuurlijke-conversatie-technieken {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.techniques-section-natuurlijke-conversatie-technieken {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.techniques-header-natuurlijke-conversatie-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-tag-natuurlijke-conversatie-technieken {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 auto;
}

.techniques-title-natuurlijke-conversatie-technieken {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #042f2e;
  line-height: 1.2;
}

.techniques-subtitle-natuurlijke-conversatie-technieken {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #0d7377;
  max-width: 700px;
  margin: 0 auto;
}

.techniques-steps-natuurlijke-conversatie-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.technique-step-natuurlijke-conversatie-technieken {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #14b8a6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.technique-number-natuurlijke-conversatie-technieken {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #14b8a6;
  flex-shrink: 0;
  min-width: 60px;
}

.technique-content-natuurlijke-conversatie-technieken {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.technique-title-natuurlijke-conversatie-technieken {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #042f2e;
}

.technique-text-natuurlijke-conversatie-technieken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #0d7377;
  line-height: 1.7;
}

.practice-section-natuurlijke-conversatie-technieken {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.practice-section-natuurlijke-conversatie-technieken::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(200px, 40vw, 600px);
  height: clamp(200px, 40vw, 600px);
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.practice-wrapper-natuurlijke-conversatie-technieken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.practice-image-natuurlijke-conversatie-technieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-natuurlijke-conversatie-technieken {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.practice-text-natuurlijke-conversatie-technieken {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

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

.practice-content-natuurlijke-conversatie-technieken {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #5eead4;
  line-height: 1.8;
}

.practice-list-natuurlijke-conversatie-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  list-style: none;
}

.practice-list-item-natuurlijke-conversatie-technieken {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
  color: #99f6e4;
}

.practice-icon-natuurlijke-conversatie-technieken {
  color: #10b981;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  flex-shrink: 0;
  margin-top: 2px;
}

.practice-item-text-natuurlijke-conversatie-technieken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.scenarios-section-natuurlijke-conversatie-technieken {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.scenarios-header-natuurlijke-conversatie-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.scenarios-title-natuurlijke-conversatie-technieken {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #042f2e;
  line-height: 1.2;
}

.scenarios-subtitle-natuurlijke-conversatie-technieken {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #0d7377;
  max-width: 700px;
  margin: 0 auto;
}

.scenarios-cards-natuurlijke-conversatie-technieken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.scenario-card-natuurlijke-conversatie-technieken {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenario-card-natuurlijke-conversatie-technieken:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.scenario-card-title-natuurlijke-conversatie-technieken {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #042f2e;
}

.scenario-card-text-natuurlijke-conversatie-technieken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #0d7377;
  line-height: 1.7;
}

.strategies-section-natuurlijke-conversatie-technieken {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

.strategies-text-natuurlijke-conversatie-technieken {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.strategies-title-natuurlijke-conversatie-technieken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #042f2e;
  line-height: 1.2;
}

.strategies-content-natuurlijke-conversatie-technieken {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #0d7377;
  line-height: 1.8;
}

.featured-quote-natuurlijke-conversatie-technieken {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #14b8a6;
  background: #ffffff;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.quote-text-natuurlijke-conversatie-technieken {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: #042f2e;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.quote-author-natuurlijke-conversatie-technieken {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #0d7377;
  font-style: normal;
  display: block;
}

.strategies-image-natuurlijke-conversatie-technieken {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-img-natuurlijke-conversatie-technieken {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.conclusion-section-natuurlijke-conversatie-technieken {
  background: #042f2e;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-section-natuurlijke-conversatie-technieken::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.conclusion-content-natuurlijke-conversatie-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.conclusion-title-natuurlijke-conversatie-technieken {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-text-natuurlijke-conversatie-technieken {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #99f6e4;
  line-height: 1.8;
}

.cta-box-natuurlijke-conversatie-technieken {
  background: linear-gradient(135deg, #14b8a6, #10b981);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: clamp(1rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-title-natuurlijke-conversatie-technieken {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #042f2e;
}

.cta-text-natuurlijke-conversatie-technieken {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #042f2e;
}

.btn-primary-natuurlijke-conversatie-technieken {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(2rem, 4vw, 3rem);
  background: #042f2e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 0 auto;
  font-family: inherit;
}

.btn-primary-natuurlijke-conversatie-technieken:hover {
  background: #0a1a19;
  transform: translateY(-2px);
}

.disclaimer-section-natuurlijke-conversatie-technieken {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-natuurlijke-conversatie-technieken {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-natuurlijke-conversatie-technieken {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #042f2e;
}

.disclaimer-text-natuurlijke-conversatie-technieken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #0d7377;
  line-height: 1.7;
}

.related-section-natuurlijke-conversatie-technieken {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid #e2e8f0;
}

.related-header-natuurlijke-conversatie-technieken {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.related-title-natuurlijke-conversatie-technieken {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #042f2e;
  line-height: 1.2;
}

.related-subtitle-natuurlijke-conversatie-technieken {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #0d7377;
}

.related-cards-natuurlijke-conversatie-technieken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

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

.related-card-natuurlijke-conversatie-technieken:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.related-card-image-natuurlijke-conversatie-technieken {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.related-card-image-natuurlijke-conversatie-technieken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-natuurlijke-conversatie-technieken {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #042f2e;
  line-height: 1.4;
}

.related-card-text-natuurlijke-conversatie-technieken {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #0d7377;
  line-height: 1.6;
}

.related-link-natuurlijke-conversatie-technieken {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #14b8a6;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-natuurlijke-conversatie-technieken:hover {
  color: #0d9488;
  gap: 0.75rem;
}

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

@media (max-width: 768px) {
  .introduction-wrapper-natuurlijke-conversatie-technieken,
  .practice-wrapper-natuurlijke-conversatie-technieken,
  .strategies-wrapper-natuurlijke-conversatie-technieken {
    flex-direction: column;
  }

  .introduction-text-natuurlijke-conversatie-technieken,
  .introduction-image-natuurlijke-conversatie-technieken,
  .practice-text-natuurlijke-conversatie-technieken,
  .practice-image-natuurlijke-conversatie-technieken,
  .strategies-text-natuurlijke-conversatie-technieken,
  .strategies-image-natuurlijke-conversatie-technieken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .technique-step-natuurlijke-conversatie-technieken {
    flex-direction: column;
    text-align: center;
  }

  .technique-number-natuurlijke-conversatie-technieken {
    margin: 0 auto;
  }

  .scenario-card-natuurlijke-conversatie-technieken {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-natuurlijke-conversatie-technieken {
    flex: 1 1 100%;
    max-width: none;
  }

  .cta-box-natuurlijke-conversatie-technieken {
    text-align: center;
  }

  .btn-primary-natuurlijke-conversatie-technieken {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .scenario-card-natuurlijke-conversatie-technieken,
  .related-card-natuurlijke-conversatie-technieken {
    flex: 1 1 calc(50% - 1rem);
    max-width: 100%;
  }
}

.main-groepsconversatie-zelfvertrouwen {
  width: 100%;
}

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

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

.hero-section-groepsconversatie-zelfvertrouwen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-groepsconversatie-zelfvertrouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}

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

.breadcrumb-link-groepsconversatie-zelfvertrouwen {
  color: #5eead4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-groepsconversatie-zelfvertrouwen:hover {
  color: #99f6e4;
}

.breadcrumb-separator-groepsconversatie-zelfvertrouwen {
  color: #0d7377;
}

.breadcrumb-current-groepsconversatie-zelfvertrouwen {
  color: #99f6e4;
}

.hero-title-groepsconversatie-zelfvertrouwen {
  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-groepsconversatie-zelfvertrouwen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #99f6e4;
  max-width: 650px;
  line-height: 1.6;
}

.hero-meta-groepsconversatie-zelfvertrouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.meta-badge-groepsconversatie-zelfvertrouwen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #99f6e4;
}

.meta-badge-groepsconversatie-zelfvertrouwen i {
  color: #14b8a6;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.hero-image-wrapper-groepsconversatie-zelfvertrouwen {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(8px, 2vw, 16px);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-featured-image-groepsconversatie-zelfvertrouwen {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.introduction-section-groepsconversatie-zelfvertrouwen {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.introduction-text-groepsconversatie-zelfvertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.introduction-title-groepsconversatie-zelfvertrouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #042f2e;
  line-height: 1.2;
}

.introduction-paragraph-groepsconversatie-zelfvertrouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #0d7377;
  line-height: 1.8;
}

.introduction-image-groepsconversatie-zelfvertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-groepsconversatie-zelfvertrouwen {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .introduction-text-groepsconversatie-zelfvertrouwen,
  .introduction-image-groepsconversatie-zelfvertrouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-section-groepsconversatie-zelfvertrouwen {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-header-groepsconversatie-zelfvertrouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.strategies-title-groepsconversatie-zelfvertrouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #042f2e;
  line-height: 1.2;
}

.strategies-subtitle-groepsconversatie-zelfvertrouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b7a7f;
  line-height: 1.6;
}

.strategies-list-groepsconversatie-zelfvertrouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.strategy-item-groepsconversatie-zelfvertrouwen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: clamp(8px, 2vw, 12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.strategy-item-groepsconversatie-zelfvertrouwen:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.strategy-content-groepsconversatie-zelfvertrouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.strategy-title-groepsconversatie-zelfvertrouwen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #042f2e;
  line-height: 1.3;
}

.strategy-text-groepsconversatie-zelfvertrouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b7a7f;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .strategy-item-groepsconversatie-zelfvertrouwen {
    flex-direction: column;
  }

  .strategy-number-groepsconversatie-zelfvertrouwen {
    min-width: auto;
  }
}

.mindset-section-groepsconversatie-zelfvertrouwen {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.mindset-section-groepsconversatie-zelfvertrouwen::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(200px, 40vw, 600px);
  height: clamp(200px, 40vw, 600px);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mindset-wrapper-groepsconversatie-zelfvertrouwen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.mindset-image-groepsconversatie-zelfvertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-img-groepsconversatie-zelfvertrouwen {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.mindset-text-groepsconversatie-zelfvertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.mindset-paragraph-groepsconversatie-zelfvertrouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #99f6e4;
  line-height: 1.8;
}

.mindset-quote-groepsconversatie-zelfvertrouwen {
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1.5rem, 2vw, 2.5rem);
  border-left: 4px solid #14b8a6;
  background: rgba(20, 184, 166, 0.1);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  border-radius: 0 8px 8px 0;
}

.mindset-quote-text-groepsconversatie-zelfvertrouwen {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .mindset-wrapper-groepsconversatie-zelfvertrouwen {
    flex-direction: column;
  }

  .mindset-image-groepsconversatie-zelfvertrouwen,
  .mindset-text-groepsconversatie-zelfvertrouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-groepsconversatie-zelfvertrouwen {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-content-groepsconversatie-zelfvertrouwen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.practice-text-groepsconversatie-zelfvertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.practice-title-groepsconversatie-zelfvertrouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #042f2e;
  line-height: 1.2;
}

.practice-paragraph-groepsconversatie-zelfvertrouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #0d7377;
  line-height: 1.8;
}

.practice-list-groepsconversatie-zelfvertrouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.practice-list-item-groepsconversatie-zelfvertrouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b7a7f;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}

.practice-list-item-groepsconversatie-zelfvertrouwen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: bold;
}

.practice-image-groepsconversatie-zelfvertrouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-groepsconversatie-zelfvertrouwen {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .practice-text-groepsconversatie-zelfvertrouwen,
  .practice-image-groepsconversatie-zelfvertrouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-groepsconversatie-zelfvertrouwen {
  background: #f1f5f9;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-groepsconversatie-zelfvertrouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-groepsconversatie-zelfvertrouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #042f2e;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-groepsconversatie-zelfvertrouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b7a7f;
  line-height: 1.8;
  text-align: center;
}

.conclusion-highlight-groepsconversatie-zelfvertrouwen {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: clamp(8px, 2vw, 12px);
  border-left: 4px solid #14b8a6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-highlight-title-groepsconversatie-zelfvertrouwen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #042f2e;
  margin-bottom: 0.75rem;
}

.conclusion-highlight-text-groepsconversatie-zelfvertrouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #0d7377;
  line-height: 1.7;
}

.related-section-groepsconversatie-zelfvertrouwen {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-groepsconversatie-zelfvertrouwen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.related-title-groepsconversatie-zelfvertrouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #042f2e;
  line-height: 1.2;
}

.related-subtitle-groepsconversatie-zelfvertrouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b7a7f;
}

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

.related-card-groepsconversatie-zelfvertrouwen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-radius: clamp(8px, 2vw, 12px);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card-groepsconversatie-zelfvertrouwen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.related-card-image-groepsconversatie-zelfvertrouwen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-groepsconversatie-zelfvertrouwen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.related-card-title-groepsconversatie-zelfvertrouwen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #042f2e;
  line-height: 1.3;
}

.related-card-text-groepsconversatie-zelfvertrouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b7a7f;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-groepsconversatie-zelfvertrouwen {
  display: inline-block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #14b8a6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-groepsconversatie-zelfvertrouwen:hover {
  color: #0d9488;
}

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

.disclaimer-section-groepsconversatie-zelfvertrouwen {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-groepsconversatie-zelfvertrouwen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: clamp(8px, 2vw, 12px);
  border-left: 4px solid #0d7377;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-groepsconversatie-zelfvertrouwen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #042f2e;
  margin-bottom: 1rem;
}

.disclaimer-text-groepsconversatie-zelfvertrouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b7a7f;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .breadcrumbs-groepsconversatie-zelfvertrouwen {
    gap: 0.25rem;
  }

  .breadcrumb-link-groepsconversatie-zelfvertrouwen,
  .breadcrumb-separator-groepsconversatie-zelfvertrouwen,
  .breadcrumb-current-groepsconversatie-zelfvertrouwen {
    font-size: 0.75rem;
  }
}

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

  .introduction-section-groepsconversatie-zelfvertrouwen {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .strategies-section-groepsconversatie-zelfvertrouwen {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .mindset-section-groepsconversatie-zelfvertrouwen {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .practice-section-groepsconversatie-zelfvertrouwen {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .conclusion-section-groepsconversatie-zelfvertrouwen {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }

  .related-section-groepsconversatie-zelfvertrouwen {
    padding: clamp(5rem, 10vw, 7rem) 0;
  }
}

.main-immersive-learning-nederlands {
  width: 100%;
  background: #ffffff;
}

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

.hero-section-immersive-learning-nederlands {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-immersive-learning-nederlands::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(20, 184, 166, 0.15) 0%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-content-immersive-learning-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}

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

.breadcrumb-link-immersive-learning-nederlands {
  color: #5eead4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-immersive-learning-nederlands:hover {
  color: #14b8a6;
  text-decoration: underline;
}

.breadcrumb-separator-immersive-learning-nederlands {
  color: #0d7377;
}

.breadcrumb-current-immersive-learning-nederlands {
  color: #99f6e4;
}

.hero-title-immersive-learning-nederlands {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-immersive-learning-nederlands {
  color: #99f6e4;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 500;
  max-width: 600px;
}

.hero-meta-immersive-learning-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-immersive-learning-nederlands {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: #5eead4;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-immersive-learning-nederlands i {
  color: #14b8a6;
  font-size: 0.875rem;
}

.hero-description-immersive-learning-nederlands {
  color: #5eead4;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  max-width: 700px;
}

.hero-image-immersive-learning-nederlands {
  width: 100%;
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-img-immersive-learning-nederlands {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.intro-section-immersive-learning-nederlands {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

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

.intro-text-immersive-learning-nederlands {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-immersive-learning-nederlands {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-description-immersive-learning-nederlands {
  color: #0d7377;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  font-weight: 500;
}

.intro-description-immersive-learning-nederlands,
.intro-text-immersive-learning-nederlands p {
  color: #4b7a7f;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.intro-image-immersive-learning-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-img-immersive-learning-nederlands {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.benefits-section-immersive-learning-nederlands {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.benefits-header-immersive-learning-nederlands {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.benefits-title-immersive-learning-nederlands {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefits-subtitle-immersive-learning-nederlands {
  color: #4b7a7f;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-cards-immersive-learning-nederlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefit-card-immersive-learning-nederlands {
  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;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-immersive-learning-nederlands:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon-immersive-learning-nederlands {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 12px;
  font-size: 1.75rem;
}

.benefit-card-title-immersive-learning-nederlands {
  color: #042f2e;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.benefit-card-text-immersive-learning-nederlands {
  color: #4b7a7f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
}

.methods-section-immersive-learning-nederlands {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.methods-section-immersive-learning-nederlands::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.methods-content-immersive-learning-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.methods-text-immersive-learning-nederlands {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.methods-title-immersive-learning-nederlands {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.methods-description-immersive-learning-nederlands,
.methods-text-immersive-learning-nederlands p {
  color: #5eead4;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.methods-subtitle-immersive-learning-nederlands {
  color: #99f6e4;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-top: 1.5rem;
}

.methods-image-immersive-learning-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.methods-img-immersive-learning-nederlands {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.practice-section-immersive-learning-nederlands {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.practice-content-immersive-learning-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.practice-image-immersive-learning-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  order: -1;
}

.practice-img-immersive-learning-nederlands {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.practice-text-immersive-learning-nederlands {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.practice-title-immersive-learning-nederlands {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.practice-description-immersive-learning-nederlands,
.practice-text-immersive-learning-nederlands p {
  color: #4b7a7f;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.practice-description-immersive-learning-nederlands {
  color: #0d7377;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.0625rem);
  font-weight: 500;
}

.challenges-section-immersive-learning-nederlands {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.challenges-header-immersive-learning-nederlands {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.challenges-title-immersive-learning-nederlands {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.challenges-subtitle-immersive-learning-nederlands {
  color: #4b7a7f;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
}

.challenges-wrapper-immersive-learning-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.challenge-item-immersive-learning-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #14b8a6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.challenge-number-immersive-learning-nederlands {
  color: #14b8a6;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.challenge-content-immersive-learning-nederlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.challenge-title-immersive-learning-nederlands {
  color: #042f2e;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.challenge-text-immersive-learning-nederlands {
  color: #4b7a7f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
}

.implementation-section-immersive-learning-nederlands {
  background: #042f2e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.implementation-section-immersive-learning-nederlands::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.implementation-content-immersive-learning-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.implementation-text-immersive-learning-nederlands {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.implementation-title-immersive-learning-nederlands {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.implementation-description-immersive-learning-nederlands,
.implementation-text-immersive-learning-nederlands p {
  color: #5eead4;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.implementation-image-immersive-learning-nederlands {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.implementation-img-immersive-learning-nederlands {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.conclusion-section-immersive-learning-nederlands {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.conclusion-content-immersive-learning-nederlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-quote-immersive-learning-nederlands {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #14b8a6;
  background: #f8fafc;
  border-radius: 8px;
}

.quote-text-immersive-learning-nederlands {
  color: #0d7377;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-immersive-learning-nederlands {
  color: #4b7a7f;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-style: normal;
}

.conclusion-title-immersive-learning-nederlands {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
}

.conclusion-text-immersive-learning-nederlands {
  color: #4b7a7f;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.conclusion-cta-immersive-learning-nederlands {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.cta-button-primary-immersive-learning-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #14b8a6;
  color: #042f2e;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button-primary-immersive-learning-nederlands:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(20, 184, 166, 0.3);
}

.cta-button-secondary-immersive-learning-nederlands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
  color: #14b8a6;
  text-decoration: none;
  border: 2px solid #14b8a6;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button-secondary-immersive-learning-nederlands:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: #0d9488;
  color: #0d9488;
}

.disclaimer-section-immersive-learning-nederlands {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-immersive-learning-nederlands {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
}

.disclaimer-title-immersive-learning-nederlands {
  color: #042f2e;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-immersive-learning-nederlands {
  color: #4b7a7f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
}

.related-section-immersive-learning-nederlands {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
}

.related-header-immersive-learning-nederlands {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.related-title-immersive-learning-nederlands {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.related-subtitle-immersive-learning-nederlands {
  color: #4b7a7f;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
}

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

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

.related-card-immersive-learning-nederlands:hover {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #14b8a6;
}

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

.related-card-text-immersive-learning-nederlands {
  color: #4b7a7f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
}

.related-card-link-immersive-learning-nederlands {
  color: #14b8a6;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.related-card-link-immersive-learning-nederlands:hover {
  color: #0d9488;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .intro-content-immersive-learning-nederlands,
  .methods-content-immersive-learning-nederlands,
  .practice-content-immersive-learning-nederlands,
  .implementation-content-immersive-learning-nederlands {
    flex-direction: column;
  }

  .intro-text-immersive-learning-nederlands,
  .intro-image-immersive-learning-netherlands,
  .methods-text-immersive-learning-nederlands,
  .methods-image-immersive-learning-nederlands,
  .practice-text-immersive-learning-nederlands,
  .practice-image-immersive-learning-nederlands,
  .implementation-text-immersive-learning-nederlands,
  .implementation-image-immersive-learning-nederlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-image-immersive-learning-nederlands {
    order: 0;
  }

  .challenge-item-immersive-learning-nederlands {
    flex-direction: column;
    align-items: flex-start;
  }

  .challenge-number-immersive-learning-nederlands {
    font-size: 2rem;
  }

  .conclusion-cta-immersive-learning-nederlands {
    flex-direction: column;
  }

  .cta-button-primary-immersive-learning-nederlands,
  .cta-button-secondary-immersive-learning-nederlands {
    width: 100%;
  }

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

  .benefits-cards-immersive-learning-nederlands,
  .related-cards-immersive-learning-nederlands {
    flex-direction: column;
  }

  .benefit-card-immersive-learning-nederlands {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title-immersive-learning-nederlands {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .breadcrumbs-immersive-learning-nederlands {
    font-size: 0.75rem;
  }

  .challenge-item-immersive-learning-nederlands {
    padding: 1rem;
  }

  .meta-badge-immersive-learning-nederlands {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
}

.main-nederlands-podcasts-audio {
  width: 100%;
}

.main-nederlands-podcasts-audio section {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-nederlands-podcasts-audio {
  background: #042f2e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.hero-section-nederlands-podcasts-audio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-nederlands-podcasts-audio {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.breadcrumbs-nederlands-podcasts-audio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

.breadcrumb-link-nederlands-podcasts-audio {
  color: #5eead4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-nederlands-podcasts-audio:hover {
  color: #ffffff;
}

.breadcrumb-separator-nederlands-podcasts-audio {
  color: #0d7377;
}

.breadcrumb-current-nederlands-podcasts-audio {
  color: #14b8a6;
  font-weight: 500;
}

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

.hero-subtitle-nederlands-podcasts-audio {
  color: #99f6e4;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 500;
  line-height: 1.4;
}

.hero-description-nederlands-podcasts-audio {
  color: #5eead4;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  max-width: 600px;
}

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

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

.stat-number-nederlands-podcasts-audio {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
}

.stat-label-nederlands-podcasts-audio {
  font-size: clamp(0.75rem, 1.5vw, 0.9375rem);
  color: #5eead4;
  font-weight: 500;
}

.hero-image-wrapper-nederlands-podcasts-audio {
  margin-top: clamp(3rem, 6vw, 5rem);
  max-width: 100%;
}

.hero-image-nederlands-podcasts-audio {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

.intro-section-nederlands-podcasts-audio {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.intro-content-wrapper-Nederlands-podcasts-audio {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.intro-text-nederlands-podcasts-audio {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 45%;
  max-width: 55%;
}

.intro-title-nederlands-podcasts-audio {
  color: #042f2e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-description-nederlands-podcasts-audio {
  color: #0d7377;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.intro-text-secondary-nederlands-podcasts-audio {
  color: #4b7a7f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.intro-image-nederlands-podcasts-audio {
  flex: 1 1 45%;
  max-width: 55%;
  min-width: 0;
}

.intro-image-tag-nederlands-podcasts-audio {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: block;
}

.content-one-nederlands-podcasts-audio {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.content-one-wrapper-nederlands-podcasts-audio {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.content-one-text-nederlands-podcasts-audio {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex: 1 1 45%;
  max-width: 55%;
}

.content-one-title-nederlands-podcasts-audio {
  color: #042f2e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.content-one-description-nederlands-podcasts-audio {
  color: #0d7377;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.content-one-list-nederlands-podcasts-audio {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.list-item-nederlands-podcasts-audio {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.list-icon-nederlands-podcasts-audio {
  color: #14b8a6;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.list-content-nederlands-podcasts-audio {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.list-title-nederlands-podcasts-audio {
  color: #042f2e;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 600;
}

.list-text-nederlands-podcasts-audio {
  color: #4b7a7f;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.6;
}

.content-one-image-nederlands-podcasts-audio {
  flex: 1 1 45%;
  max-width: 55%;
  min-width: 0;
}

.content-one-image-tag-nederlands-podcasts-audio {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: block;
}

.content-two-nederlands-podcasts-audio {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.content-two-wrapper-nederlands-podcasts-audio {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.content-two-image-nederlands-podcasts-audio {
  flex: 1 1 45%;
  max-width: 55%;
  min-width: 0;
  order: -1;
}

.content-two-image-tag-nederlands-podcasts-audio {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: block;
}

.content-two-text-nederlands-podcasts-audio {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex: 1 1 45%;
  max-width: 55%;
}

.content-two-title-nederlands-podcasts-audio {
  color: #042f2e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.content-two-description-nederlands-podcasts-audio {
  color: #0d7377;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.content-two-text-secondary-nederlands-podcasts-audio {
  color: #4b7a7f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.content-two-highlights-nederlands-podcasts-audio {
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.highlight-box-nederlands-podcasts-audio {
  background: rgba(20, 184, 166, 0.1);
  border-left: 4px solid #14b8a6;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
}

.highlight-title-nederlands-podcasts-audio {
  color: #042f2e;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.highlight-text-nederlands-podcasts-audio {
  color: #0d7377;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.6;
}

.methods-section-nederlands-podcasts-audio {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.methods-header-nederlands-podcasts-audio {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.methods-title-nederlands-podcasts-audio {
  color: #042f2e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.methods-subtitle-nederlands-podcasts-audio {
  color: #4b7a7f;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

.methods-steps-nederlands-podcasts-audio {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.method-step-nederlands-podcasts-audio {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.method-number-nederlands-podcasts-audio {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.method-content-nederlands-podcasts-audio {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.method-title-nederlands-podcasts-audio {
  color: #042f2e;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
}

.method-text-nederlands-podcasts-audio {
  color: #4b7a7f;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.tools-section-nederlands-podcasts-audio {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.tools-header-nederlands-podcasts-audio {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tools-title-nederlands-podcasts-audio {
  color: #042f2e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.tools-subtitle-nederlands-podcasts-audio {
  color: #4b7a7f;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

.tools-grid-nederlands-podcasts-audio {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tool-card-nederlands-podcasts-audio {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card-nederlands-podcasts-audio:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tool-icon-nederlands-podcasts-audio {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  border-radius: 10px;
  color: #14b8a6;
  font-size: 1.5rem;
}

.tool-name-nederlands-podcasts-audio {
  color: #042f2e;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
}

.tool-description-nederlands-podcasts-audio {
  color: #4b7a7f;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.6;
}

.conclusion-section-nederlands-podcasts-audio {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.conclusion-section-nederlands-podcasts-audio::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.conclusion-content-nederlands-podcasts-audio {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 750px;
  position: relative;
  z-index: 1;
}

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

.conclusion-text-nederlands-podcasts-audio {
  color: #5eead4;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.featured-quote-nederlands-podcasts-audio {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #14b8a6;
  background: rgba(255, 255, 255, 0.05);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  border-radius: 4px;
}

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

.quote-author-nederlands-podcasts-audio {
  color: #99f6e4;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-style: normal;
}

.conclusion-closing-nederlands-podcasts-audio {
  color: #5eead4;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.related-section-nederlands-podcasts-audio {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.related-header-nederlands-podcasts-audio {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.related-title-nederlands-podcasts-audio {
  color: #042f2e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.related-subtitle-nederlands-podcasts-audio {
  color: #4b7a7f;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

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

.related-card-link-nederlands-podcasts-audio {
  flex: 1 1 320px;
  max-width: 420px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.related-card-link-nederlands-podcasts-audio:hover {
  transform: translateY(-4px);
}

.related-card-nederlands-podcasts-audio {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.related-card-image-nederlands-podcasts-audio {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-nederlands-podcasts-audio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-nederlands-podcasts-audio {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.related-card-title-nederlands-podcasts-audio {
  color: #042f2e;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-nederlands-podcasts-audio {
  color: #4b7a7f;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.6;
}

.disclaimer-section-nederlands-podcasts-audio {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-nederlands-podcasts-audio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  background: #faf5ff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #7c3aed;
}

.disclaimer-title-nederlands-podcasts-audio {
  color: #1e1b4b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
}

.disclaimer-text-nederlands-podcasts-audio {
  color: #6b7280;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .intro-content-wrapper-Nederlands-podcasts-audio,
  .content-one-wrapper-nederlands-podcasts-audio,
  .content-two-wrapper-nederlands-podcasts-audio {
    flex-direction: column;
  }

  .intro-text-nederlands-podcasts-audio,
  .intro-image-nederlands-podcasts-audio,
  .content-one-text-nederlands-podcasts-audio,
  .content-one-image-nederlands-podcasts-audio,
  .content-two-text-nederlands-podcasts-audio,
  .content-two-image-nederlands-podcasts-audio {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-two-image-nederlands-podcasts-audio {
    order: 0;
  }

  .hero-stats-nederlands-podcasts-audio {
    flex-direction: column;
    gap: 1.5rem;
  }

  .method-step-nederlands-podcasts-audio {
    flex-direction: column;
    gap: 1rem;
  }

  .tools-grid-nederlands-podcasts-audio {
    flex-direction: column;
  }

  .tool-card-nederlands-podcasts-audio {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-link-nederlands-podcasts-audio {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .intro-content-wrapper-Nederlands-podcasts-audio,
  .content-one-wrapper-nederlands-podcasts-audio,
  .content-two-wrapper-nederlands-podcasts-audio {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }
}

@media (min-width: 1024px) {
  .tools-grid-nederlands-podcasts-audio {
    grid-template-columns: repeat(4, 1fr);
  }

  .related-cards-nederlands-podcasts-audio {
    gap: clamp(2rem, 4vw, 2.5rem);
  }
}

:root {
  --color-bg-primary-dark: #042f2e;
  --color-bg-secondary-dark: #064e4a;
  --color-bg-primary-light: #ffffff;
  --color-bg-secondary-light: #f8fafc;
  --color-bg-tertiary-light: #f1f5f9;
  --color-bg-card-dark: rgba(20, 184, 166, 0.08);
  --color-bg-card-light: #ffffff;
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #99f6e4;
  --color-text-muted-dark: #5eead4;
  --color-text-primary-light: #042f2e;
  --color-text-secondary-light: #0d7377;
  --color-text-muted-light: #4b7a7f;
  --color-primary: #14b8a6;
  --color-primary-hover: #0d9488;
  --color-secondary: #10b981;
  --color-accent-warm: #f59e0b;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --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-body), sans-serif;
  line-height: 1.6;
  background: var(--color-bg-primary-light);
}

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

.dutch-conversation-about {
  width: 100%;
}

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

.hero-section-about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

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

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
}

.hero-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #99f6e4;
  max-width: 600px;
  line-height: 1.6;
}

.hero-description-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #5eead4;
  max-width: 700px;
  line-height: 1.7;
}

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

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

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

.stat-label-about {
  font-size: 0.875rem;
  color: #99f6e4;
  font-weight: 500;
}

.hero-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  display: block;
  box-shadow: var(--shadow-xl);
}

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

  .hero-stats-about {
    gap: clamp(3rem, 5vw, 4rem);
  }
}

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

.foundation-section-about::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

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

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #042f2e;
  line-height: 1.2;
}

.foundation-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7a7f;
  line-height: 1.8;
  max-width: 750px;
}

.foundation-highlight-about {
  color: var(--color-primary);
  font-weight: 600;
}

.foundation-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

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

.methodology-section-about::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.methodology-content-about {
  position: relative;
  z-index: 1;
}

.methodology-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.methodology-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.methodology-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #99f6e4;
  max-width: 600px;
  margin: 0 auto;
}

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

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

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

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

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

.methodology-step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #5eead4;
  line-height: 1.7;
}

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

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

.commitment-intro-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.commitment-intro-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.commitment-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #042f2e;
  line-height: 1.2;
}

.commitment-intro-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b7a7f;
  line-height: 1.8;
  max-width: 700px;
}

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

.value-card-about {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary-light);
  border: 2px solid #e0f2f1;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.value-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #042f2e;
}

.value-text-about {
  font-size: 0.9375rem;
  color: #4b7a7f;
  line-height: 1.7;
}

.commitment-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

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

  .value-card-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.vision-section-about::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.vision-content-about {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
}

.vision-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.vision-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #5eead4;
  line-height: 1.8;
}

.vision-highlight-about {
  color: var(--color-primary);
  font-weight: 600;
}

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

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

.featured-quote-author-about {
  font-size: 0.9375rem;
  color: #99f6e4;
  font-style: normal;
  font-weight: 500;
}

.disclaimer-section-about {
  background: var(--color-bg-primary-light);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e0f2f1;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #042f2e;
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: #4b7a7f;
  line-height: 1.8;
  max-width: 800px;
}

@media (min-width: 768px) {
  .methodology-section-about {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }

  .commitment-section-about {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }

  .vision-section-about {
    padding: clamp(5rem, 8vw, 7rem) 0;
  }
}

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

:root {
  --color-bg-primary-dark: #042f2e;
  --color-bg-secondary-dark: #064e4a;
  --color-bg-primary-light: #ffffff;
  --color-bg-secondary-light: #f8fafc;
  --color-bg-tertiary-light: #f1f5f9;
  --color-bg-card-dark: rgba(20, 184, 166, 0.08);
  --color-bg-card-light: #ffffff;
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #99f6e4;
  --color-text-muted-dark: #5eead4;
  --color-text-primary-light: #042f2e;
  --color-text-secondary-light: #0d7377;
  --color-text-muted-light: #4b7a7f;
  --color-primary: #14b8a6;
  --color-primary-hover: #0d9488;
  --color-secondary: #10b981;
  --color-accent-warm: #f59e0b;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

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

.docs-center {
  width: 100%;
}

.docs-center section {
  width: 100%;
}

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

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

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

.docs-hero-title {
  font-family: var(--font-heading), serif;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-primary-dark);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.docs-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted-dark);
  font-style: italic;
}

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

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

.docs-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.docs-content-block {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.docs-section-title {
  font-family: var(--font-heading), serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-section-paragraph {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-section-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
}

.docs-section-list-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.docs-section-list-item::marker {
  color: var(--color-primary);
  font-weight: 600;
}

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

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

.docs-contact-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 600px;
}

.docs-contact-title {
  font-family: var(--font-heading), serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary-light);
}

.docs-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary-light);
}

.docs-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.docs-contact-label {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.docs-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

  .docs-content-section {
    padding: 5rem 0;
  }

  .docs-contact-section {
    padding: 5rem 0;
  }

  .docs-content-wrapper {
    gap: 3rem;
  }

  .docs-contact-info {
    gap: 1.5rem;
  }
}

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

  .docs-content-section {
    padding: 6rem 0;
  }

  .docs-contact-section {
    padding: 6rem 0;
  }

  .docs-section-title {
    font-size: 2.5rem;
  }

  .docs-section-paragraph {
    font-size: 1.125rem;
  }

  .docs-contact-content {
    max-width: 700px;
  }
}

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

p, li {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

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

.thank-you-page {
    width: 100%;
  }

  .thank-section {
    width: 100%;
    background: var(--color-bg-primary-dark);
    padding: clamp(3rem, 10vw, 8rem) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 100vh;
  }

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

  .thank-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.5rem, 4vw, 3rem);
  }

  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--color-secondary);
    animation: bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  @keyframes bounce-in {
    0% {
      transform: scale(0) rotateZ(-45deg);
      opacity: 0;
    }
    100% {
      transform: scale(1) rotateZ(0deg);
      opacity: 1;
    }
  }

  .thank-section h1 {
    color: var(--color-text-primary-dark);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
    line-height: 1.15;
    margin: 0;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-lead {
    color: var(--color-text-secondary-dark);
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
    line-height: 1.5;
    margin: 0;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-message {
    color: var(--color-text-muted-dark);
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-next-steps {
    color: var(--color-text-muted-dark);
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

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

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

  
  @media (min-width: 768px) {
    .thank-section {
      padding: clamp(4rem, 10vw, 8rem) 0;
      min-height: auto;
    }

    .thank-content {
      gap: clamp(2rem, 4vw, 3.5rem);
    }

    .thank-icon {
      font-size: clamp(4rem, 8vw, 6rem);
    }
  }

  
  @media (min-width: 1024px) {
    .thank-section {
      padding: 6rem 0;
      min-height: 100vh;
    }

    .thank-content {
      gap: 3rem;
    }

    .thank-icon {
      font-size: 6rem;
    }

    .thank-section h1 {
      font-size: 3.5rem;
    }

    .thank-lead {
      font-size: 1.5rem;
    }

    .thank-message,
    .thank-next-steps {
      font-size: 1.125rem;
    }

    .btn {
      font-size: 1rem;
      padding: 1.125rem 2.5rem;
    }
  }

  
  @media (min-width: 1440px) {
    .thank-section {
      padding: 8rem 0;
    }

    .thank-content {
      gap: 3rem;
    }

    .thank-icon {
      font-size: 6rem;
    }

    .thank-section h1 {
      font-size: 3.5rem;
    }

    .thank-lead {
      font-size: 1.5rem;
    }

    .thank-message,
    .thank-next-steps {
      font-size: 1.125rem;
    }

    .btn {
      font-size: 1rem;
      padding: 1.125rem 2.5rem;
    }
  }

  
  @media (prefers-reduced-motion: reduce) {
    .thank-icon {
      animation: none;
    }

    .btn {
      transition: none;
    }

    .btn:hover {
      transform: none;
    }
  }

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

  
  @media print {
    .thank-section {
      padding: 2rem 0;
      min-height: auto;
    }

    .btn {
      display: none;
    }
  }

.main.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  .error-section {
    background: var(--color-bg-primary-dark);
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--space-lg) 0;
  }

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

  .error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  
  .error-animation {
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
  }

  .error-code-wrapper {
    position: relative;
    display: inline-block;
  }

  .error-code {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw + 1rem, 8rem);
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 0;
    text-shadow: 0 4px 20px rgba(20, 184, 166, 0.2);
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  .error-decoration {
    position: absolute;
    top: -20px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 0.1;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.15;
    }
  }

  .error-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    color: var(--color-text-primary-dark);
    margin: 0 0 clamp(0.75rem, 2vw, 1.5rem) 0;
    line-height: 1.2;
    font-weight: 700;
  }

  .error-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--color-text-secondary-dark);
    margin: 0 0 clamp(1rem, 3vw, 1.5rem) 0;
    line-height: 1.5;
    font-weight: 600;
  }

  .error-description {
    font-family: var(--font-body);
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    color: var(--color-text-muted-dark);
    margin: 0 0 clamp(1.5rem, 4vw, 2.5rem) 0;
    line-height: 1.7;
    max-width: 600px;
  }

  
  .error-suggestions {
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2rem);
    margin: clamp(1.5rem, 4vw, 2.5rem) 0;
    max-width: 500px;
  }

  .suggestion-label {
    font-family: var(--font-body);
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    color: var(--color-primary);
    font-weight: 700;
    margin: 0 0 clamp(0.75rem, 2vw, 1rem) 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .suggestion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }

  .suggestion-list li {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
    color: var(--color-text-secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    line-height: 1.5;
  }

  .suggestion-list i {
    color: var(--color-primary);
    font-size: 1.25em;
    flex-shrink: 0;
  }

  
  .btn {
    display: inline-block;
    padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    border: 2px solid transparent;
    text-align: center;
  }

  .btn-primary {
    background: var(--color-primary);
    color: #042f2e;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
  }

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

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

  
  .error-footer-message {
    margin-top: clamp(2rem, 5vw, 3rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(20, 184, 166, 0.15);
  }

  .error-footer-message p {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--color-text-muted-dark);
    margin: 0;
    line-height: 1.6;
  }

  
  @media (min-width: 768px) {
    .error-section {
      padding: var(--space-xl) 0;
    }

    .error-content {
      padding: clamp(3rem, 8vw, 5rem) 0;
    }

    .error-suggestions {
      padding: clamp(2rem, 4vw, 2.5rem);
    }
  }

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

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

  
  @media print {
    .error-animation {
      display: none;
    }

    .error-code {
      animation: none;
      text-shadow: none;
    }
  }