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

:root {
  
  
  
  
  --color-dark-primary: #042f2e;
  --color-dark-secondary: #064e4a;
  --color-dark-tertiary: #0f766e;
  
  
  --color-light-primary: #ffffff;
  --color-light-secondary: #f8fafc;
  --color-light-tertiary: #f1f5f9;
  
  
  --color-card-dark: rgba(20, 184, 166, 0.08);
  --color-card-light: #ffffff;
  
  
  --color-text-light-primary: #ffffff;
  --color-text-light-secondary: #99f6e4;
  --color-text-light-muted: #a7f3d0;
  
  
  --color-text-dark-primary: #042f2e;
  --color-text-dark-secondary: #0f766e;
  --color-text-dark-muted: #64748b;
  
  
  --color-accent-primary: #14b8a6;
  --color-accent-secondary: #2dd4bf;
  --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.2);
  --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);
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

p {
  line-height: 1.7;
}

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

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

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

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

.btn-outline {
  background: transparent;
  border-color: currentColor;
}

.btn-outline:hover {
  background: rgba(20, 184, 166, 0.1);
}

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

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

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

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

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero-heading-besluitvorming {
  color: var(--color-text-light-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  line-height: 1.1;
}

.hero-subheading-besluitvorming {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 500;
}

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

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

.hero-image-block {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(45, 212, 191, 0.1) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(20, 184, 166, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-icon {
  font-size: clamp(4rem, 10vw, 6rem);
  color: var(--color-accent-primary);
  opacity: 0.8;
}

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

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.3), transparent);
}

.features-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.features-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
}

.features-title-zelfontwikkeling {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
}

.features-subtitle-zelfontwikkeling {
  color: var(--color-text-dark-secondary);
  font-weight: 600;
}

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

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-2xl);
  background: var(--color-light-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(20, 184, 166, 0.1);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(20, 184, 166, 0.3);
}

.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-lg);
}

.feature-icon {
  font-size: 1.75rem;
  color: var(--color-accent-primary);
}

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

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

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

.about-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-title-persoonlijke {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
}

.about-subtitle-persoonlijke {
  color: var(--color-accent-secondary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.about-benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
}

.about-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.about-benefit-icon {
  color: var(--color-accent-secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.about-image-block {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.25) 0%, rgba(45, 212, 191, 0.15) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(20, 184, 166, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image-icon {
  font-size: clamp(4rem, 10vw, 5.5rem);
  color: var(--color-accent-secondary);
  opacity: 0.9;
}

.benefits-section {
  background: var(--color-light-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.benefits-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
}

.benefits-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.benefits-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefits-title-cursus {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
}

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

.benefits-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-2xl);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-xl);
  background: var(--color-light-primary);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(20, 184, 166, 0.15);
}

.stat-number {
  color: var(--color-accent-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--color-text-dark-secondary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

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

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

.pricing-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.pricing-title-programma {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-2xl);
  background: rgba(20, 184, 166, 0.12);
  border: 2px solid rgba(20, 184, 166, 0.3);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--color-accent-primary);
  background: rgba(20, 184, 166, 0.18);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--color-accent-secondary);
  background: rgba(20, 184, 166, 0.2);
}

.pricing-badge {
  display: inline-block;
  background: var(--color-accent-warm);
  color: #000000;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  width: fit-content;
}

.pricing-tier-name {
  color: var(--color-text-light-primary);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
}

.pricing-description-tier {
  color: var(--color-text-light-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.pricing-currency {
  color: var(--color-accent-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.pricing-value {
  color: var(--color-text-light-primary);
  font-size: clamp(2rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

.pricing-period {
  color: var(--color-text-light-muted);
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-text-light-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
}

.pricing-feature-icon {
  color: var(--color-accent-secondary);
  font-size: 1rem;
  flex-shrink: 0;
}

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

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

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonials-title-feedback {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-2xl);
  background: var(--color-light-secondary);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(20, 184, 166, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-star {
  color: var(--color-accent-warm);
  font-size: 1rem;
}

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

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

.testimonial-author-name {
  color: var(--color-text-dark-primary);
  font-weight: 700;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
}

.testimonial-author-title {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
}

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

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

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-start {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
}

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

.cta-button-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .cta-button-group {
    flex-direction: row;
  }
}

.faq-section {
  background: var(--color-light-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faq-content {
    grid-template-columns: 1fr;
  }
}

.faq-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-title-vragen {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
}

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

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

.faq-item {
  display: flex;
  flex-direction: column;
  background: var(--color-light-primary);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  cursor: pointer;
  background: var(--color-light-primary);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--color-light-tertiary);
}

.faq-question-text {
  color: var(--color-text-dark-primary);
  font-weight: 700;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  flex: 1;
}

.faq-toggle-icon {
  color: var(--color-accent-primary);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 var(--space-lg);
}

.faq-answer-text {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
  padding: var(--space-lg) 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.cookie-banner {
  background: var(--color-dark-secondary);
  border-top: 1px solid rgba(20, 184, 166, 0.3);
  padding: var(--space-lg);
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .cookie-banner-content {
    flex-direction: row;
  }
}

.cookie-banner-text {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
  flex: 1;
}

.cookie-banner-text a {
  color: var(--color-accent-secondary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
  color: var(--color-text-light-primary);
}

.cookie-banner-actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

.cookie-accept-btn,
.cookie-decline-btn {
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

.cookie-accept-btn:hover {
  background: var(--color-accent-secondary);
  transform: translateY(-1px);
}

.cookie-decline-btn {
  background: transparent;
  color: var(--color-text-light-secondary);
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.cookie-decline-btn:hover {
  border-color: var(--color-accent-primary);
  color: var(--color-text-light-primary);
}

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

@media (min-width: 768px) {
  .show-mobile-only {
    display: none !important;
  }
}

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

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

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

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

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

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

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

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

  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

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

  
  .header-keuze-deck {
    background: var(--color-dark-primary);
    padding: 1rem 0;
    position: static;
    z-index: 1000;
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
  }

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

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

  .header-keuze-deck-brand:hover {
    opacity: 0.85;
  }

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

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

  
  .header-keuze-deck-desktop-nav {
    display: none;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex: 1;
    margin: 0 2rem;
  }

  
  .header-keuze-deck-nav-link {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text-light-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 300ms ease;
    position: relative;
  }

  .header-keuze-deck-nav-link:hover {
    color: var(--color-accent-primary);
  }

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

  .header-keuze-deck-nav-link:hover::after {
    width: 100%;
  }

  
  .header-keuze-deck-cta-button {
    display: none;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-accent-primary);
    color: var(--color-dark-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    transition: all 300ms ease;
    white-space: nowrap;
  }

  .header-keuze-deck-cta-button:hover {
    background: var(--color-accent-secondary);
    transform: translateY(-2px);
  }

  .header-keuze-deck-cta-button:focus-visible {
    outline: 2px solid var(--color-accent-primary);
    outline-offset: 2px;
  }

  
  .header-keuze-deck-mobile-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
    margin-left: auto;
  }

  .header-keuze-deck-hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-text-light-primary);
    border-radius: 1px;
    transition: all 300ms ease;
  }

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

  .header-keuze-deck-mobile-toggle[aria-expanded="true"] .header-keuze-deck-hamburger:nth-child(2) {
    opacity: 0;
  }

  .header-keuze-deck-mobile-toggle[aria-expanded="true"] .header-keuze-deck-hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  
  .header-keuze-deck-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-dark-secondary);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 350ms ease;
    z-index: 999;
    overflow-y: auto;
  }

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

  
  .header-keuze-deck-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
  }

  .header-keuze-deck-mobile-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-light-primary);
  }

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

  .header-keuze-deck-mobile-close:hover {
    color: var(--color-accent-primary);
  }

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

  .header-keuze-deck-mobile-link {
    padding: 1rem 1.5rem;
    color: var(--color-text-light-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(20, 184, 166, 0.08);
    transition: all 300ms ease;
  }

  .header-keuze-deck-mobile-link:hover {
    background: rgba(20, 184, 166, 0.1);
    color: var(--color-accent-primary);
    padding-left: 2rem;
  }

  
  .header-keuze-deck-mobile-cta {
    display: block;
    margin: 1.5rem;
    padding: 1rem;
    background: var(--color-accent-primary);
    color: var(--color-dark-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    transition: all 300ms ease;
  }

  .header-keuze-deck-mobile-cta:hover {
    background: var(--color-accent-secondary);
    transform: translateY(-2px);
  }

  
  @media (min-width: 768px) {
    .header-keuze-deck {
      padding: 1.25rem 0;
      border-bottom: 1px solid rgba(20, 184, 166, 0.15);
    }

    .header-keuze-deck-container {
      padding: 0 clamp(1.5rem, 5vw, 2.5rem);
    }

    .header-keuze-deck-desktop-nav {
      display: flex;
    }

    .header-keuze-deck-cta-button {
      display: inline-block;
    }

    .header-keuze-deck-mobile-toggle {
      display: none;
    }

    .header-keuze-deck-mobile-menu {
      display: none;
    }

    .header-keuze-deck-nav-link {
      font-size: 0.9375rem;
    }
  }

  @media (min-width: 1024px) {
    .header-keuze-deck-logo-text {
      font-size: 1.5rem;
    }

    .header-keuze-deck-nav-link {
      font-size: 1rem;
    }

    .header-keuze-deck-cta-button {
      padding: 0.75rem 1.75rem;
      font-size: 1rem;
    }
  }

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

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

  .header-keuze-deck-mobile-link:focus-visible {
    outline: 2px solid var(--color-accent-primary);
    outline-offset: -2px;
  }

  
  @media (prefers-reduced-motion: reduce) {
    .header-keuze-deck-brand,
    .header-keuze-deck-nav-link,
    .header-keuze-deck-cta-button,
    .header-keuze-deck-mobile-toggle .header-keuze-deck-hamburger,
    .header-keuze-deck-mobile-menu,
    .header-keuze-deck-mobile-link {
      transition: none;
    }

    .header-keuze-deck-mobile-toggle[aria-expanded="true"] .header-keuze-deck-hamburger:nth-child(1),
    .header-keuze-deck-mobile-toggle[aria-expanded="true"] .header-keuze-deck-hamburger:nth-child(3) {
      transform: none;
    }
  }

    .decision-hub {
  width: 100%;
}

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

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

.hero-gradient-mesh-index {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-left-index {
  position: absolute;
  bottom: 10%;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-right-index {
  position: absolute;
  top: 60%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(45, 212, 191, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 2;
  pointer-events: none;
}

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

.hero-line-accent-index {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-content-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-content-index {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text-block-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero-title-besluitvorming-index {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  line-height: 1.1;
  font-weight: 700;
}

.hero-subtitle-besluitvorming-index {
  color: #99f6e4;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
}

.hero-description-besluitvorming-index {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  max-width: 500px;
}

.hero-cta-group-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero-cta-group-index {
    flex-direction: row;
  }
}

.hero-image-block-index {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper-index {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(45, 212, 191, 0.1) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(20, 184, 166, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-icon-index {
  font-size: clamp(4rem, 10vw, 6rem);
  color: var(--color-accent-primary);
  opacity: 0.8;
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  margin-top: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 10;
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
}

.stat-number-index {
  color: #14b8a6;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

.stat-label-index {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 500;
}

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

.features-section-index::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.3), transparent);
  z-index: 0;
}

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

.features-deco-shape-index {
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.04);
  border-radius: 45% 55% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.features-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  position: relative;
  z-index: 10;
}

.features-header-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
}

.features-tag-index {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #0f766e;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.features-title-zelfontwikkeling-index {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
}

.features-description-zelfontwikkeling-index {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-index:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(20, 184, 166, 0.3);
}

.feature-icon-wrapper-index {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  background: rgba(20, 184, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-index {
  color: #0f766e;
  font-size: 1.5rem;
}

.feature-title-card-index {
  color: #042f2e;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
}

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

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

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

.about-deco-glow-top-index {
  position: absolute;
  top: -20%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.about-deco-shape-index {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 30% 70% 60% 40% / 40% 50% 50% 60%;
  z-index: 1;
  pointer-events: none;
}

.about-deco-accent-index {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 200px;
  height: 150px;
  background: rgba(45, 212, 191, 0.04);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 2;
  pointer-events: none;
}

.about-content-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .about-content-index {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text-block-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-tag-index {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(45, 212, 191, 0.2);
  color: #99f6e4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

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

.about-description-persoonlijke-index {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.about-benefits-list-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
}

.about-benefit-item-index {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.about-benefit-icon-index {
  color: #2dd4bf;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-benefit-text-index {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.about-image-block-index {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-container-index {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.25) 0%, rgba(45, 212, 191, 0.15) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(20, 184, 166, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image-icon-index {
  font-size: clamp(4rem, 10vw, 5.5rem);
  color: #2dd4bf;
  opacity: 0.9;
}

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

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

.process-deco-shape-left-index {
  position: absolute;
  bottom: 15%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 70% 30% 40% 60% / 50% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.process-deco-shape-right-index {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(20, 184, 166, 0.04);
  border-radius: 60% 40% 50% 50%;
  z-index: 2;
  pointer-events: none;
}

.process-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  position: relative;
  z-index: 10;
}

.process-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.process-tag-index {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #0f766e;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 auto;
  width: fit-content;
}

.process-title-cursus-index {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
}

.process-subtitle-cursus-index {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.15);
  transition: all 0.3s ease;
}

.process-step-index:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(20, 184, 166, 0.3);
}

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

.process-step-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.process-step-title-index {
  color: #042f2e;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
}

.process-step-text-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

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

.testimonials-section-index::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
}

.testimonials-deco-accent-index {
  position: absolute;
  bottom: -20%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  position: relative;
  z-index: 10;
}

.testimonials-header-index {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonials-tag-index {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #0f766e;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 auto;
  width: fit-content;
}

.testimonials-title-feedback-index {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
}

.testimonials-description-feedback-index {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.testimonials-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-2xl);
  background: #f8fafc;
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.testimonial-card-index:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(20, 184, 166, 0.3);
}

.testimonial-stars-index {
  display: flex;
  gap: 4px;
}

.testimonial-star-index {
  color: #f59e0b;
  font-size: 1rem;
}

.testimonial-quote-index {
  color: #042f2e;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.testimonial-author-name-index {
  color: #042f2e;
  font-weight: 700;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
}

.testimonial-author-title-index {
  color: #0f766e;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
}

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

.featured-deco-glow-index {
  position: absolute;
  top: -10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.featured-deco-shape-index {
  position: absolute;
  bottom: 5%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.featured-posts-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  position: relative;
  z-index: 10;
}

.featured-posts-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.featured-posts-subtitle-index {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.featured-posts-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.featured-post-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  overflow: hidden;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.featured-post-card-index:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 212, 191, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.featured-post-image-wrapper-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(45, 212, 191, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-post-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-post-info-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
}

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

.featured-post-description-index {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.featured-post-link-index {
  color: #2dd4bf;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: color 0.3s ease;
  display: inline-block;
}

.featured-post-link-index:hover {
  color: #99f6e4;
}

.featured-posts-cta-index {
  text-align: center;
  margin-top: var(--space-lg);
}

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

.faq-deco-glow-index {
  position: absolute;
  top: 50%;
  right: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.faq-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.faq-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-title-vragen-index {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
}

.faq-description-vragen-index {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.faq-list-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
}

.faq-item-index {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question-index:hover {
  background: #f8fafc;
}

.faq-question-text-index {
  color: #042f2e;
  font-weight: 700;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  flex: 1;
}

.faq-toggle-icon-index {
  color: #0f766e;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer-index {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 var(--space-lg);
}

.faq-answer-text-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
  padding: var(--space-lg) 0;
}

.faq-item-index.active .faq-answer-index {
  max-height: 500px;
}

.faq-item-index.active .faq-toggle-icon-index {
  transform: rotate(180deg);
}

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

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

.cta-deco-glow-bottom-index {
  position: absolute;
  bottom: -10%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-shape-index {
  position: absolute;
  top: 20%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 50% 50% 30% 70% / 30% 50% 50% 70%;
  z-index: 1;
  pointer-events: none;
}

.cta-deco-line-index {
  position: absolute;
  bottom: 30%;
  left: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.cta-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-start-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.cta-description-start-index {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.cta-button-group-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  .cta-button-group-index {
    flex-direction: row;
  }
}

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

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

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

.contact-form-wrapper-index {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact-title-index {
  color: #042f2e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.contact-subtitle-index {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  margin-bottom: var(--space-lg);
}

.contact-form-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.contact-label-index {
  color: #042f2e;
  font-size: 0.875rem;
  font-weight: 600;
}

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-md);
  color: #042f2e;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: var(--font-body);
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

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

.contact-submit-btn-index {
  width: 100%;
  padding: 1rem 2rem;
  background: #0f766e;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-submit-btn-index:hover {
  background: #042f2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.contact-info-wrapper-index {
  flex: 1 1 400px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-title-index {
  color: #042f2e;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 700;
}

.contact-info-block-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-info-heading-index {
  color: #0f766e;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  font-weight: 700;
}

.contact-info-text-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
}

.contact-privacy-link-index {
  color: #0f766e;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: var(--space-md);
}

.contact-privacy-link-index:hover {
  color: #042f2e;
}

.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #064e4a;
  border-top: 1px solid rgba(20, 184, 166, 0.3);
  padding: clamp(1rem, 3vw, 1.5rem);
  display: none;
  z-index: 9999;
  overflow: hidden;
}

.cookie-banner-index.show {
  display: flex;
}

.cookie-banner-index {
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.cookie-banner-text-index {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
  flex: 1 1 auto;
  min-width: 250px;
}

.cookie-link-index {
  color: #2dd4bf;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cookie-link-index:hover {
  color: #99f6e4;
}

.cookie-banner-actions-index {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

.cookie-accept-btn-index,
.cookie-decline-btn-index {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept-btn-index {
  background: #14b8a6;
  color: #000000;
}

.cookie-accept-btn-index:hover {
  background: #2dd4bf;
  transform: translateY(-1px);
}

.cookie-decline-btn-index {
  background: transparent;
  color: #a7f3d0;
  border: 1px solid rgba(20, 184, 166, 0.4);
}

.cookie-decline-btn-index:hover {
  border-color: #2dd4bf;
  color: #2dd4bf;
}

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

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

  .featured-posts-cards-index {
    flex-direction: column;
  }

  .featured-post-card-index {
    flex: 1 1 100%;
    max-width: none;
  }

  .testimonials-grid-index {
    flex-direction: column;
  }

  .testimonial-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .cookie-banner-actions-index {
    width: 100%;
    flex-direction: column;
  }

  .cookie-accept-btn-index,
  .cookie-decline-btn-index {
    width: 100%;
  }

  .process-step-index {
    flex-direction: column;
    gap: var(--space-md);
  }

  .process-step-number-index {
    font-size: 2rem;
  }
}

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

.footer::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.04) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

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

.footer-content {
  display: block;
}

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

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

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

.footer-navigation {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

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

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

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

.footer-nav-link:hover {
  color: #2dd4bf;
}

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

.footer-nav-link:focus-visible {
  outline: 2px solid var(--color-accent-primary);
  outline-offset: 4px;
}

.footer-contact {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(20, 184, 166, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.1);
}

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

.footer-contact-info {
  display: block;
}

.footer-contact-phone,
.footer-contact-email,
.footer-contact-address {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin: 0;
  font-family: var(--font-body);
}

.footer-contact-address {
  margin-top: 0.5rem;
}

.footer-legal {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

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

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

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

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

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

.footer-legal-link:focus-visible {
  outline: 2px solid var(--color-accent-primary);
  outline-offset: 4px;
}

.footer-copyright {
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid rgba(167, 243, 208, 0.1);
  text-align: center;
}

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

@media (min-width: 768px) {
  .footer {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    grid-template-areas:
      "about navigation"
      "contact legal"
      "copyright copyright";
  }

  .footer-about {
    grid-area: about;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer-navigation {
    grid-area: navigation;
    margin-bottom: 0;
  }

  .footer-contact {
    grid-area: contact;
    margin-bottom: 0;
  }

  .footer-legal {
    grid-area: legal;
    margin-bottom: 0;
  }

  .footer-copyright {
    grid-area: copyright;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    border-top: 1px solid rgba(167, 243, 208, 0.1);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(5, 1fr);
    grid-template-areas:
      "about navigation navigation contact legal"
      "copyright copyright copyright copyright copyright";
    gap: clamp(2.5rem, 4vw, 3rem);
  }

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

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

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

  .footer-legal {
    grid-column: span 1;
  }

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

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

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

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

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

  .footer-contact-phone,
  .footer-contact-email,
  .footer-contact-address {
    font-size: 0.9375rem;
  }
}

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

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

.footer-nav-link:focus,
.footer-legal-link:focus {
  outline: 2px solid var(--color-accent-primary);
  outline-offset: 4px;
}
    

.category-page-decision-making-skills {
  width: 100%;
}

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

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

.hero-deco-glow-1 {
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-deco-glow-2 {
  position: absolute;
  bottom: -20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-deco-shape-accent {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  pointer-events: none;
  z-index: 1;
}

.hero-content-decision-making {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-content-decision-making {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text-block-decision-making {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero-title-decision-making {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.1;
  font-family: var(--font-heading);
}

.hero-subtitle-decision-making {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 500;
}

.hero-description-decision-making {
  color: var(--color-text-light-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  max-width: 500px;
}

.hero-stats-decision-making {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin: var(--space-lg) 0;
}

.stat-item-decision-making {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.stat-number-decision-making {
  color: var(--color-accent-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-label-decision-making {
  color: var(--color-text-light-muted);
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
  font-weight: 500;
}

.hero-cta-group-decision-making {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero-cta-group-decision-making {
    flex-direction: row;
  }
}

.hero-image-block-decision-making {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper-decision-making {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(45, 212, 191, 0.1) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(20, 184, 166, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-icon-decision-making {
  font-size: clamp(4rem, 10vw, 6rem);
  color: var(--color-accent-primary);
  opacity: 0.8;
}

.posts-section-decision-making {
  background: var(--color-light-primary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.posts-section-decision-making::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.3), transparent);
}

.posts-content-decision-making {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.posts-header-decision-making {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 700px;
}

.posts-title-decision-making {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
}

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

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

.card-wrapper-decision-making {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  flex: 1 1 300px;
  max-width: 380px;
}

.card-wrapper-decision-making:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(20, 184, 166, 0.3);
}

.card-image-decision-making {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(45, 212, 191, 0.05) 100%);
}

.card-title-decision-making {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.3;
}

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

.card-meta-decision-making {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

.meta-badge-decision-making {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-dark-secondary);
}

.meta-badge-decision-making i {
  color: var(--color-accent-primary);
  font-size: 0.875rem;
}

.card-link-decision-making {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-accent-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.card-link-decision-making:hover {
  color: var(--color-accent-secondary);
  gap: var(--space-md);
}

.card-link-decision-making::after {
  content: '';
  transition: transform 0.3s ease;
}

.card-link-decision-making:hover::after {
  transform: translateX(4px);
}

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

.methodology-deco-1 {
  position: absolute;
  top: 10%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.methodology-deco-2 {
  position: absolute;
  bottom: 5%;
  right: -10%;
  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: 1;
}

.methodology-content-decision-making {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  position: relative;
  z-index: 10;
}

.methodology-header-decision-making {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.methodology-title-decision-making {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
}

.methodology-description-decision-making {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.methodology-steps-decision-making {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.methodology-step-decision-making {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent-primary);
  transition: all 0.3s ease;
}

.methodology-step-decision-making:hover {
  background: rgba(20, 184, 166, 0.15);
  transform: translateX(4px);
}

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

.methodology-step-content-decision-making {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.methodology-step-title-decision-making {
  color: var(--color-text-light-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

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

.benefits-section-decision-making {
  background: var(--color-light-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.benefits-section-decision-making::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
}

.benefits-content-decision-making {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.benefits-header-decision-making {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefits-title-decision-making {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
}

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

.benefits-cards-decision-making {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.benefit-card-decision-making {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-2xl);
  background: var(--color-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1 1 240px;
  max-width: 300px;
  text-align: center;
}

.benefit-card-decision-making:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(20, 184, 166, 0.3);
}

.benefit-icon-wrapper-decision-making {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-lg);
  margin: 0 auto;
}

.benefit-icon-decision-making {
  font-size: 1.75rem;
  color: var(--color-accent-primary);
}

.benefit-title-decision-making {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

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

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

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

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

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--color-text-light-secondary);
}

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

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

@media (min-width: 768px) {
  .show-mobile-only {
    display: none !important;
  }
}

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

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

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

.main-persoonlijke-keuzes-zelfbewustzijn {
  width: 100%;
}

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

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

.hero-section-persoonlijke-keuzes-zelfbewustzijn::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-persoonlijke-keuzes-zelfbewustzijn {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-content-persoonlijke-keuzes-zelfbewustzijn {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text-block-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.breadcrumbs-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.breadcrumb-link-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-secondary);
  transition: color 0.3s ease;
}

.breadcrumb-link-persoonlijke-keuzes-zelfbewustzijn:hover {
  color: var(--color-accent-secondary);
}

.breadcrumb-separator-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-muted);
}

.breadcrumb-current-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-secondary);
  font-weight: 500;
}

.hero-title-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  line-height: 1.1;
}

.hero-subheading-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 500;
}

.hero-description-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  max-width: 500px;
}

.hero-meta-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

.meta-badge-persoonlijke-keuzes-zelfbewustzijn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--color-text-light-secondary);
}

.meta-badge-persoonlijke-keuzes-zelfbewustzijn i {
  color: var(--color-accent-primary);
}

.hero-cta-group-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: flex-start;
}

.hero-image-block-persoonlijke-keuzes-zelfbewustzijn {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper-persoonlijke-keuzes-zelfbewustzijn {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(45, 212, 191, 0.1) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(20, 184, 166, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-persoonlijke-keuzes-zelfbewustzijn {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.btn-primary-persoonlijke-keuzes-zelfbewustzijn {
  background: var(--color-accent-primary);
  color: #000000;
}

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

.intro-section-persoonlijke-keuzes-zelfbewustzijn {
  background: var(--color-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.intro-section-persoonlijke-keuzes-zelfbewustzijn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.3), transparent);
}

.intro-content-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

@media (min-width: 768px) {
  .intro-content-persoonlijke-keuzes-zelfbewustzijn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.intro-text-block-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.intro-title-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
}

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

.intro-image-block-persoonlijke-keuzes-zelfbewustzijn {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image-persoonlijke-keuzes-zelfbewustzijn {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.content-section-one-persoonlijke-keuzes-zelfbewustzijn {
  background: var(--color-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-section-one-persoonlijke-keuzes-zelfbewustzijn::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.content-wrapper-one-persoonlijke-keuzes-zelfbewustzijn {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .content-wrapper-one-persoonlijke-keuzes-zelfbewustzijn {
    grid-template-columns: 1fr 1fr;
  }
}

.content-text-one-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.content-heading-one-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  line-height: 1.2;
}

.content-paragraph-one-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.content-image-one-persoonlijke-keuzes-zelfbewustzijn {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image-persoonlijke-keuzes-zelfbewustzijn {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.content-section-two-persoonlijke-keuzes-zelfbewustzijn {
  background: var(--color-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.content-section-two-persoonlijke-keuzes-zelfbewustzijn::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
}

.content-wrapper-two-persoonlijke-keuzes-zelfbewustzijn {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .content-wrapper-two-persoonlijke-keuzes-zelfbewustzijn {
    grid-template-columns: 1fr 1fr;
  }
}

.content-image-two-persoonlijke-keuzes-zelfbewustzijn {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}

@media (min-width: 768px) {
  .content-image-two-persoonlijke-keuzes-zelfbewustzijn {
    order: 0;
  }
}

.content-text-two-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.content-heading-two-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  line-height: 1.2;
}

.content-paragraph-two-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.methods-list-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.method-item-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-light-primary);
  border-left: 4px solid var(--color-accent-primary);
  border-radius: var(--radius-md);
}

.method-title-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-dark-primary);
  font-size: 1rem;
  font-weight: 700;
}

.method-text-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-dark-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.quote-section-persoonlijke-keuzes-zelfbewustzijn {
  background: var(--color-dark-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-persoonlijke-keuzes-zelfbewustzijn {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-xl);
  border-left: 4px solid var(--color-accent-secondary);
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-lg);
  font-style: italic;
}

.quote-text-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.quote-author-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-secondary);
  font-size: 0.9375rem;
  font-style: normal;
}

.content-section-three-persoonlijke-keuzes-zelfbewustzijn {
  background: var(--color-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.content-wrapper-three-persoonlijke-keuzes-zelfbewustzijn {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 768px) {
  .content-wrapper-three-persoonlijke-keuzes-zelfbewustzijn {
    grid-template-columns: 1fr 1fr;
  }
}

.content-text-three-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.content-heading-three-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  line-height: 1.2;
}

.content-paragraph-three-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.content-image-three-persoonlijke-keuzes-zelfbewustzijn {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.conclusion-section-persoonlijke-keuzes-zelfbewustzijn::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.conclusion-content-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  text-align: center;
}

.conclusion-text-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  text-align: center;
}

.key-takeaways-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-2xl);
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: var(--radius-lg);
}

.takeaways-title-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-accent-secondary);
  font-size: 1.125rem;
  font-weight: 700;
}

.takeaways-list-persoonlijke-keuzes-zelfbewustzijn {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.takeaway-item-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  padding-left: var(--space-lg);
  position: relative;
}

.takeaway-item-persoonlijke-keuzes-zelfbewustzijn::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-accent-primary);
  font-weight: 700;
}

.cta-box-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-2xl);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(45, 212, 191, 0.15));
  border: 1px solid var(--color-accent-primary);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta-heading-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-primary);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
}

.cta-text-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-light-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
}

.btn-primary-cta-persoonlijke-keuzes-zelfbewustzijn {
  background: var(--color-accent-primary);
  color: #000000;
  align-self: center;
}

.btn-primary-cta-persoonlijke-keuzes-zelfbewustzijn:hover {
  background: var(--color-accent-secondary);
  transform: translateY(-2px);
}

.disclaimer-section-persoonlijke-keuzes-zelfbewustzijn {
  background: var(--color-light-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  position: relative;
}

.disclaimer-content-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl);
  background: var(--color-light-primary);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-left: 4px solid var(--color-accent-primary);
  border-radius: var(--radius-lg);
}

.disclaimer-title-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-dark-primary);
  font-size: 1.125rem;
  font-weight: 700;
}

.disclaimer-text-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.related-section-persoonlijke-keuzes-zelfbewustzijn {
  background: var(--color-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.related-section-persoonlijke-keuzes-zelfbewustzijn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
}

.related-content-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.related-title-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  text-align: center;
}

.related-subtitle-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  text-align: center;
}

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

.related-card-persoonlijke-keuzes-zelfbewustzijn {
  flex: 1 1 280px;
  max-width: 400px;
}

.related-card-content-persoonlijke-keuzes-zelfbewustzijn {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-2xl);
  background: var(--color-light-secondary);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.related-card-persoonlijke-keuzes-zelfbewustzijn:hover .related-card-content-persoonlijke-keuzes-zelfbewustzijn {
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.related-card-title-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-dark-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.related-card-text-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-text-dark-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.related-link-persoonlijke-keuzes-zelfbewustzijn {
  color: var(--color-accent-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  margin-top: var(--space-md);
}

.related-link-persoonlijke-keuzes-zelfbewustzijn:hover {
  color: var(--color-accent-secondary);
}

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

@media (min-width: 768px) {
  .related-cards-persoonlijke-keuzes-zelfbewustzijn {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 767px) {
  .hide-mobile-persoonlijke-keuzes-zelfbewustzijn {
    display: none !important;
  }
}

.main-strategische-besluitvorming {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

section {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-section-strategische-besluitvorming::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content-strategische-besluitvorming {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-content-strategische-besluitvorming {
    grid-template-columns: 1fr 1fr;
  }
}

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

.breadcrumbs-strategische-besluitvorming a {
  color: #99f6e4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-strategische-besluitvorming a:hover {
  color: #ffffff;
}

.breadcrumb-separator-strategische-besluitvorming {
  color: rgba(153, 246, 228, 0.5);
}

.breadcrumb-current-strategische-besluitvorming {
  color: rgba(255, 255, 255, 0.7);
}

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

.hero-title-strategische-besluitvorming {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  line-height: 1.1;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.hero-subtitle-strategische-besluitvorming {
  color: #99f6e4;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
}

.hero-description-strategische-besluitvorming {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  max-width: 550px;
}

.hero-cta-group-strategische-besluitvorming {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .hero-cta-group-strategische-besluitvorming {
    flex-direction: row;
  }
}

.hero-stats-strategische-besluitvorming {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 1rem;
  flex-wrap: wrap;
}

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

.stat-number-strategische-besluitvorming {
  color: #14b8a6;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.stat-label-strategische-besluitvorming {
  color: rgba(167, 243, 208, 0.9);
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
  font-weight: 500;
}

.hero-image-block-strategische-besluitvorming {
  position: relative;
  height: clamp(300px, 50vw, 450px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper-strategische-besluitvorming {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(45, 212, 191, 0.1) 100%);
  border-radius: 16px;
  border: 2px solid rgba(20, 184, 166, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-featured-image-strategische-besluitvorming {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-section-strategische-besluitvorming {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.intro-section-strategische-besluitvorming::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.3), transparent);
}

.intro-content-strategische-besluitvorming {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .intro-content-strategische-besluitvorming {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-text-block-strategische-besluitvorming {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-title-strategische-besluitvorming {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.intro-description-strategische-besluitvorming {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.intro-text-strategische-besluitvorming {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.intro-image-block-strategische-besluitvorming {
  position: relative;
  height: clamp(300px, 50vw, 400px);
}

.intro-image-strategische-besluitvorming {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.process-header-strategische-besluitvorming {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.process-tag-strategische-besluitvorming {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.2);
  color: #2dd4bf;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-title-strategische-besluitvorming {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.process-subtitle-strategische-besluitvorming {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.process-step-strategische-besluitvorming {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.12);
  border: 2px solid rgba(20, 184, 166, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.process-step-strategische-besluitvorming:hover {
  background: rgba(20, 184, 166, 0.18);
  border-color: rgba(20, 184, 166, 0.5);
}

.process-step-number-strategische-besluitvorming {
  color: #2dd4bf;
  font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step-content-strategische-besluitvorming {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.process-step-title-strategische-besluitvorming {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
}

.process-step-text-strategische-besluitvorming {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.framework-section-strategische-besluitvorming {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.framework-section-strategische-besluitvorming::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
}

.framework-content-strategische-besluitvorming {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .framework-content-strategische-besluitvorming {
    grid-template-columns: 1fr 1fr;
  }
}

.framework-text-block-strategische-besluitvorming {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.framework-title-strategische-besluitvorming {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.framework-description-strategische-besluitvorming {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.featured-quote-strategische-besluitvorming {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #14b8a6;
  background: #f1f5f9;
  margin: 1rem 0;
  border-radius: 4px;
}

.quote-text-strategische-besluitvorming {
  color: #042f2e;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-strategische-besluitvorming {
  color: #64748b;
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  font-style: normal;
  display: block;
}

.framework-additional-strategische-besluitvorming {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.framework-image-block-strategische-besluitvorming {
  position: relative;
  height: clamp(300px, 50vw, 400px);
}

.framework-image-strategische-besluitvorming {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.keys-header-strategische-besluitvorming {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.keys-title-strategische-besluitvorming {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.keys-subtitle-strategische-besluitvorming {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
}

.keys-grid-strategische-besluitvorming {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.key-card-strategische-besluitvorming {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.key-card-strategische-besluitvorming:hover {
  background: rgba(20, 184, 166, 0.25);
  border-color: rgba(20, 184, 166, 0.5);
  transform: translateY(-4px);
}

.key-number-strategische-besluitvorming {
  color: #2dd4bf;
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.key-title-strategische-besluitvorming {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
}

.key-text-strategische-besluitvorming {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

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

.application-section-strategische-besluitvorming {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.application-section-strategische-besluitvorming::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
}

.application-content-strategische-besluitvorming {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .application-content-strategische-besluitvorming {
    grid-template-columns: 1fr 1fr;
  }
}

.application-image-block-strategische-besluitvorming {
  position: relative;
  height: clamp(300px, 50vw, 400px);
  order: -1;
}

@media (min-width: 768px) {
  .application-image-block-strategische-besluitvorming {
    order: 0;
  }
}

.application-image-strategische-besluitvorming {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.application-text-block-strategische-besluitvorming {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.application-title-strategische-besluitvorming {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.application-description-strategische-besluitvorming {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.application-text-strategische-besluitvorming {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.application-list-strategische-besluitvorming {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.application-list-item-strategische-besluitvorming {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.application-list-item-strategische-besluitvorming::before {
  content: '';
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: 700;
}

.application-list-item-strategische-besluitvorming strong {
  color: #042f2e;
  font-weight: 600;
}

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

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

.cta-section-strategische-besluitvorming::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.cta-title-strategische-besluitvorming {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.cta-description-strategische-besluitvorming {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.cta-button-group-strategische-besluitvorming {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .cta-button-group-strategische-besluitvorming {
    flex-direction: row;
  }
}

.faq-section-strategische-besluitvorming {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.faq-header-strategische-besluitvorming {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.faq-title-strategische-besluitvorming {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.faq-subtitle-strategische-besluitvorming {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
}

.faq-list-strategische-besluitvorming {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-strategische-besluitvorming {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question-strategische-besluitvorming {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.5rem);
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s ease;
  gap: 1rem;
}

.faq-question-strategische-besluitvorming:hover {
  background: #f1f5f9;
}

.faq-question-text-strategische-besluitvorming {
  color: #042f2e;
  font-weight: 700;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  flex: 1;
  text-align: left;
}

.faq-toggle-icon-strategische-besluitvorming {
  color: #14b8a6;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer-strategische-besluitvorming {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
}

.faq-answer-text-strategische-besluitvorming {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
}

.faq-item-strategische-besluitvorming.active .faq-answer-strategische-besluitvorming {
  max-height: 500px;
}

.faq-item-strategische-besluitvorming.active .faq-toggle-icon-strategische-besluitvorming {
  transform: rotate(180deg);
}

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

.related-header-strategische-besluitvorming {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.related-title-strategische-besluitvorming {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.related-subtitle-strategische-besluitvorming {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-strategische-besluitvorming {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-strategische-besluitvorming:hover {
  background: rgba(20, 184, 166, 0.2);
  border-color: rgba(20, 184, 166, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.related-card-image-strategische-besluitvorming img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-strategische-besluitvorming {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
}

.related-card-description-strategische-besluitvorming {
  color: #a7f3d0;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
  flex: 1;
}

.related-card-link-strategische-besluitvorming {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2dd4bf;
  font-weight: 600;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.related-card-link-strategische-besluitvorming:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.related-card-link-strategische-besluitvorming i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.related-card-link-strategische-besluitvorming:hover i {
  transform: translateX(3px);
}

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

.disclaimer-section-strategische-besluitvorming {
  background: #f1f5f9;
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  border-top: 1px solid rgba(20, 184, 166, 0.1);
}

.disclaimer-content-strategische-besluitvorming {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-strategische-besluitvorming {
  color: #042f2e;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
}

.disclaimer-text-strategische-besluitvorming {
  color: #64748b;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  line-height: 1.8;
}

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

.btn-primary {
  background: #14b8a6;
  color: #000000;
}

.btn-primary:hover {
  background: #2dd4bf;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: #ffffff;
}

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

@media (min-width: 768px) {
  .show-mobile-only {
    display: none !important;
  }
}

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

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

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

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

@media (max-width: 320px) {
  h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

.main-data-gedreven-besluitvorming {
  width: 100%;
}

.hero-section-data-gedreven-besluitvorming {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f1729 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-data-gedreven-besluitvorming::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-section-data-gedreven-besluitvorming::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content-data-gedreven-besluitvorming {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-content-data-gedreven-besluitvorming {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text-block-data-gedreven-besluitvorming {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
}

.breadcrumbs-data-gedreven-besluitvorming {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.breadcrumb-link-data-gedreven-besluitvorming {
  color: #cbd5e1;
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumb-link-data-gedreven-besluitvorming:hover {
  color: #3b82f6;
}

.breadcrumb-separator-data-gedreven-besluitvorming {
  color: #475569;
}

.breadcrumb-current-data-gedreven-besluitvorming {
  color: #3b82f6;
  font-weight: 500;
}

.hero-title-data-gedreven-besluitvorming {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  line-height: 1.1;
  font-weight: 700;
}

.hero-subtitle-data-gedreven-besluitvorming {
  color: #3b82f6;
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.375rem);
  font-weight: 600;
}

.hero-description-data-gedreven-besluitvorming {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  max-width: 550px;
}

.hero-cta-group-data-gedreven-besluitvorming {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hero-cta-group-data-gedreven-besluitvorming {
    flex-direction: row;
    align-items: center;
  }
}

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

.btn-primary {
  background: #3b82f6;
  color: #ffffff;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: #cbd5e1;
  color: #cbd5e1;
}

.btn-outline:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats-data-gedreven-besluitvorming {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
}

.stat-item-data-gedreven-besluitvorming {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.stat-label-data-gedreven-besluitvorming {
  color: #94a3b8;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 500;
}

.hero-image-block-data-gedreven-besluitvorming {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper-data-gedreven-besluitvorming {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-radius: 16px;
  border: 2px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-data-gedreven-besluitvorming {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.introduction-section-data-gedreven-besluitvorming {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.introduction-section-data-gedreven-besluitvorming::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.intro-content-data-gedreven-besluitvorming {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .intro-content-data-gedreven-besluitvorming {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-title-data-gedreven-besluitvorming {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
}

.intro-paragraph-data-gedreven-besluitvorming {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-paragraph-data-gedreven-besluitvorming:last-of-type {
  margin-bottom: 0;
}

.intro-image-data-gedreven-besluitvorming {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image-element-data-gedreven-besluitvorming {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.framework-section-data-gedreven-besluitvorming {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.framework-header-data-gedreven-besluitvorming {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.framework-title-data-gedreven-besluitvorming {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.framework-subtitle-data-gedreven-besluitvorming {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.steps-container-data-gedreven-besluitvorming {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-card-data-gedreven-besluitvorming {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.step-card-data-gedreven-besluitvorming:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.step-number-data-gedreven-besluitvorming {
  color: #3b82f6;
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-data-gedreven-besluitvorming {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-data-gedreven-besluitvorming {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
}

.step-text-data-gedreven-besluitvorming {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.benefits-section-data-gedreven-besluitvorming {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.benefits-section-data-gedreven-besluitvorming::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
}

.benefits-header-data-gedreven-besluitvorming {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-title-data-gedreven-besluitvorming {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefits-description-data-gedreven-besluitvorming {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.benefits-grid-data-gedreven-besluitvorming {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefit-card-data-gedreven-besluitvorming {
  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;
}

.benefit-card-data-gedreven-besluitvorming:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.benefit-icon-data-gedreven-besluitvorming {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.benefit-title-data-gedreven-besluitvorming {
  color: #0f172a;
  font-size: clamp(1.0625rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
}

.benefit-text-data-gedreven-besluitvorming {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

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

.application-section-data-gedreven-besluitvorming::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.application-content-data-gedreven-besluitvorming {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .application-content-data-gedreven-besluitvorming {
    grid-template-columns: 1fr 1fr;
  }
}

.application-title-data-gedreven-besluitvorming {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.application-paragraph-data-gedreven-besluitvorming {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.application-list-data-gedreven-besluitvorming {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.application-list-item-data-gedreven-besluitvorming {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.application-list-item-data-gedreven-besluitvorming::before {
  content: '';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.application-image-data-gedreven-besluitvorming {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.application-image-element-data-gedreven-besluitvorming {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  border: 2px solid rgba(59, 130, 246, 0.2);
}

.tools-section-data-gedreven-besluitvorming {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.tools-header-data-gedreven-besluitvorming {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tools-title-data-gedreven-besluitvorming {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.tools-subtitle-data-gedreven-besluitvorming {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.tools-grid-data-gedreven-besluitvorming {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

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

.tool-card-data-gedreven-besluitvorming:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #3b82f6;
}

.tool-name-data-gedreven-besluitvorming {
  color: #0f172a;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  font-weight: 700;
}

.tool-description-data-gedreven-besluitvorming {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
}

.quote-section-data-gedreven-besluitvorming {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.featured-quote-data-gedreven-besluitvorming {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: #f8fafc;
  border-radius: 8px;
}

.quote-text-data-gedreven-besluitvorming {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-author-data-gedreven-besluitvorming {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  font-style: normal;
}

.challenges-section-data-gedreven-besluitvorming {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.challenges-content-data-gedreven-besluitvorming {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .challenges-content-data-gedreven-besluitvorming {
    grid-template-columns: 1fr 1fr;
  }
}

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

.challenges-paragraph-data-gedreven-besluitvorming {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.challenge-item-data-gedreven-besluitvorming {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.challenge-item-data-gedreven-besluitvorming:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.challenge-name-data-gedreven-besluitvorming {
  color: #0f172a;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.challenge-text-data-gedreven-besluitvorming {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.challenges-image-data-gedreven-besluitvorming {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenges-image-element-data-gedreven-besluitvorming {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.conclusion-section-data-gedreven-besluitvorming {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-section-data-gedreven-besluitvorming::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.conclusion-section-data-gedreven-besluitvorming::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.conclusion-content-data-gedreven-besluitvorming {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.conclusion-title-data-gedreven-besluitvorming {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.conclusion-paragraph-data-gedreven-besluitvorming {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-paragraph-data-gedreven-besluitvorming:last-of-type {
  margin-bottom: 2.5rem;
}

.conclusion-cta-data-gedreven-besluitvorming {
  display: flex;
  justify-content: center;
}

.conclusion-cta-data-gedreven-besluitvorming .btn-primary {
  background: #3b82f6;
  color: #ffffff;
}

.conclusion-cta-data-gedreven-besluitvorming .btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.disclaimer-section-data-gedreven-besluitvorming {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  position: relative;
}

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

.disclaimer-title-data-gedreven-besluitvorming {
  color: #0f172a;
  font-size: clamp(1.0625rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-data-gedreven-besluitvorming {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.related-section-data-gedreven-besluitvorming {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.related-section-data-gedreven-besluitvorming::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
}

.related-header-data-gedreven-besluitvorming {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.related-subtitle-data-gedreven-besluitvorming {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

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

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

.related-card-data-gedreven-besluitvorming:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.related-card-title-data-gedreven-besluitvorming {
  color: #0f172a;
  font-size: clamp(1.0625rem, 2vw + 0.5rem, 1.1875rem);
  font-weight: 700;
}

.related-card-text-data-gedreven-besluitvorming {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
  flex-grow: 1;
}

.related-card-link-data-gedreven-besluitvorming {
  color: #3b82f6;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.related-card-link-data-gedreven-besluitvorming:hover {
  color: #2563eb;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-image-block-data-gedreven-besluitvorming {
    height: 300px;
  }

  .intro-image-data-gedreven-besluitvorming {
    height: 300px;
  }

  .application-image-data-gedreven-besluitvorming {
    height: 300px;
  }

  .challenges-image-data-gedreven-besluitvorming {
    height: 300px;
  }

  .benefit-card-data-gedreven-besluitvorming {
    flex: 1 1 100%;
    max-width: none;
  }

  .tool-card-data-gedreven-besluitvorming {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-data-gedreven-besluitvorming {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

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

.main-groepsdynamica-collectieve-keuzes {
  width: 100%;
  margin: 0;
  padding: 0;
}

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

.hero-section-groepsdynamica-collectieve-keuzes {
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-section-groepsdynamica-collectieve-keuzes::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-groepsdynamica-collectieve-keuzes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  position: relative;
  z-index: 1;
}

.breadcrumb-link-groepsdynamica-collectieve-keuzes {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-groepsdynamica-collectieve-keuzes:hover {
  color: #ffffff;
}

.breadcrumb-separator-groepsdynamica-collectieve-keuzes {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current-groepsdynamica-collectieve-keuzes {
  color: #ffffff;
}

.hero-content-groepsdynamica-collectieve-keuzes {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hero-content-groepsdynamica-collectieve-keuzes {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text-block-groepsdynamica-collectieve-keuzes {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.hero-title-groepsdynamica-collectieve-keuzes {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  line-height: 1.1;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.hero-subtitle-groepsdynamica-collectieve-keuzes {
  color: #99f6e4;
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
}

.hero-description-groepsdynamica-collectieve-keuzes {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  max-width: 550px;
}

.hero-cta-group-groepsdynamica-collectieve-keuzes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .hero-cta-group-groepsdynamica-collectieve-keuzes {
    flex-direction: row;
  }
}

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

.btn-primary {
  background: #14b8a6;
  color: #000000;
}

.btn-primary:hover {
  background: #2dd4bf;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: #14b8a6;
  color: #14b8a6;
}

.hero-image-block-groepsdynamica-collectieve-keuzes {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper-groepsdynamica-collectieve-keuzes {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(45, 212, 191, 0.1) 100%);
  border-radius: 12px;
  border: 2px solid rgba(20, 184, 166, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-wrapper-groepsdynamica-collectieve-keuzes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-meta-groepsdynamica-collectieve-keuzes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

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

.meta-badge-groepsdynamica-collectieve-keuzes i {
  color: #14b8a6;
}

.intro-section-groepsdynamica-collectieve-keuzes {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.intro-section-groepsdynamica-collectieve-keuzes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
}

.intro-content-groepsdynamica-collectieve-keuzes {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .intro-content-groepsdynamica-collectieve-keuzes {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-text-groepsdynamica-collectieve-keuzes {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-groepsdynamica-collectieve-keuzes {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.intro-description-groepsdynamica-collectieve-keuzes {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.intro-image-groepsdynamica-collectieve-keuzes {
  position: relative;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.intro-image-groepsdynamica-collectieve-keuzes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-section-one-groepsdynamica-collectieve-keuzes {
  background: #f8fafc;
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .content-wrapper-one-groepsdynamica-collectieve-keuzes {
    flex-direction: column;
  }
}

.content-text-one-groepsdynamica-collectieve-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .content-text-one-groepsdynamica-collectieve-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-title-one-groepsdynamica-collectieve-keuzes {
  color: #042f2e;
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.content-description-one-groepsdynamica-collectieve-keuzes {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.content-list-one-groepsdynamica-collectieve-keuzes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.list-item-one-groepsdynamica-collectieve-keuzes {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-one-groepsdynamica-collectieve-keuzes::before {
  content: '';
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: bold;
  font-size: 1.25rem;
}

.content-image-one-groepsdynamica-collectieve-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .content-image-one-groepsdynamica-collectieve-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-image-one-groepsdynamica-collectieve-keuzes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-section-two-groepsdynamica-collectieve-keuzes {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .content-wrapper-two-groepsdynamica-collectieve-keuzes {
    flex-direction: column-reverse;
  }
}

.content-image-two-groepsdynamica-collectieve-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .content-image-two-groepsdynamica-collectieve-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-image-two-groepsdynamica-collectieve-keuzes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-text-two-groepsdynamica-collectieve-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .content-text-two-groepsdynamica-collectieve-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-title-two-groepsdynamica-collectieve-keuzes {
  color: #042f2e;
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.content-description-two-groepsdynamica-collectieve-keuzes {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.content-list-two-groepsdynamica-collectieve-keuzes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.list-item-two-groepsdynamica-collectieve-keuzes {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-two-groepsdynamica-collectieve-keuzes::before {
  content: '';
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: bold;
  font-size: 1.25rem;
}

.features-section-groepsdynamica-collectieve-keuzes {
  background: #f8fafc;
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.features-header-groepsdynamica-collectieve-keuzes {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-title-groepsdynamica-collectieve-keuzes {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.features-subtitle-groepsdynamica-collectieve-keuzes {
  color: #0f766e;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
}

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

.feature-card-groepsdynamica-collectieve-keuzes {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(20, 184, 166, 0.15);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card-groepsdynamica-collectieve-keuzes:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.3);
}

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

.feature-icon-wrapper-groepsdynamica-collectieve-keuzes {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 10px;
  color: #14b8a6;
  font-size: 1.5rem;
}

.feature-title-card-groepsdynamica-collectieve-keuzes {
  color: #042f2e;
  font-size: clamp(1.0625rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.feature-description-card-groepsdynamica-collectieve-keuzes {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
}

.content-section-three-groepsdynamica-collectieve-keuzes {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-wrapper-three-groepsdynamica-collectieve-keuzes {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

@media (max-width: 768px) {
  .content-wrapper-three-groepsdynamica-collectieve-keuzes {
    flex-direction: column;
  }
}

.content-text-three-groepsdynamica-collectieve-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .content-text-three-groepsdynamica-collectieve-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-title-three-groepsdynamica-collectieve-keuzes {
  color: #042f2e;
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.content-description-three-groepsdynamica-collectieve-keuzes {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.steps-container-groepsdynamica-collectieve-keuzes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.step-item-groepsdynamica-collectieve-keuzes {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #14b8a6;
}

.step-number-groepsdynamica-collectieve-keuzes {
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 800;
  color: #14b8a6;
  flex-shrink: 0;
  min-width: 50px;
  line-height: 1;
}

.step-content-groepsdynamica-collectieve-keuzes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-groepsdynamica-collectieve-keuzes {
  color: #042f2e;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
}

.step-text-groepsdynamica-collectieve-keuzes {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
}

.content-image-three-groepsdynamica-collectieve-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .content-image-three-groepsdynamica-collectieve-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-image-three-groepsdynamica-collectieve-keuzes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-section-groepsdynamica-collectieve-keuzes {
  background: #064e4a;
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.quote-section-groepsdynamica-collectieve-keuzes::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.featured-quote-groepsdynamica-collectieve-keuzes {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #2dd4bf;
  background: rgba(20, 184, 166, 0.1);
  margin: 0;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-groepsdynamica-collectieve-keuzes {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.8;
  color: #ffffff;
  font-style: italic;
  margin-bottom: 1rem;
  margin: 0 0 1rem 0;
}

.quote-author-groepsdynamica-collectieve-keuzes {
  color: #99f6e4;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  font-style: normal;
  display: block;
  font-weight: 500;
}

.content-section-four-groepsdynamica-collectieve-keuzes {
  background: #f8fafc;
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-wrapper-four-groepsdynamica-collectieve-keuzes {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .content-wrapper-four-groepsdynamica-collectieve-keuzes {
    flex-direction: column;
  }
}

.content-image-four-groepsdynamica-collectieve-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .content-image-four-groepsdynamica-collectieve-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-image-four-groepsdynamica-collectieve-keuzes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-text-four-groepsdynamica-collectieve-keuzes {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .content-text-four-groepsdynamica-collectieve-keuzes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-title-four-groepsdynamica-collectieve-keuzes {
  color: #042f2e;
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.content-description-four-groepsdynamica-collectieve-keuzes {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
}

.content-list-four-groepsdynamica-collectieve-keuzes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.list-item-four-groepsdynamica-collectieve-keuzes {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-four-groepsdynamica-collectieve-keuzes::before {
  content: '';
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: bold;
  font-size: 1.25rem;
}

.conclusion-section-groepsdynamica-collectieve-keuzes {
  background: linear-gradient(135deg, #042f2e 0%, #064e4a 100%);
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-section-groepsdynamica-collectieve-keuzes::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.conclusion-content-groepsdynamica-collectieve-keuzes {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.conclusion-title-groepsdynamica-collectieve-keuzes {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  text-align: center;
  line-height: 1.2;
}

.conclusion-text-groepsdynamica-collectieve-keuzes {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  text-align: center;
}

.conclusion-cta-groepsdynamica-collectieve-keuzes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .conclusion-cta-groepsdynamica-collectieve-keuzes {
    flex-direction: row;
  }
}

.disclaimer-section-groepsdynamica-collectieve-keuzes {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-section-groepsdynamica-collectieve-keuzes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.15), transparent);
}

.disclaimer-content-groepsdynamica-collectieve-keuzes {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-left: 4px solid #0f766e;
  border-radius: 8px;
}

.disclaimer-title-groepsdynamica-collectieve-keuzes {
  color: #042f2e;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.disclaimer-text-groepsdynamica-collectieve-keuzes {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.8;
}

.related-section-groepsdynamica-collectieve-keuzes {
  background: #f8fafc;
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-section-groepsdynamica-collectieve-keuzes::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.15), transparent);
}

.related-header-groepsdynamica-collectieve-keuzes {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.related-title-groepsdynamica-collectieve-keuzes {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.related-subtitle-groepsdynamica-collectieve-keuzes {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
}

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

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

.related-card-groepsdynamica-collectieve-keuzes:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.3);
}

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

.related-card-icon-groepsdynamica-collectieve-keuzes {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 10px;
  color: #14b8a6;
  font-size: 1.5rem;
}

.related-card-title-groepsdynamica-collectieve-keuzes {
  color: #042f2e;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.related-card-text-groepsdynamica-collectieve-keuzes {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .content-wrapper-one-groepsdynamica-collectieve-keuzes,
  .content-wrapper-two-groepsdynamica-collectieve-keuzes,
  .content-wrapper-three-groepsdynamica-collectieve-keuzes,
  .content-wrapper-four-groepsdynamica-collectieve-keuzes {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .content-wrapper-one-groepsdynamica-collectieve-keuzes,
  .content-wrapper-two-groepsdynamica-collectieve-keuzes,
  .content-wrapper-three-groepsdynamica-collectieve-keuzes,
  .content-wrapper-four-groepsdynamica-collectieve-keuzes {
    gap: 4rem;
  }
}

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

a:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

.main-veranderingsmanagement-keuzeproces {
  width: 100%;
  overflow: hidden;
}

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

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

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

.hero-section-veranderingsmanagement-keuzeproces::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.breadcrumb-link-veranderingsmanagement-keuzeproces {
  color: #99f6e4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-veranderingsmanagement-keuzeproces:hover {
  color: #2dd4bf;
  text-decoration: underline;
}

.breadcrumb-separator-veranderingsmanagement-keuzeproces {
  color: #64b5a6;
}

.breadcrumb-current-veranderingsmanagement-keuzeproces {
  color: #a7f3d0;
  font-weight: 600;
}

.hero-content-veranderingsmanagement-keuzeproces {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-content-veranderingsmanagement-keuzeproces {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text-block-veranderingsmanagement-keuzeproces {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.hero-title-veranderingsmanagement-keuzeproces {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  line-height: 1.1;
  font-weight: 700;
}

.hero-subtitle-veranderingsmanagement-keuzeproces {
  color: #2dd4bf;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.hero-description-veranderingsmanagement-keuzeproces {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

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

.stat-item-veranderingsmanagement-keuzeproces {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-veranderingsmanagement-keuzeproces {
  color: #14b8a6;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.stat-label-veranderingsmanagement-keuzeproces {
  color: #99f6e4;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.hero-meta-veranderingsmanagement-keuzeproces {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

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

.meta-badge-veranderingsmanagement-keuzeproces i {
  color: #14b8a6;
}

.hero-image-block-veranderingsmanagement-keuzeproces {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper-veranderingsmanagement-keuzeproces {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2) 0%, rgba(45, 212, 191, 0.1) 100%);
  border-radius: 16px;
  border: 2px solid rgba(20, 184, 166, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-veranderingsmanagement-keuzeproces {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.intro-section-veranderingsmanagement-keuzeproces {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.intro-section-veranderingsmanagement-keuzeproces::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
}

.intro-content-veranderingsmanagement-keuzeproces {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .intro-content-veranderingsmanagement-keuzeproces {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-text-block-veranderingsmanagement-keuzeproces {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.intro-description-veranderingsmanagement-keuzeproces {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.intro-quote-veranderingsmanagement-keuzeproces {
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #14b8a6;
  background: #f8fafc;
  border-radius: 8px;
}

.intro-quote-text-veranderingsmanagement-keuzeproces {
  color: #0f766e;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-quote-author-veranderingsmanagement-keuzeproces {
  color: #0f766e;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 600;
  display: block;
}

.intro-image-block-veranderingsmanagement-keuzeproces {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.framework-section-veranderingsmanagement-keuzeproces::before {
  content: '';
  position: absolute;
  top: 5%;
  right: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.framework-content-veranderingsmanagement-keuzeproces {
  position: relative;
  z-index: 1;
}

.framework-header-veranderingsmanagement-keuzeproces {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.framework-subtitle-veranderingsmanagement-keuzeproces {
  color: #99f6e4;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.framework-steps-veranderingsmanagement-keuzeproces {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.framework-step-veranderingsmanagement-keuzeproces {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.framework-step-veranderingsmanagement-keuzeproces:hover {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.4);
}

.framework-step-number-veranderingsmanagement-keuzeproces {
  color: #14b8a6;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  min-width: 60px;
}

.framework-step-content-veranderingsmanagement-keuzeproces {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.framework-step-text-veranderingsmanagement-keuzeproces {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.principles-section-veranderingsmanagement-keuzeproces {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.principles-section-veranderingsmanagement-keuzeproces::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.15), transparent);
}

.principles-content-veranderingsmanagement-keuzeproces {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .principles-content-veranderingsmanagement-keuzeproces {
    grid-template-columns: 1fr 1fr;
  }
}

.principles-text-block-veranderingsmanagement-keuzeproces {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.principles-title-veranderingsmanagement-keuzeproces {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.principles-description-veranderingsmanagement-keuzeproces {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

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

.principle-item-veranderingsmanagement-keuzeproces {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.principle-icon-veranderingsmanagement-keuzeproces {
  color: #14b8a6;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.principle-text-veranderingsmanagement-keuzeproces {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.principles-image-block-veranderingsmanagement-keuzeproces {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.implementation-section-veranderingsmanagement-keuzeproces::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.implementation-content-veranderingsmanagement-keuzeproces {
  position: relative;
  z-index: 1;
}

.implementation-header-veranderingsmanagement-keuzeproces {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.implementation-subtitle-veranderingsmanagement-keuzeproces {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.implementation-cards-veranderingsmanagement-keuzeproces {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.implementation-card-veranderingsmanagement-keuzeproces {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.implementation-card-veranderingsmanagement-keuzeproces:hover {
  background: rgba(20, 184, 166, 0.18);
  border-color: rgba(20, 184, 166, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.implementation-card-title-veranderingsmanagement-keuzeproces {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
}

.implementation-card-text-veranderingsmanagement-keuzeproces {
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

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

.challenges-section-veranderingsmanagement-keuzeproces {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.challenges-section-veranderingsmanagement-keuzeproces::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
}

.challenges-content-veranderingsmanagement-keuzeproces {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .challenges-content-veranderingsmanagement-keuzeproces {
    grid-template-columns: 1fr 1fr;
  }
}

.challenges-text-block-veranderingsmanagement-keuzeproces {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.challenges-title-veranderingsmanagement-keuzeproces {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.challenges-description-veranderingsmanagement-keuzeproces {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
}

.challenge-highlight-veranderingsmanagement-keuzeproces {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #f1f5f9;
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
  margin-top: clamp(0.75rem, 1vw, 1rem);
}

.challenge-highlight-title-veranderingsmanagement-keuzeproces {
  color: #042f2e;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.challenge-highlight-text-veranderingsmanagement-keuzeproces {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.6;
}

.challenges-image-block-veranderingsmanagement-keuzeproces {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.conclusion-section-veranderingsmanagement-keuzeproces::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.conclusion-section-veranderingsmanagement-keuzeproces::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.conclusion-title-veranderingsmanagement-keuzeproces {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

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

.conclusion-cta-veranderingsmanagement-keuzeproces {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.btn-primary-conclusion-veranderingsmanagement-keuzeproces {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #14b8a6;
  color: #000000;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-conclusion-veranderingsmanagement-keuzeproces:hover {
  background: #2dd4bf;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.disclaimer-section-veranderingsmanagement-keuzeproces {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
}

.disclaimer-section-veranderingsmanagement-keuzeproces::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.15), transparent);
}

.disclaimer-content-veranderingsmanagement-keuzeproces {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 12px;
  border-left: 4px solid #14b8a6;
}

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

.disclaimer-text-veranderingsmanagement-keuzeproces {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.7;
}

.related-section-veranderingsmanagement-keuzeproces {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.related-section-veranderingsmanagement-keuzeproces::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.2), transparent);
}

.related-content-veranderingsmanagement-keuzeproces {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-veranderingsmanagement-keuzeproces {
  color: #042f2e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  text-align: center;
}

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

.related-card-veranderingsmanagement-keuzeproces {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-veranderingsmanagement-keuzeproces:hover {
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

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

.related-card-text-veranderingsmanagement-keuzeproces {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.6;
}

.related-card-link-veranderingsmanagement-keuzeproces {
  color: #14b8a6;
  font-weight: 600;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: auto;
}

.related-card-veranderingsmanagement-keuzeproces:hover .related-card-link-veranderingsmanagement-keuzeproces {
  color: #0f766e;
}

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

@media (max-width: 768px) {
  .hero-content-veranderingsmanagement-keuzeproces {
    grid-template-columns: 1fr;
  }

  .intro-content-veranderingsmanagement-keuzeproces {
    grid-template-columns: 1fr;
  }

  .principles-content-veranderingsmanagement-keuzeproces {
    grid-template-columns: 1fr;
  }

  .challenges-content-veranderingsmanagement-keuzeproces {
    grid-template-columns: 1fr;
  }

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

  .meta-badge-veranderingsmanagement-keuzeproces {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

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

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

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

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

:root {
  --color-dark-primary: #042f2e;
  --color-dark-secondary: #064e4a;
  --color-dark-tertiary: #0f766e;
  --color-light-primary: #ffffff;
  --color-light-secondary: #f8fafc;
  --color-light-tertiary: #f1f5f9;
  --color-card-dark: rgba(20, 184, 166, 0.08);
  --color-card-light: #ffffff;
  --color-text-light-primary: #ffffff;
  --color-text-light-secondary: #99f6e4;
  --color-text-light-muted: #a7f3d0;
  --color-text-dark-primary: #042f2e;
  --color-text-dark-secondary: #0f766e;
  --color-text-dark-muted: #64748b;
  --color-accent-primary: #14b8a6;
  --color-accent-secondary: #2dd4bf;
  --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.2);
  --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;
}

html {
  scroll-behavior: smooth;
}

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

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

.decision-mastery-about {
  width: 100%;
}

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

.opening-hero-section-about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-accent-primary) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.opening-hero-content-about {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.opening-hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
}

.opening-hero-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
  line-height: 1.5;
}

.opening-hero-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 2rem;
  box-shadow: var(--shadow-lg);
}

.impact-metrics-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 2px solid var(--color-light-tertiary);
}

.metric-item-about {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.metric-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent-primary);
  line-height: 1;
}

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

.philosophy-section-about {
  background: var(--color-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.philosophy-section-about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-accent-secondary) 0%, transparent 70%);
  opacity: 0.06;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.philosophy-content-about {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.5rem);
}

.philosophy-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.philosophy-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-accent-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.philosophy-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.philosophy-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.approach-methodology-section-about {
  background: var(--color-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.approach-methodology-section-about::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
  opacity: 0.05;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translateY(-50%);
}

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

.methodology-intro-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.methodology-intro-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
}

.methodology-intro-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  max-width: 750px;
}

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

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-light-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent-primary);
}

.methodology-step-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent-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.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.methodology-step-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

.transformation-outcomes-section-about {
  background: var(--color-light-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.transformation-outcomes-section-about::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--color-accent-secondary) 0%, transparent 70%);
  opacity: 0.07;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.transformation-outcomes-content-about {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.transformation-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.transformation-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.12);
  color: var(--color-accent-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.transformation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
}

.outcomes-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.outcome-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: var(--color-light-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(20, 184, 166, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.outcome-card-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-accent-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.outcome-card-title-about {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.outcome-card-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

.commitment-vision-section-about {
  background: var(--color-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.commitment-statement-about {
  max-width: 900px;
}

.commitment-quote-about {
  padding: clamp(2rem, 4vw, 2.5rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-accent-primary);
  background: var(--color-light-primary);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.commitment-quote-text-about {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-style: italic;
}

.commitment-quote-author-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-secondary);
  font-weight: 500;
}

.vision-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  max-width: 800px;
}

.vision-highlights-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.highlight-item-about {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--color-light-primary);
  border-radius: var(--radius-md);
  border: 1px solid rgba(20, 184, 166, 0.1);
}

.highlight-label-about {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  color: var(--color-accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.highlight-value-about {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
}

.disclaimer-section-about {
  background: var(--color-light-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--color-light-tertiary);
  position: relative;
  overflow: hidden;
}

.disclaimer-content-about {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.disclaimer-icon-about {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-accent-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

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

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  background: var(--color-light-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent-secondary);
}

@media (max-width: 768px) {
  .opening-hero-section-about::before {
    width: 300px;
    height: 300px;
    right: -20%;
  }

  .philosophy-section-about::after {
    width: 200px;
    height: 200px;
  }

  .approach-methodology-section-about::before {
    width: 250px;
    height: 250px;
    left: -25%;
  }

  .transformation-outcomes-section-about::before {
    width: 300px;
    height: 300px;
  }

  .methodology-step-about {
    flex-direction: column;
    align-items: flex-start;
  }

  .methodology-step-number-about {
    margin-bottom: 0.5rem;
  }

  .outcome-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .vision-highlights-about {
    flex-direction: column;
  }

  .highlight-item-about {
    flex: 1 1 100%;
  }
}

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

  .philosophy-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .approach-methodology-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .transformation-outcomes-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .commitment-vision-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .opening-hero-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .philosophy-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .approach-methodology-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .transformation-outcomes-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .commitment-vision-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

.legal-portal {
  width: 100%;
  background: var(--color-light-primary);
}

.legal-portal .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

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

.legal-portal-hero .container {
  max-width: 900px;
}

.legal-portal-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
}

.legal-portal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light-primary);
}

.legal-portal-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-portal-hero-date {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
}

.legal-portal-hero-intro {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-light-muted);
  max-width: 700px;
}

.legal-portal-content {
  background: var(--color-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.legal-portal-content .container {
  max-width: 900px;
}

.legal-portal-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.legal-portal-section {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.legal-portal-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-dark-primary);
}

.legal-portal-section p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-dark-muted);
}

.legal-portal-section ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 1.5rem;
}

.legal-portal-section li {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-dark-muted);
}

.legal-portal-contact {
  background: var(--color-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.legal-portal-contact .container {
  max-width: 900px;
}

.legal-portal-contact-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.legal-portal-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-dark-primary);
}

.legal-portal-contact-intro {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-dark-muted);
}

.legal-portal-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-portal-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-portal-contact-label {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-dark-secondary);
}

.legal-portal-contact-value {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-dark-muted);
}

@media (min-width: 768px) {
  .legal-portal-hero {
    padding: 5rem 0;
  }

  .legal-portal-content {
    padding: 5rem 0;
  }

  .legal-portal-contact {
    padding: 5rem 0;
  }

  .legal-portal-section {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-portal-hero {
    padding: 6rem 0;
  }

  .legal-portal-content {
    padding: 6rem 0;
  }

  .legal-portal-contact {
    padding: 6rem 0;
  }
}

.thank-you-page {
  width: 100%;
}

.thank-section {
  width: 100%;
  background: var(--color-dark-primary);
  padding: clamp(4rem, 12vh, 8rem) var(--space-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4rem, 15vw, 6rem);
  height: clamp(4rem, 15vw, 6rem);
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.15);
  margin-bottom: var(--space-md);
}

.thank-icon i {
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--color-accent-primary);
}

.thank-section h1 {
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-subtitle {
  color: var(--color-accent-secondary);
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-message {
  color: var(--color-text-light-muted);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  font-weight: 400;
  max-width: 600px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-light-secondary);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  font-weight: 400;
  max-width: 600px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-accent-primary);
  color: var(--color-text-dark-primary);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent-secondary);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(6rem, 15vh, 10rem) var(--space-lg);
  }

  .thank-section .container {
    padding: 0 var(--space-lg);
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
  }

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

@media (min-width: 1024px) {
  .thank-section {
    padding: 8rem var(--space-xl);
  }

  .thank-section .container {
    padding: 0 var(--space-xl);
  }

  .thank-content {
    gap: 3rem;
  }

  .thank-icon {
    margin-bottom: 1.5rem;
  }

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

@media (min-width: 1440px) {
  .thank-section {
    padding: 10rem var(--space-2xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon i,
  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media print {
  .thank-section {
    min-height: auto;
    padding: 2rem;
  }

  .btn {
    display: none;
  }
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  background: var(--color-dark-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.error-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

.error-decoration-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  color: var(--color-accent-primary);
  font-size: 300px;
  line-height: 1;
}

.error-decoration-2 {
  width: 250px;
  height: 250px;
  bottom: -125px;
  left: -125px;
  color: var(--color-accent-secondary);
  font-size: 250px;
  line-height: 1;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -2px;
  animation: float 3s ease-in-out infinite;
}

.error-icon {
  position: absolute;
  right: clamp(-2rem, -8vw, -4rem);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--color-accent-warm);
  animation: spin 4s linear infinite;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-text-light-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 700;
  line-height: 1.2;
}

.error-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--color-text-light-secondary);
  max-width: 500px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.error-hint i {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-accent-warm);
}

.error-hint p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-muted);
  margin: 0;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.btn-primary:hover {
  background: var(--color-accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
}

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

.error-suggestion {
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-light-muted);
  max-width: 450px;
  margin: 0 auto;
  line-height: 1.5;
  opacity: 0.8;
}

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

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-decoration-1 {
    width: 400px;
    height: 400px;
    font-size: 400px;
  }

  .error-decoration-2 {
    width: 350px;
    height: 350px;
    font-size: 350px;
  }

  .error-icon {
    right: clamp(-3rem, -10vw, -5rem);
  }

  .error-hint {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .error-hint i {
    flex-shrink: 0;
  }

  .error-hint p {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .error-code-wrapper {
    margin-bottom: 2.5rem;
  }

  .error-code {
    animation: float 4s ease-in-out infinite;
  }

  .error-hint {
    padding: 2rem;
    margin-bottom: 3rem;
  }

  .btn-primary:hover {
    box-shadow: 0 15px 30px rgba(20, 184, 166, 0.4);
  }
}

@media (min-width: 1440px) {
  .error-section {
    min-height: 100vh;
  }

  .error-decoration-1 {
    width: 500px;
    height: 500px;
    font-size: 500px;
    top: -250px;
    right: -250px;
  }

  .error-decoration-2 {
    width: 400px;
    height: 400px;
    font-size: 400px;
    bottom: -200px;
    left: -200px;
  }
}