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

:root {
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #334155;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-tertiary: #94a3b8;
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #374151;
  --color-text-light-tertiary: #64748b;
  
  --color-primary: #06b6d4;
  --color-primary-hover: #22d3ee;
  --color-primary-dark: #0891b2;
  --color-secondary: #0d9488;
  --color-accent: #f59e0b;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

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

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

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

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

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

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

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

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.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

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

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

.btn-secondary:hover {
  background: #0a7860;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(13, 148, 136, 0.3);
}

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

.btn-outline:hover {
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-primary-hover);
}

.btn-dark {
  background: var(--color-bg-dark-primary);
  color: var(--color-text-dark-primary);
  border: 2px solid var(--color-primary);
}

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

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

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

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

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

.flex {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 2rem);
}

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

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

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

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

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

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.p-1 { padding: var(--space-sm); }
.p-2 { padding: var(--space-md); }
.p-3 { padding: var(--space-lg); }
.p-4 { padding: var(--space-xl); }

.card {
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.card-dark {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(6, 182, 212, 0.3);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(13, 148, 136, 0.15);
  color: var(--color-secondary);
}

.badge-accent {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flex {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

  :root {
    --color-bg-dark-primary: #0f172a;
    --color-bg-dark-secondary: #1e293b;
    --color-bg-dark-tertiary: #334155;
    --color-bg-light-primary: #ffffff;
    --color-bg-light-secondary: #f8fafc;
    --color-bg-light-tertiary: #f1f5f9;
    --color-bg-card-dark: rgba(255, 255, 255, 0.05);
    --color-bg-card-light: #ffffff;
    --color-text-dark-primary: #ffffff;
    --color-text-dark-secondary: #cbd5e1;
    --color-text-dark-tertiary: #94a3b8;
    --color-text-light-primary: #0f172a;
    --color-text-light-secondary: #374151;
    --color-text-light-tertiary: #64748b;
    --color-primary: #06b6d4;
    --color-primary-hover: #22d3ee;
    --color-primary-dark: #0891b2;
    --color-secondary: #0d9488;
    --color-accent: #f59e0b;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }

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

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

  .header-growth-forge {
    background: var(--color-bg-dark-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 100;
  }

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

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

  .header-growth-forge-brand:hover {
    opacity: 0.8;
  }

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

  .header-growth-forge-logo-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
  }

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

  .header-growth-forge-nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 500;
    transition: color 300ms ease;
    position: relative;
  }

  .header-growth-forge-nav-link:hover {
    color: var(--color-primary);
  }

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

  .header-growth-forge-nav-link:hover::after {
    width: 100%;
  }

  .header-growth-forge-cta-button {
    display: none;
    background: var(--color-primary);
    color: #0f172a;
    padding: clamp(0.625rem, 1.5vw, 0.75rem) clamp(1.25rem, 3vw, 1.5rem);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    font-weight: 600;
    transition: all 300ms ease;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .header-growth-forge-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
  }

  .header-growth-forge-cta-button:active {
    transform: translateY(0);
  }

  .header-growth-forge-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 300ms ease;
    flex-shrink: 0;
  }

  .header-growth-forge-mobile-toggle:hover {
    color: var(--color-primary);
  }

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

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

  .header-growth-forge-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1rem, 4vw, 1.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
  }

  .header-growth-forge-mobile-title {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
  }

  .header-growth-forge-mobile-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 300ms ease;
  }

  .header-growth-forge-mobile-close:hover {
    color: var(--color-primary);
  }

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

  .header-growth-forge-mobile-link {
    color: #cbd5e1;
    text-decoration: none;
    padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 4vw, 1.5rem);
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 300ms ease;
  }

  .header-growth-forge-mobile-link:hover {
    color: var(--color-primary);
    background: rgba(6, 182, 212, 0.05);
    padding-left: clamp(1.5rem, 4vw, 2rem);
  }

  .header-growth-forge-mobile-cta {
    background: var(--color-primary);
    color: #0f172a;
    padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    margin: clamp(1rem, 3vw, 1.5rem);
    border-radius: var(--radius-md);
    text-decoration: none;
    text-align: center;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    font-weight: 600;
    transition: all 300ms ease;
    display: block;
    flex-shrink: 0;
  }

  .header-growth-forge-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
  }

  @media (min-width: 768px) {
    .header-growth-forge-container {
      height: 70px;
    }

    .header-growth-forge-desktop-nav {
      display: flex;
    }

    .header-growth-forge-cta-button {
      display: inline-block;
    }

    .header-growth-forge-mobile-toggle {
      display: none;
    }

    .header-growth-forge-mobile-menu {
      display: none;
    }
  }

  @media (max-width: 767px) {
    .header-growth-forge-mobile-menu {
      padding-top: clamp(60px, 10vw, 80px);
    }

    .header-growth-forge-container {
      padding: 0 1rem;
    }
  }

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

    .confidence-academy {
  width: 100%;
}

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

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

.hero-glow-secondary-index {
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-shape-accent-index {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.hero-float-element-index {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 60% 40% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-content-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
}

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

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

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

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-btn-primary-index {
  background: #06b6d4;
  color: #0f172a;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 8px;
  font-weight: 600;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-primary-index:hover {
  background: #22d3ee;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.3);
}

.hero-btn-secondary-index {
  background: transparent;
  border: 2px solid #06b6d4;
  color: #06b6d4;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 8px;
  font-weight: 600;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-secondary-index:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: #22d3ee;
  color: #22d3ee;
  transform: translateY(-3px);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

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

.hero-stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #06b6d4;
  line-height: 1;
}

.hero-stat-label-index {
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-visual-index {
  position: relative;
  z-index: 5;
  flex: 1;
  min-height: 300px;
}

.hero-image-index {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

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

.hero-section-index .container {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .hero-section-index .container {
    flex-direction: column;
  }

  .hero-visual-index {
    min-height: 250px;
  }
}

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

.about-shape-left-index {
  position: absolute;
  top: 10%;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.about-glow-center-index {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-accent-right-index {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 30% 70% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.about-float-element-index {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 180px;
  height: 120px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

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

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

.about-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #0891b2;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

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

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

.about-highlight-box-index {
  padding: 1.5rem;
  background: #f8fafc;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.about-highlight-text-index {
  font-size: 1rem;
  color: #1e293b;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

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

.about-image-block-index {
  flex: 1 1 350px;
  position: relative;
  z-index: 5;
  min-height: 300px;
}

.about-image-index {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.features-glow-left-index {
  position: absolute;
  bottom: 20%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-right-index {
  position: absolute;
  top: 30%;
  right: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-shape-bottom-index {
  position: absolute;
  bottom: -5%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(13, 148, 136, 0.07);
  border-radius: 60% 40% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

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

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

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

.features-subtitle-index {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

.features-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(6, 182, 212, 0.3);
}

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

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

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

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

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

.process-accent-shape-index {
  position: absolute;
  top: 5%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 40% 60% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.process-glow-element-index {
  position: absolute;
  bottom: 10%;
  left: -50px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.09) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.process-subtitle-index {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 300ms ease;
}

.process-step-index:hover {
  background: #f1f5f9;
  border-color: rgba(6, 182, 212, 0.2);
}

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

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

.process-step-title-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

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

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

.featured-curve-top-index {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100px;
  background: #ffffff;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

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

.featured-shape-bottom-index {
  position: absolute;
  bottom: -50px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 50% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

.featured-subtitle-index {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

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

.featured-card-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

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

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

.featured-card-link-index {
  color: #06b6d4;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease;
  align-self: flex-start;
}

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

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

.featured-cta-btn-index {
  background: #06b6d4;
  color: #0f172a;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  font-weight: 600;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.featured-cta-btn-index:hover {
  background: #22d3ee;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.3);
}

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

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

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

.testimonials-glow-right-index {
  position: absolute;
  bottom: 20%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.09) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-shape-accent-index {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.07);
  border-radius: 50% 40% 50% 60%;
  z-index: 2;
  pointer-events: none;
}

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

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

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

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

.testimonials-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  transition: all 300ms ease;
}

.testimonials-card-index:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(6, 182, 212, 0.4);
}

.testimonials-quote-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonials-text-index {
  font-size: 0.9375rem;
  color: #e2e8f0;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.testimonials-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(6, 182, 212, 0.15);
}

.testimonials-author-name-index {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
}

.testimonials-author-role-index {
  font-size: 0.8125rem;
  color: #94a3b8;
}

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

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

.values-shape-pattern-index {
  position: absolute;
  top: -50px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 40% 60% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.values-glow-center-index {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.09) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.values-subtitle-index {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.values-items-index {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.values-item-index {
  flex: 1 1 240px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.values-item-number-index {
  font-size: 2rem;
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.values-item-title-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.values-item-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

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

.cta-section-index {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1a2f4a 100%);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.cta-glow-left-index {
  position: absolute;
  left: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.cta-shape-accent-index {
  position: absolute;
  bottom: -80px;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.cta-content-index {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

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

.cta-description-index {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  line-height: 1.7;
}

.cta-button-index {
  background: #06b6d4;
  color: #0f172a;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  font-weight: 600;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  margin-top: 0.5rem;
}

.cta-button-index:hover {
  background: #22d3ee;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.3);
}

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

.contact-shape-top-index {
  position: absolute;
  top: -50px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.contact-glow-accent-index {
  position: absolute;
  bottom: 15%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.09) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.contact-subtitle-index {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

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

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

.contact-label-index {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
}

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #1e293b;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: border-color 300ms ease;
}

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

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

.contact-submit-index {
  width: 100%;
  padding: 1rem;
  background: #06b6d4;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
}

.contact-submit-index:hover {
  background: #22d3ee;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.25);
}

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

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

.contact-info-block-index,
.contact-benefits-block-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

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

.contact-faq-question-index {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

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

.contact-benefits-list-index {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.contact-benefit-item-index {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  padding-left: 1.75rem;
  position: relative;
}

.contact-benefit-item-index::before {
  content: '';
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: 700;
}

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

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

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

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

.cookie-banner-text {
  color: #cbd5e1;
  margin: 0;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.5;
  max-width: 500px;
  text-align: center;
}

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

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

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

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

.cookie-btn-decline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.cookie-btn-decline:hover {
  border-color: #06b6d4;
  color: #06b6d4;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

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

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .hero-section-index .container {
    flex-direction: column;
  }

  .about-content-index {
    flex-direction: column;
  }

  .featured-card-image-index {
    height: 180px;
  }
}

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

  .hero-stat-item-index {
    text-align: center;
  }

  .featured-card-image-index {
    height: 160px;
  }
}

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

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

.footer-content {
  display: block;
}

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

.footer-about-title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  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.3rem, 1rem);
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 500px;
  margin: 0;
}

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

.footer-section-title {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
}

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

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

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

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

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

.footer-contact-section {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.footer-contact-item {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 0.9375rem);
  line-height: 1.8;
  color: #cbd5e1;
  margin: 0;
  margin-bottom: 0.75rem;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-label {
  color: #94a3b8;
  font-weight: 500;
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.footer-contact-value {
  color: #e2e8f0;
  display: block;
  font-weight: 400;
}

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

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

.footer-legal-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: clamp(0.8125rem, 0.9vw + 0.3rem, 0.875rem);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}

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

.footer-copyright-section {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

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

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

  .footer-about-section {
    grid-column: 1 / -1;
    margin-bottom: clamp(2rem, 3vw, 2.5rem);
  }

  .footer-about-text {
    max-width: 600px;
  }

  .footer-navigation-section {
    margin-bottom: 0;
  }

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

  .footer-contact-section {
    margin-bottom: 0;
  }

  .footer-legal-section {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .footer-legal-list {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

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

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

  .footer-about-section {
    grid-column: 1 / 2;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

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

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

  .footer-legal-section {
    grid-column: 4 / 5;
    margin-bottom: 0;
  }

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

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

  .footer-nav-list {
    flex-direction: column;
  }
}
    

.category-page-self-esteem {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-decoration-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.hero-decoration-shape-1 {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-shape-2 {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 250px;
  height: 250px;
  background: rgba(13, 148, 136, 0.03);
  border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.hero-tag-self-esteem {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

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

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

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

.hero-stat-number-self-esteem {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.hero-stat-label-self-esteem {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-buttons-self-esteem {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

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

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

.posts-decoration-2 {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 0;
  pointer-events: none;
}

.posts-header-self-esteem {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

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

.posts-subtitle-self-esteem {
  font-size: clamp(0.875rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.posts-card-self-esteem {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.posts-card-self-esteem:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(6, 182, 212, 0.3);
}

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

.posts-card-title-self-esteem {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.posts-card-description-self-esteem {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.posts-card-meta-self-esteem {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.posts-meta-badge-self-esteem {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(6, 182, 212, 0.1);
  color: #0891b2;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
}

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

.posts-card-link-self-esteem:hover {
  background: #22d3ee;
  transform: translateX(4px);
}

.posts-card-link-self-esteem:focus-visible {
  outline: 2px solid #0891b2;
  outline-offset: 3px;
}

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

.features-decoration-1 {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 0;
  pointer-events: none;
}

.features-decoration-2 {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.features-decoration-3 {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.features-header-self-esteem {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

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

.features-subtitle-self-esteem {
  font-size: clamp(0.875rem, 2vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

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

.features-card-self-esteem {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-card-self-esteem:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-4px);
}

.features-card-icon-self-esteem {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 10px;
  color: #06b6d4;
  font-size: 1.75rem;
}

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

.features-card-text-self-esteem {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

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

.testimonials-decoration-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.05) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 0;
  pointer-events: none;
}

.testimonials-header-self-esteem {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-title-self-esteem {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
}

.testimonials-quote-self-esteem {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  border-radius: 8px;
}

.testimonials-quote-text-self-esteem {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #0f172a;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonials-quote-author-self-esteem {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
  font-weight: 600;
}

.testimonials-secondary-self-esteem {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 2.5rem);
  background: rgba(6, 182, 212, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.testimonials-secondary-text-self-esteem {
  font-size: clamp(0.875rem, 2vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.7;
}

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

  .features-card-self-esteem {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-buttons-self-esteem {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons-self-esteem a {
    width: 100%;
    text-align: center;
  }
}

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

  .posts-grid-self-esteem {
    gap: 1rem;
  }

  .features-cards-self-esteem {
    gap: 1rem;
  }
}

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

.main-eigenwaarde-herkennen-waarderen {
  width: 100%;
  margin: 0;
  padding: 0;
}

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

.hero-section-eigenwaarde-herkennen-waarderen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.breadcrumbs-eigenwaarde-herkennen-waarderen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-eigenwaarde-herkennen-waarderen {
  color: #0284c7;
  transition: color 0.2s ease;
}

.breadcrumb-link-eigenwaarde-herkennen-waarderen:hover {
  color: #0891b2;
  text-decoration: underline;
}

.breadcrumb-separator-eigenwaarde-herkennen-waarderen {
  color: #cbd5e1;
}

.breadcrumb-current-eigenwaarde-herkennen-waarderen {
  color: #64748b;
}

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

.hero-text-block-eigenwaarde-herkennen-waarderen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.hero-subtitle-eigenwaarde-herkennen-waarderen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #475569;
}

.hero-meta-eigenwaarde-herkennen-waarderen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-eigenwaarde-herkennen-waarderen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #0f172a;
}

.meta-badge-eigenwaarde-herkennen-waarderen i {
  color: #06b6d4;
}

.hero-stats-eigenwaarde-herkennen-waarderen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.stat-item-eigenwaarde-herkennen-waarderen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-eigenwaarde-herkennen-waarderen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-eigenwaarde-herkennen-waarderen {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.4;
}

.hero-image-block-eigenwaarde-herkennen-waarderen {
  flex: 1 1 50%;
}

.hero-image-eigenwaarde-herkennen-waarderen {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.intro-section-eigenwaarde-herkennen-waarderen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

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

.intro-text-eigenwaarde-herkennen-waarderen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.intro-title-eigenwaarde-herkennen-waarderen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-description-eigenwaarde-herkennen-waarderen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #334151;
  font-weight: 500;
}

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

.intro-image-eigenwaarde-herkennen-waarderen {
  flex: 1 1 50%;
}

.intro-image-eigenwaarde-herkennen-waarderen img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.principles-section-eigenwaarde-herkennen-waarderen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-section-eigenwaarde-herkennen-waarderen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.principles-header-eigenwaarde-herkennen-waarderen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

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

.principles-title-eigenwaarde-herkennen-waarderen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.principles-subtitle-eigenwaarde-herkennen-waarderen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-eigenwaarde-herkennen-waarderen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principles-step-eigenwaarde-herkennen-waarderen {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.principles-step-eigenwaarde-herkennen-waarderen:hover {
  border-color: #06b6d4;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.1);
}

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

.principles-step-content-eigenwaarde-herkennen-waarderen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.principles-step-title-eigenwaarde-herkennen-waarderen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.principles-step-text-eigenwaarde-herkennen-waarderen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: #64748b;
}

.practices-section-eigenwaarde-herkennen-waarderen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practices-section-eigenwaarde-herkennen-waarderen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.practices-wrapper-eigenwaarde-herkennen-waarderen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.practices-text-eigenwaarde-herkennen-waarderen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practices-title-eigenwaarde-herkennen-waarderen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.practices-intro-eigenwaarde-herkennen-waarderen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #334151;
}

.practices-list-eigenwaarde-herkennen-waarderen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-item-eigenwaarde-herkennen-waarderen {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.practice-item-title-eigenwaarde-herkennen-waarderen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.practice-item-text-eigenwaarde-herkennen-waarderen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #64748b;
}

.practices-image-eigenwaarde-herkennen-waarderen {
  flex: 1 1 50%;
}

.practices-image-eigenwaarde-herkennen-waarderen img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.quote-section-eigenwaarde-herkennen-waarderen {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.quote-section-eigenwaarde-herkennen-waarderen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.featured-quote-eigenwaarde-herkennen-waarderen {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  border-radius: 8px;
  text-align: center;
}

.quote-text-eigenwaarde-herkennen-waarderen {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.7;
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-cite-eigenwaarde-herkennen-waarderen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-style: normal;
}

.transformation-section-eigenwaarde-herkennen-waarderen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.transformation-section-eigenwaarde-herkennen-waarderen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.transformation-wrapper-eigenwaarde-herkennen-waarderen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.transformation-image-eigenwaarde-herkennen-waarderen {
  flex: 1 1 50%;
}

.transformation-image-eigenwaarde-herkennen-waarderen img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.transformation-text-eigenwaarde-herkennen-waarderen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.transformation-title-eigenwaarde-herkennen-waarderen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.transformation-description-eigenwaarde-herkennen-waarderen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #334151;
}

.transformation-list-eigenwaarde-herkennen-waarderen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.transformation-item-eigenwaarde-herkennen-waarderen {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #64748b;
}

.transformation-item-eigenwaarde-herkennen-waarderen::before {
  content: "";
  color: #06b6d4;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.25rem;
  margin-top: 2px;
}

.cta-section-eigenwaarde-herkennen-waarderen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-section-eigenwaarde-herkennen-waarderen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.cta-box-eigenwaarde-herkennen-waarderen {
  background: linear-gradient(135deg, #06b6d4 0%, #0d9488 100%);
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
}

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

.cta-text-eigenwaarde-herkennen-waarderen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn-primary-eigenwaarde-herkennen-waarderen {
  background: #ffffff;
  color: #06b6d4;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary-eigenwaarde-herkennen-waarderen:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-eigenwaarde-herkennen-waarderen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-section-eigenwaarde-herkennen-waarderen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.disclaimer-box-eigenwaarde-herkennen-waarderen {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #f59e0b;
}

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

.disclaimer-text-eigenwaarde-herkennen-waarderen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
  color: #64748b;
}

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

.related-section-eigenwaarde-herkennen-waarderen .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

.related-header-eigenwaarde-herkennen-waarderen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.related-title-eigenwaarde-herkennen-waarderen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.related-subtitle-eigenwaarde-herkennen-waarderen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

.related-card-eigenwaarde-herkennen-waarderen {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-eigenwaarde-herkennen-waarderen:hover {
  border-color: #06b6d4;
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.15);
  transform: translateY(-4px);
}

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

.related-card-image-eigenwaarde-herkennen-waarderen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-eigenwaarde-herkennen-waarderen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-eigenwaarde-herkennen-waarderen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.related-card-text-eigenwaarde-herkennen-waarderen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .hero-content-eigenwaarde-herkennen-waarderen {
    flex-direction: column;
  }

  .hero-text-block-eigenwaarde-herkennen-waarderen,
  .hero-image-block-eigenwaarde-herkennen-waarderen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-wrapper-eigenwaarde-herkennen-waarderen,
  .practices-wrapper-eigenwaarde-herkennen-waarderen,
  .transformation-wrapper-eigenwaarde-herkennen-waarderen {
    flex-direction: column;
  }

  .intro-text-eigenwaarde-herkennen-waarderen,
  .intro-image-eigenwaarde-herkennen-waarderen,
  .practices-text-eigenwaarde-herkennen-waarderen,
  .practices-image-eigenwaarde-herkennen-waarderen,
  .transformation-text-eigenwaarde-herkennen-waarderen,
  .transformation-image-eigenwaarde-herkennen-waarderen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-eigenwaarde-herkennen-waarderen {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-eigenwaarde-herkennen-waarderen {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-eigenwaarde-herkennen-waarderen {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
  }

  .stat-item-eigenwaarde-herkennen-waarderen:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-eigenwaarde-herkennen-waarderen {
    font-size: 0.75rem;
  }

  .principles-step-eigenwaarde-herkennen-waarderen {
    flex-direction: column;
    gap: 1rem;
  }

  .principles-step-number-eigenwaarde-herkennen-waarderen {
    font-size: 2rem;
  }
}

.main-zelfvertrouwen-opbouwen-praktisch {
  width: 100%;
}

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

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

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

.breadcrumb-link-zelfvertrouwen-opbouwen-praktisch {
  color: #0891b2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-zelfvertrouwen-opbouwen-praktisch:hover {
  color: #06b6d4;
  text-decoration: underline;
}

.breadcrumb-separator-zelfvertrouwen-opbouwen-praktisch {
  color: #cbd5e1;
}

.breadcrumb-current-zelfvertrouwen-opbouwen-praktisch {
  color: #64748b;
}

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

.hero-text-wrapper-zelfvertrouwen-opbouwen-praktisch {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-zelfvertrouwen-opbouwen-praktisch {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.meta-item-zelfvertrouwen-opbouwen-praktisch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #64748b;
}

.meta-item-zelfvertrouwen-opbouwen-praktisch i {
  color: #06b6d4;
}

.hero-image-wrapper-zelfvertrouwen-opbouwen-praktisch {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-zelfvertrouwen-opbouwen-praktisch {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.15);
}

@media (max-width: 768px) {
  .hero-content-zelfvertrouwen-opbouwen-praktisch {
    flex-direction: column;
  }

  .hero-text-wrapper-zelfvertrouwen-opbouwen-praktisch,
  .hero-image-wrapper-zelfvertrouwen-opbouwen-praktisch {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-zelfvertrouwen-opbouwen-praktisch {
    max-height: 350px;
  }
}

.introduction-section-zelfvertrouwen-opbouwen-praktisch {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.introduction-text-zelfvertrouwen-opbouwen-praktisch {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.introduction-description-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.intro-image-zelfvertrouwen-opbouwen-praktisch {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

  .intro-image-zelfvertrouwen-opbouwen-praktisch {
    max-height: 320px;
  }
}

.methodology-section-zelfvertrouwen-opbouwen-praktisch {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methodology-header-zelfvertrouwen-opbouwen-praktisch {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

.methodology-title-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.methodology-subtitle-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.methodology-steps-zelfvertrouwen-opbouwen-praktisch {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methodology-step-zelfvertrouwen-opbouwen-praktisch {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f1f5f9;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.methodology-step-zelfvertrouwen-opbouwen-praktisch:hover {
  background: #e2e8f0;
  transform: translateX(4px);
}

.step-number-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-zelfvertrouwen-opbouwen-praktisch {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.step-description-zelfvertrouwen-opbouwen-praktisch {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 768px) {
  .methodology-step-zelfvertrouwen-opbouwen-praktisch {
    padding: 1rem;
  }
}

.techniques-section-zelfvertrouwen-opbouwen-praktisch {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.techniques-text-zelfvertrouwen-opbouwen-praktisch {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.techniques-description-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.technique-highlight-zelfvertrouwen-opbouwen-praktisch {
  padding: 1.25rem;
  background: #ffffff;
  border-left: 4px solid #06b6d4;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.highlight-text-zelfvertrouwen-opbouwen-praktisch {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.techniques-image-zelfvertrouwen-opbouwen-praktisch {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-image-zelfvertrouwen-opbouwen-praktisch {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .techniques-wrapper-zelfvertrouwen-opbouwen-praktisch {
    flex-direction: column;
  }

  .techniques-text-zelfvertrouwen-opbouwen-praktisch,
  .techniques-image-zelfvertrouwen-opbouwen-praktisch {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .technique-image-zelfvertrouwen-opbouwen-praktisch {
    max-height: 320px;
  }
}

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

.challenges-wrapper-zelfvertrouwen-opbouwen-praktisch {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.challenges-image-zelfvertrouwen-opbouwen-praktisch {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenge-image-zelfvertrouwen-opbouwen-praktisch {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.challenges-text-zelfvertrouwen-opbouwen-praktisch {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.challenges-description-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.challenge-item-zelfvertrouwen-opbouwen-praktisch {
  margin-bottom: 1.5rem;
}

.challenge-item-title-zelfvertrouwen-opbouwen-praktisch {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.challenge-item-text-zelfvertrouwen-opbouwen-praktisch {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .challenges-wrapper-zelfvertrouwen-opbouwen-praktisch {
    flex-direction: column;
  }

  .challenges-image-zelfvertrouwen-opbouwen-praktisch,
  .challenges-text-zelfvertrouwen-opbouwen-praktisch {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .challenge-image-zelfvertrouwen-opbouwen-praktisch {
    max-height: 320px;
  }
}

.daily-practice-section-zelfvertrouwen-opbouwen-praktisch {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.daily-practice-header-zelfvertrouwen-opbouwen-praktisch {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.daily-practice-title-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.daily-practice-subtitle-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.daily-practice-content-zelfvertrouwen-opbouwen-praktisch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

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

.practice-card-zelfvertrouwen-opbouwen-praktisch:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.1);
  border-color: #06b6d4;
}

.practice-card-number-zelfvertrouwen-opbouwen-praktisch {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0891b2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.practice-card-title-zelfvertrouwen-opbouwen-praktisch {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.practice-card-text-zelfvertrouwen-opbouwen-praktisch {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

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

.conclusion-section-zelfvertrouwen-opbouwen-praktisch {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-zelfvertrouwen-opbouwen-praktisch {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.conclusion-quote-zelfvertrouwen-opbouwen-praktisch {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: 2rem 0;
  font-style: italic;
  border-radius: 8px;
}

.quote-text-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-zelfvertrouwen-opbouwen-praktisch {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.conclusion-closing-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.conclusion-cta-zelfvertrouwen-opbouwen-praktisch {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-primary-zelfvertrouwen-opbouwen-praktisch,
.btn-secondary-zelfvertrouwen-opbouwen-praktisch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

.btn-secondary-zelfvertrouwen-opbouwen-praktisch {
  background: transparent;
  color: #06b6d4;
  border: 2px solid #06b6d4;
}

.btn-secondary-zelfvertrouwen-opbouwen-praktisch:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: #22d3ee;
  color: #22d3ee;
}

.related-section-zelfvertrouwen-opbouwen-praktisch {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-zelfvertrouwen-opbouwen-praktisch {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.related-title-zelfvertrouwen-opbouwen-praktisch {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

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

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

.related-card-zelfvertrouwen-opbouwen-praktisch {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.related-card-zelfvertrouwen-opbouwen-praktisch:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.related-card-image-zelfvertrouwen-opbouwen-praktisch {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-zelfvertrouwen-opbouwen-praktisch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-zelfvertrouwen-opbouwen-praktisch:hover .related-card-image-zelfvertrouwen-opbouwen-praktisch img {
  transform: scale(1.05);
}

.related-card-content-zelfvertrouwen-opbouwen-praktisch {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.related-card-title-zelfvertrouwen-opbouwen-praktisch {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-zelfvertrouwen-opbouwen-praktisch {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-zelfvertrouwen-opbouwen-praktisch {
  font-size: 0.9375rem;
  color: #06b6d4;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.related-card-link-zelfvertrouwen-opbouwen-praktisch:hover {
  color: #22d3ee;
  text-decoration: underline;
}

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

.disclaimer-section-zelfvertrouwen-opbouwen-praktisch {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-zelfvertrouwen-opbouwen-praktisch {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-zelfvertrouwen-opbouwen-praktisch {
  font-size: 1.125rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 1rem;
}

.disclaimer-text-zelfvertrouwen-opbouwen-praktisch {
  font-size: 0.9375rem;
  color: #78350f;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-meta-zelfvertrouwen-opbouwen-praktisch {
    flex-direction: column;
    gap: 1rem;
  }
}

.main-mindfulness-innerlijke-sterkte {
  width: 100%;
  background: #ffffff;
}

.hero-section-mindfulness-innerlijke-sterkte {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.breadcrumb-link-mindfulness-innerlijke-sterkte {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-mindfulness-innerlijke-sterkte:hover {
  color: #06b6d4;
}

.breadcrumb-separator-mindfulness-innerlijke-sterkte {
  color: #64748b;
}

.breadcrumb-current-mindfulness-innerlijke-sterkte {
  color: #06b6d4;
}

.hero-content-mindfulness-innerlijke-sterkte {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-wrapper-mindfulness-innerlijke-sterkte {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-mindfulness-innerlijke-sterkte {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-mindfulness-innerlijke-sterkte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-mindfulness-innerlijke-sterkte {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-mindfulness-innerlijke-sterkte {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #06b6d4;
}

.meta-badge-mindfulness-innerlijke-sterkte i {
  font-size: 0.875rem;
}

.hero-image-wrapper-mindfulness-innerlijke-sterkte {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-mindfulness-innerlijke-sterkte {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats-mindfulness-innerlijke-sterkte {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
}

.stat-item-mindfulness-innerlijke-sterkte {
  flex: 0 1 auto;
  text-align: left;
}

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

.stat-label-mindfulness-innerlijke-sterkte {
  display: block;
  font-size: 0.875rem;
  color: #cbd5e1;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-content-mindfulness-innerlijke-sterkte {
    flex-direction: column;
  }
  
  .hero-text-wrapper-mindfulness-innerlijke-sterkte,
  .hero-image-wrapper-mindfulness-innerlijke-sterkte {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-stats-mindfulness-innerlijke-sterkte {
    gap: 1.5rem;
  }
}

.intro-section-mindfulness-innerlijke-sterkte {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-wrapper-mindfulness-innerlijke-sterkte {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-mindfulness-innerlijke-sterkte {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-content-mindfulness-innerlijke-sterkte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-mindfulness-innerlijke-sterkte {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-mindfulness-innerlijke-sterkte {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-wrapper-mindfulness-innerlijke-sterkte {
    flex-direction: column;
  }
  
  .intro-text-mindfulness-innerlijke-sterkte,
  .intro-image-mindfulness-innerlijke-sterkte {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-mindfulness-innerlijke-sterkte {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-section-mindfulness-innerlijke-sterkte .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.benefits-header-mindfulness-innerlijke-sterkte {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-tag-mindfulness-innerlijke-sterkte {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefits-title-mindfulness-innerlijke-sterkte {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0;
}

.benefits-cards-mindfulness-innerlijke-sterkte {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefits-card-mindfulness-innerlijke-sterkte {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-card-mindfulness-innerlijke-sterkte:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.benefits-card-icon-mindfulness-innerlijke-sterkte {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #06b6d4;
  border-radius: 10px;
  font-size: 1.5rem;
}

.benefits-card-title-mindfulness-innerlijke-sterkte {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.benefits-card-text-mindfulness-innerlijke-sterkte {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

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

.practices-section-mindfulness-innerlijke-sterkte {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practices-section-mindfulness-innerlijke-sterkte .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.practices-header-mindfulness-innerlijke-sterkte {
  text-align: center;
  margin-bottom: 3rem;
}

.practices-title-mindfulness-innerlijke-sterkte {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.practices-subtitle-mindfulness-innerlijke-sterkte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  margin: 0 auto;
  max-width: 600px;
}

.practices-list-mindfulness-innerlijke-sterkte {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-item-mindfulness-innerlijke-sterkte {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.practice-number-mindfulness-innerlijke-sterkte {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.practice-content-mindfulness-innerlijke-sterkte {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practice-title-mindfulness-innerlijke-sterkte {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.practice-text-mindfulness-innerlijke-sterkte {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

@media (max-width: 768px) {
  .practice-item-mindfulness-innerlijke-sterkte {
    flex-direction: column;
    gap: 1rem;
  }
  
  .practice-number-mindfulness-innerlijke-sterkte {
    min-width: auto;
  }
}

.deepdive-section-mindfulness-innerlijke-sterkte {
  background: linear-gradient(135deg, #0f172a 0%, #1a2a3a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.deepdive-section-mindfulness-innerlijke-sterkte .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.deepdive-wrapper-mindfulness-innerlijke-sterkte {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.deepdive-text-mindfulness-innerlijke-sterkte {
  flex: 1 1 50%;
  max-width: 50%;
}

.deepdive-title-mindfulness-innerlijke-sterkte {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.deepdive-content-mindfulness-innerlijke-sterkte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.deepdive-quote-mindfulness-innerlijke-sterkte {
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  margin: 2rem 0;
  border-radius: 4px;
}

.quote-text-mindfulness-innerlijke-sterkte {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #ffffff;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.quote-author-mindfulness-innerlijke-sterkte {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
  margin: 0;
}

.deepdive-image-mindfulness-innerlijke-sterkte {
  flex: 1 1 50%;
  max-width: 50%;
}

.deepdive-image-img-mindfulness-innerlijke-sterkte {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .deepdive-wrapper-mindfulness-innerlijke-sterkte {
    flex-direction: column;
  }
  
  .deepdive-text-mindfulness-innerlijke-sterkte,
  .deepdive-image-mindfulness-innerlijke-sterkte {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-mindfulness-innerlijke-sterkte {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-section-mindfulness-innerlijke-sterkte .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.implementation-header-mindfulness-innerlijke-sterkte {
  text-align: center;
  margin-bottom: 3rem;
}

.implementation-tag-mindfulness-innerlijke-sterkte {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.implementation-title-mindfulness-innerlijke-sterkte {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.implementation-subtitle-mindfulness-innerlijke-sterkte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.implementation-wrapper-mindfulness-innerlijke-sterkte {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-mindfulness-innerlijke-sterkte {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-subheading-mindfulness-innerlijke-sterkte {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 1.5rem 0 0.75rem 0;
}

.implementation-body-mindfulness-innerlijke-sterkte {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #374151;
  margin: 0 0 1rem 0;
}

.implementation-image-mindfulness-innerlijke-sterkte {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-img-mindfulness-innerlijke-sterkte {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .implementation-wrapper-mindfulness-innerlijke-sterkte {
    flex-direction: column;
  }
  
  .implementation-text-mindfulness-innerlijke-sterkte,
  .implementation-image-mindfulness-innerlijke-sterkte {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.obstacles-section-mindfulness-innerlijke-sterkte {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.obstacles-section-mindfulness-innerlijke-sterkte .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.obstacles-header-mindfulness-innerlijke-sterkte {
  text-align: center;
  margin-bottom: 3rem;
}

.obstacles-title-mindfulness-innerlijke-sterkte {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.obstacles-cards-mindfulness-innerlijke-sterkte {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.obstacles-card-mindfulness-innerlijke-sterkte {
  flex: 1 1 300px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.obstacles-card-title-mindfulness-innerlijke-sterkte {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.obstacles-card-text-mindfulness-innerlijke-sterkte {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

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

.conclusion-section-mindfulness-innerlijke-sterkte {
  background: linear-gradient(135deg, #0f172a 0%, #1a2a3a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-section-mindfulness-innerlijke-sterkte .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.conclusion-content-mindfulness-innerlijke-sterkte {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-mindfulness-innerlijke-sterkte {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-mindfulness-innerlijke-sterkte {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: left;
}

.conclusion-cta-mindfulness-innerlijke-sterkte {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  margin-top: 2rem;
}

.conclusion-cta-title-mindfulness-innerlijke-sterkte {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.conclusion-cta-text-mindfulness-innerlijke-sterkte {
  font-size: 0.9375rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.conclusion-cta-btn-mindfulness-innerlijke-sterkte {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #06b6d4;
  color: #0f172a;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.conclusion-cta-btn-mindfulness-innerlijke-sterkte:hover {
  background: #22d3ee;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

.related-section-mindfulness-innerlijke-sterkte {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-header-mindfulness-innerlijke-sterkte {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-mindfulness-innerlijke-sterkte {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

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

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

.related-card-mindfulness-innerlijke-sterkte {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-mindfulness-innerlijke-sterkte:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.related-card-image-mindfulness-innerlijke-sterkte {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-img-mindfulness-innerlijke-sterkte {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-mindfulness-innerlijke-sterkte {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0 1.5rem;
  margin: 0.5rem 0 0 0;
}

.related-card-text-mindfulness-innerlijke-sterkte {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  padding: 0 1.5rem;
  margin: 0;
}

.related-card-link-mindfulness-innerlijke-sterkte {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-card-link-mindfulness-innerlijke-sterkte:hover {
  color: #0891b2;
  text-decoration: underline;
}

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

.disclaimer-section-mindfulness-innerlijke-sterkte {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-mindfulness-innerlijke-sterkte {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.disclaimer-title-mindfulness-innerlijke-sterkte {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-mindfulness-innerlijke-sterkte {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-section-mindfulness-innerlijke-sterkte {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .intro-section-mindfulness-innerlijke-sterkte,
  .benefits-section-mindfulness-innerlijke-sterkte,
  .practices-section-mindfulness-innerlijke-sterkte,
  .deepdive-section-mindfulness-innerlijke-sterkte,
  .implementation-section-mindfulness-innerlijke-sterkte,
  .obstacles-section-mindfulness-innerlijke-sterkte,
  .conclusion-section-mindfulness-innerlijke-sterkte,
  .related-section-mindfulness-innerlijke-sterkte,
  .disclaimer-section-mindfulness-innerlijke-sterkte {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-stats-mindfulness-innerlijke-sterkte {
    gap: 4rem;
  }
}

.main-openbare-spreektechniek-beheersen {
  width: 100%;
}

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

.breadcrumbs-openbare-spreektechniek-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
}

.breadcrumbs-link-openbare-spreektechniek-beheersen {
  color: #06b6d4;
  transition: color 0.2s ease;
}

.breadcrumbs-link-openbare-spreektechniek-beheersen:hover {
  color: #22d3ee;
  text-decoration: underline;
}

.breadcrumbs-separator-openbare-spreektechniek-beheersen,
.breadcrumbs-current-openbare-spreektechniek-beheersen {
  color: #64748b;
}

.hero-content-openbare-spreektechniek-beheersen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-wrapper-openbare-spreektechniek-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-openbare-spreektechniek-beheersen {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

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

.hero-meta-openbare-spreektechniek-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-openbare-spreektechniek-beheersen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #06b6d4;
}

.meta-badge-openbare-spreektechniek-beheersen i {
  font-size: 0.875rem;
}

.hero-buttons-openbare-spreektechniek-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-openbare-spreektechniek-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-openbare-spreektechniek-beheersen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.hero-stats-openbare-spreektechniek-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-openbare-spreektechniek-beheersen {
  flex: 0 1 auto;
}

.stat-number-openbare-spreektechniek-beheersen {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #06b6d4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-openbare-spreektechniek-beheersen {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
}

.intro-section-openbare-spreektechniek-beheersen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-openbare-spreektechniek-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-openbare-spreektechniek-beheersen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
}

.intro-description-openbare-spreektechniek-beheersen {
  color: #374151;
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-text-openbare-spreektechniek-beheersen {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  line-height: 1.7;
}

.intro-image-openbare-spreektechniek-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-openbare-spreektechniek-beheersen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.fundamentals-section-openbare-spreektechniek-beheersen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-openbare-spreektechniek-beheersen {
  text-align: center;
  margin-bottom: 3rem;
}

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

.fundamentals-title-openbare-spreektechniek-beheersen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
}

.fundamentals-subtitle-openbare-spreektechniek-beheersen {
  color: #64748b;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.fundamentals-cards-openbare-spreektechniek-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.fundamentals-card-openbare-spreektechniek-beheersen {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fundamentals-card-openbare-spreektechniek-beheersen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.fundamentals-card-icon-openbare-spreektechniek-beheersen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 10px;
  color: #06b6d4;
  font-size: 1.5rem;
}

.fundamentals-card-title-openbare-spreektechniek-beheersen {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

.fundamentals-card-text-openbare-spreektechniek-beheersen {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

.techniques-header-openbare-spreektechniek-beheersen {
  text-align: center;
  margin-bottom: 3rem;
}

.techniques-tag-openbare-spreektechniek-beheersen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(13, 148, 136, 0.15);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.techniques-title-openbare-spreektechniek-beheersen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
}

.techniques-steps-openbare-spreektechniek-beheersen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.techniques-step-openbare-spreektechniek-beheersen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #06b6d4;
}

.techniques-step-number-openbare-spreektechniek-beheersen {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.techniques-step-content-openbare-spreektechniek-beheersen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.techniques-step-title-openbare-spreektechniek-beheersen {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

.techniques-step-text-openbare-spreektechniek-beheersen {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.practice-section-openbare-spreektechniek-beheersen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-content-openbare-spreektechniek-beheersen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.practice-text-openbare-spreektechniek-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-openbare-spreektechniek-beheersen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
}

.practice-description-openbare-spreektechniek-beheersen {
  color: #374151;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.practice-list-openbare-spreektechniek-beheersen {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practice-list-item-openbare-spreektechniek-beheersen {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.practice-list-item-openbare-spreektechniek-beheersen::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: 700;
}

.practice-image-openbare-spreektechniek-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-openbare-spreektechniek-beheersen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.mindset-section-openbare-spreektechniek-beheersen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mindset-content-openbare-spreektechniek-beheersen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.mindset-image-openbare-spreektechniek-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.mindset-image-openbare-spreektechniek-beheersen img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.mindset-text-openbare-spreektechniek-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-title-openbare-spreektechniek-beheersen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
}

.mindset-description-openbare-spreektechniek-beheersen {
  color: #374151;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.mindset-quote-openbare-spreektechniek-beheersen {
  padding: 2rem 2.5rem;
  border-left: 4px solid #06b6d4;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: 8px;
}

.mindset-quote-openbare-spreektechniek-beheersen p {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1rem;
}

.mindset-quote-openbare-spreektechniek-beheersen cite {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.mindset-text-openbare-spreektechniek-beheersen {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.conclusion-section-openbare-spreektechniek-beheersen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-openbare-spreektechniek-beheersen {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-openbare-spreektechniek-beheersen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  text-align: center;
  margin-bottom: 2rem;
}

.conclusion-text-openbare-spreektechniek-beheersen {
  color: #64748b;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-key-takeaways-openbare-spreektechniek-beheersen {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.conclusion-takeaways-title-openbare-spreektechniek-beheersen {
  color: #1e293b;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.conclusion-takeaways-list-openbare-spreektechniek-beheersen {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.conclusion-takeaway-item-openbare-spreektechniek-beheersen {
  color: #374151;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.conclusion-takeaway-item-openbare-spreektechniek-beheersen::before {
  content: "";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: 700;
}

.conclusion-cta-openbare-spreektechniek-beheersen {
  background: linear-gradient(135deg, #06b6d4 0%, #0d9488 100%);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
}

.conclusion-cta-title-openbare-spreektechniek-beheersen {
  color: #ffffff;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.conclusion-cta-text-openbare-spreektechniek-beheersen {
  color: #ffffff;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.conclusion-cta-openbare-spreektechniek-beheersen .btn {
  background: #ffffff;
  color: #06b6d4;
}

.conclusion-cta-openbare-spreektechniek-beheersen .btn:hover {
  background: #f0f9fa;
  color: #0891b2;
}

.disclaimer-section-openbare-spreektechniek-beheersen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-openbare-spreektechniek-beheersen {
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-openbare-spreektechniek-beheersen {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-openbare-spreektechniek-beheersen {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
}

.related-section-openbare-spreektechniek-beheersen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-openbare-spreektechniek-beheersen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-openbare-spreektechniek-beheersen {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 0.75rem;
}

.related-subtitle-openbare-spreektechniek-beheersen {
  color: #64748b;
  font-size: 1rem;
}

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

.related-card-openbare-spreektechniek-beheersen {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.related-card-openbare-spreektechniek-beheersen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.related-card-image-openbare-spreektechniek-beheersen {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-card-image-openbare-spreektechniek-beheersen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-openbare-spreektechniek-beheersen {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-openbare-spreektechniek-beheersen {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

.related-card-text-openbare-spreektechniek-beheersen {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content-openbare-spreektechniek-beheersen {
    flex-direction: column;
  }

  .hero-text-wrapper-openbare-spreektechniek-beheersen,
  .hero-image-openbare-spreektechniek-beheersen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-openbare-spreektechniek-beheersen {
    justify-content: center;
  }

  .intro-content-openbare-spreektechniek-beheersen {
    flex-direction: column;
  }

  .intro-text-openbare-spreektechniek-beheersen,
  .intro-image-openbare-spreektechniek-beheersen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .fundamentals-card-openbare-spreektechniek-beheersen {
    flex: 1 1 100%;
    max-width: none;
  }

  .techniques-step-openbare-spreektechniek-beheersen {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .techniques-step-number-openbare-spreektechniek-beheersen {
    min-width: auto;
  }

  .practice-content-openbare-spreektechniek-beheersen {
    flex-direction: column;
  }

  .practice-text-openbare-spreektechniek-beheersen,
  .practice-image-openbare-spreektechniek-beheersen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .mindset-content-openbare-spreektechniek-beheersen {
    flex-direction: column;
  }

  .mindset-image-openbare-spreektechniek-beheersen {
    order: 0;
  }

  .mindset-image-openbare-spreektechniek-beheersen,
  .mindset-text-openbare-spreektechniek-beheersen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-openbare-spreektechniek-beheersen {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-buttons-openbare-spreektechniek-beheersen {
    flex-direction: column;
  }

  .hero-buttons-openbare-spreektechniek-beheersen .btn {
    width: 100%;
  }

  .conclusion-cta-openbare-spreektechniek-beheersen .btn {
    display: block;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-openbare-spreektechniek-beheersen {
    font-size: 0.8125rem;
  }

  .techniques-steps-openbare-spreektechniek-beheersen {
    gap: 1rem;
  }

  .techniques-step-openbare-spreektechniek-beheersen {
    padding: 1rem;
  }

  .conclusion-key-takeaways-openbare-spreektechniek-beheersen {
    padding: 1.5rem;
  }

  .conclusion-cta-openbare-spreektechniek-beheersen {
    padding: 1.5rem;
  }

  .disclaimer-content-openbare-spreektechniek-beheersen {
    padding: 1.25rem;
  }
}

.main-persoonlijke-coaching-potentieel {
  width: 100%;
  font-family: var(--font-primary);
}

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

.breadcrumbs-persoonlijke-coaching-potentieel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-persoonlijke-coaching-potentieel {
  color: #06b6d4;
  transition: color 0.2s ease;
}

.breadcrumb-link-persoonlijke-coaching-potentieel:hover {
  color: #22d3ee;
}

.breadcrumb-separator-persoonlijke-coaching-potentieel {
  color: #cbd5e1;
}

.breadcrumb-current-persoonlijke-coaching-potentieel {
  color: #94a3b8;
}

.hero-section-persoonlijke-coaching-potentieel {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.hero-content-persoonlijke-coaching-potentieel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-wrapper-persoonlijke-coaching-potentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-persoonlijke-coaching-potentieel {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
}

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

.hero-meta-persoonlijke-coaching-potentieel {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-persoonlijke-coaching-potentieel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #06b6d4;
}

.meta-badge-persoonlijke-coaching-potentieel i {
  color: #06b6d4;
}

.hero-cta-persoonlijke-coaching-potentieel {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

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

.btn-outline-persoonlijke-coaching-potentieel:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: #22d3ee;
  color: #22d3ee;
}

.hero-image-wrapper-persoonlijke-coaching-potentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-persoonlijke-coaching-potentieel {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.stat-item-persoonlijke-coaching-potentieel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-persoonlijke-coaching-potentieel {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
}

.stat-label-persoonlijke-coaching-potentieel {
  font-size: 0.875rem;
  color: #94a3b8;
}

.introduction-section-persoonlijke-coaching-potentieel {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.intro-text-persoonlijke-coaching-potentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-persoonlijke-coaching-potentieel {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-persoonlijke-coaching-potentieel {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.intro-image-persoonlijke-coaching-potentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-persoonlijke-coaching-potentieel {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-section-persoonlijke-coaching-potentieel {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-persoonlijke-coaching-potentieel {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-title-persoonlijke-coaching-potentieel {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-persoonlijke-coaching-potentieel {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps-persoonlijke-coaching-potentieel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-persoonlijke-coaching-potentieel {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.08);
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.process-step-number-persoonlijke-coaching-potentieel {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #06b6d4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.process-step-content-persoonlijke-coaching-potentieel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.process-step-title-persoonlijke-coaching-potentieel {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
}

.process-step-text-persoonlijke-coaching-potentieel {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.benefits-section-persoonlijke-coaching-potentieel {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.benefits-wrapper-persoonlijke-coaching-potentieel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.benefits-text-persoonlijke-coaching-potentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-title-persoonlijke-coaching-potentieel {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.benefits-intro-persoonlijke-coaching-potentieel {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.benefits-list-persoonlijke-coaching-potentieel {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-item-persoonlijke-coaching-potentieel {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.benefits-icon-persoonlijke-coaching-potentieel {
  color: #06b6d4;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefits-item-title-persoonlijke-coaching-potentieel {
  color: #0f172a;
  font-weight: 600;
}

.benefits-image-persoonlijke-coaching-potentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-persoonlijke-coaching-potentieel {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quote-section-persoonlijke-coaching-potentieel {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.featured-quote-persoonlijke-coaching-potentieel {
  padding: 2.5rem;
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-persoonlijke-coaching-potentieel {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-persoonlijke-coaching-potentieel {
  color: #cbd5e1;
  font-size: 0.9375rem;
  font-style: normal;
}

.approach-section-persoonlijke-coaching-potentieel {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.approach-wrapper-persoonlijke-coaching-potentieel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.approach-image-persoonlijke-coaching-potentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.approach-image-persoonlijke-coaching-potentieel {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-text-persoonlijke-coaching-potentieel {
  flex: 1 1 50%;
  max-width: 50%;
}

.approach-title-persoonlijke-coaching-potentieel {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.approach-description-persoonlijke-coaching-potentieel {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.approach-features-persoonlijke-coaching-potentieel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach-feature-persoonlijke-coaching-potentieel {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #06b6d4;
}

.approach-feature-title-persoonlijke-coaching-potentieel {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.approach-feature-text-persoonlijke-coaching-potentieel {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.impact-section-persoonlijke-coaching-potentieel {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.impact-cards-persoonlijke-coaching-potentieel {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.impact-card-persoonlijke-coaching-potentieel {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.impact-card-stat-persoonlijke-coaching-potentieel {
  color: #06b6d4;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

.impact-card-text-persoonlijke-coaching-potentieel {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

.conclusion-section-persoonlijke-coaching-potentieel {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-wrapper-persoonlijke-coaching-potentieel {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-persoonlijke-coaching-potentieel {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-persoonlijke-coaching-potentieel {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-persoonlijke-coaching-potentieel {
  margin-top: 2rem;
}

.cta-subtext-persoonlijke-coaching-potentieel {
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.related-section-persoonlijke-coaching-potentieel {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-header-persoonlijke-coaching-potentieel {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-persoonlijke-coaching-potentieel {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-persoonlijke-coaching-potentieel {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.related-card-persoonlijke-coaching-potentieel {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-persoonlijke-coaching-potentieel:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
}

.related-card-image-persoonlijke-coaching-potentieel {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}

.related-card-image-persoonlijke-coaching-potentieel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-persoonlijke-coaching-potentieel {
  color: #ffffff;
  font-size: clamp(1.0625rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
}

.related-card-description-persoonlijke-coaching-potentieel {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.related-card-link-persoonlijke-coaching-potentieel {
  color: #06b6d4;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: color 0.2s ease;
}

.related-card-link-persoonlijke-coaching-potentieel:hover {
  color: #22d3ee;
}

.disclaimer-section-persoonlijke-coaching-potentieel {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.disclaimer-box-persoonlijke-coaching-potentieel {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #f1f5f9;
  border-left: 4px solid #06b6d4;
  border-radius: 8px;
}

.disclaimer-title-persoonlijke-coaching-potentieel {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-persoonlijke-coaching-potentieel {
  color: #374151;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-persoonlijke-coaching-potentieel {
    flex-direction: column;
  }

  .hero-text-wrapper-persoonlijke-coaching-potentieel,
  .hero-image-wrapper-persoonlijke-coaching-potentieel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-persoonlijke-coaching-potentieel {
    justify-content: space-around;
  }

  .intro-wrapper-persoonlijke-coaching-potentieel {
    flex-direction: column;
  }

  .intro-text-persoonlijke-coaching-potentieel,
  .intro-image-persoonlijke-coaching-potentieel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .process-step-persoonlijke-coaching-potentieel {
    flex-direction: column;
  }

  .process-step-number-persoonlijke-coaching-potentieel {
    min-width: auto;
  }

  .benefits-wrapper-persoonlijke-coaching-potentieel {
    flex-direction: column;
  }

  .benefits-text-persoonlijke-coaching-potentieel,
  .benefits-image-persoonlijke-coaching-potentieel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .approach-wrapper-persoonlijke-coaching-potentieel {
    flex-direction: column;
  }

  .approach-image-persoonlijke-coaching-potentieel,
  .approach-text-persoonlijke-coaching-potentieel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-persoonlijke-coaching-potentieel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-cta-persoonlijke-coaching-potentieel {
    flex-direction: column;
  }

  .btn-primary-persoonlijke-coaching-potentieel,
  .btn-outline-persoonlijke-coaching-potentieel {
    width: 100%;
  }

  .hero-stats-persoonlijke-coaching-potentieel {
    flex-direction: column;
    gap: 1.5rem;
  }

  .impact-card-persoonlijke-coaching-potentieel {
    flex: 1 1 100%;
  }
}

:root {
    --color-bg-dark-primary: #0a0f1e;
    --color-bg-dark-secondary: #0d1526;
    --color-bg-dark-tertiary: #111d2f;
    --color-bg-light-primary: #ffffff;
    --color-bg-light-secondary: #f8fafc;
    --color-text-dark-primary: #ffffff;
    --color-text-dark-secondary: #94a3b8;
    --color-text-dark-tertiary: #cbd5e1;
    --color-text-light-primary: #1e293b;
    --color-text-light-secondary: #64748b;
    --color-primary: #f59e0b;
    --color-primary-hover: #fbbf24;
    --color-secondary: #0d9488;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --radius-md: 8px;
    --radius-lg: 12px;
  }

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

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

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

  .zelfmacht-academy-about {
    width: 100%;
  }

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

  .hero-section-about .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-title-about {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
    font-weight: 700;
    color: var(--color-text-dark-primary);
    margin-bottom: 1rem;
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

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

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

  .hero-stat-label-about {
    font-size: 0.875rem;
    color: var(--color-text-dark-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .hero-visual-about {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    display: block;
  }

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

  .foundation-content-about {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .foundation-intro-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .foundation-tag-about {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
  }

  .foundation-title-about {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-dark-primary);
    line-height: 1.2;
  }

  .foundation-description-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
    color: var(--color-text-dark-tertiary);
    line-height: 1.7;
    max-width: 750px;
  }

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

  .methodology-content-about {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .methodology-header-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .methodology-tag-about {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
  }

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

  .methodology-intro-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
    color: var(--color-text-dark-tertiary);
    line-height: 1.7;
    max-width: 700px;
  }

  .methodology-steps-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .methodology-step-about {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 1.75rem;
    background: var(--color-bg-dark-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 158, 11, 0.1);
    align-items: flex-start;
  }

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

  .methodology-step-content-about {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .methodology-step-title-about {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark-primary);
  }

  .methodology-step-description-about {
    font-size: 0.9375rem;
    color: var(--color-text-dark-tertiary);
    line-height: 1.6;
  }

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

  .pillars-content-about {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .pillars-header-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .pillars-tag-about {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    margin: 0 auto;
  }

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

  .pillars-cards-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
  }

  .pillars-card-about {
    flex: 1 1 280px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .pillars-card-about:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.1);
  }

  .pillars-card-icon-about {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-size: 1.75rem;
  }

  .pillars-card-title-about {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark-primary);
  }

  .pillars-card-text-about {
    font-size: 0.9375rem;
    color: var(--color-text-dark-tertiary);
    line-height: 1.6;
  }

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

  .promise-content-about {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .promise-blockquote-about {
    padding: 2.5rem 2rem;
    border-left: 4px solid var(--color-primary);
    background: rgba(245, 158, 11, 0.08);
    border-radius: var(--radius-md);
  }

  .promise-quote-text-about {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--color-text-dark-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .promise-quote-author-about {
    font-size: 0.9375rem;
    color: var(--color-text-dark-secondary);
  }

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

  .disclaimer-section-about {
    background: var(--color-bg-dark-primary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    position: relative;
    overflow: hidden;
  }

  .disclaimer-content-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .disclaimer-header-about {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .disclaimer-icon-about {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
  }

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

  .disclaimer-text-about {
    font-size: 0.875rem;
    color: var(--color-text-dark-tertiary);
    line-height: 1.7;
  }

  .story-visual-about {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    display: block;
  }

  .pillars-visual-about {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    display: block;
  }

  @media (max-width: 768px) {
    .methodology-step-about {
      gap: 1.5rem;
      padding: 1.5rem;
    }

    .methodology-step-number-about {
      min-width: 50px;
    }

    .pillars-card-about {
      flex: 1 1 100%;
      max-width: none;
    }

    .hero-stats-about {
      gap: clamp(1.5rem, 4vw, 2.5rem);
    }
  }

  @media (max-width: 480px) {
    .promise-blockquote-about {
      padding: 1.75rem 1.5rem;
    }

    .hero-stats-about {
      flex-direction: column;
      gap: 1.5rem;
    }
  }

.legal-hub {
  width: 100%;
  background: var(--color-bg-light-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
}

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

.legal-hub-header {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-light-tertiary);
}

.legal-hub-header-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-header h1 {
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-header-meta {
  font-size: 0.9375rem;
  color: var(--color-text-light-tertiary);
}

.legal-hub-content {
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.legal-hub-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.legal-hub-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  margin-top: 0.5rem;
}

.legal-hub-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.8;
  margin: 0;
}

.legal-hub-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-hub-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.legal-hub-section li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-hub-contact {
  background: var(--color-bg-light-tertiary);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  margin-top: clamp(2rem, 5vw, 3rem);
  overflow: hidden;
}

.legal-hub-contact h2 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  margin: 0 0 1.5rem 0;
}

.legal-hub-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.legal-hub-contact-item:last-child {
  margin-bottom: 0;
}

.legal-hub-contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.legal-hub-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
}

@media (min-width: 768px) {
  .legal-hub-header {
    padding: 5rem 0;
  }

  .legal-hub-content {
    padding: 5rem 0;
  }

  .legal-hub-section {
    gap: 1.25rem;
  }
}

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

  .legal-hub-content {
    padding: 6rem 0;
  }

  .legal-hub-section {
    gap: 1.5rem;
  }
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background: rgba(6, 182, 212, 0.15);
  border-radius: 50%;
  animation: icon-scale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

.thank-section h1 {
  color: var(--color-text-dark-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-subtitle {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.thank-description {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-dark-tertiary);
  font-size: clamp(0.875rem, 1.2vw + 0.4rem, 1rem);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-checkpoints {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.checkpoint {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(6, 182, 212, 0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.checkpoint:hover {
  background: rgba(6, 182, 212, 0.15);
  transform: translateX(8px);
}

.checkpoint i {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: clamp(1.25rem, 3vw, 1.5rem);
}

.checkpoint span {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1.2vw + 0.4rem, 1rem);
  text-align: left;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.5vw + 0.4rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #0f172a;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

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

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

@keyframes icon-scale {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: 4rem 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: 2rem;
    padding: 3rem;
  }

  .thank-checkpoints {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .checkpoint {
    flex: 0 1 calc(33.333% - 1rem);
    min-width: 150px;
    flex-direction: column;
    gap: 0.75rem;
    border-left: none;
    border-top: 3px solid var(--color-primary);
  }

  .checkpoint span {
    text-align: center;
  }

  .checkpoint:hover {
    transform: translateY(-4px);
  }
}

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

  .thank-content {
    gap: 2.5rem;
    padding: 4rem;
  }

  .checkpoint {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .thank-checkpoints {
    gap: 0.75rem;
  }

  .checkpoint {
    padding: 0.5rem 0.75rem;
  }
}

.error-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .error-section {
    background: var(--color-bg-dark-primary);
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
    position: relative;
  }

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

  .error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  
  .error-visual {
    margin-bottom: clamp(2rem, 6vw, 4rem);
    position: relative;
  }

  .error-code-wrapper {
    position: relative;
    display: inline-block;
  }

  .error-code {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
    margin: 0;
    padding: 0;
  }

  .error-decoration {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(150px, 30vw, 300px);
    height: 4px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--color-primary),
      transparent
    );
    border-radius: 2px;
  }

  
  .error-message {
    margin-top: clamp(2rem, 8vw, 4rem);
    max-width: 600px;
  }

  .error-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 600;
    color: var(--color-text-dark-primary);
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .error-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-dark-secondary);
    margin: 0 0 clamp(2rem, 4vw, 3rem) 0;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .error-description {
    margin: clamp(2rem, 4vw, 2.5rem) 0;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
  }

  .error-description p {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--color-text-dark-secondary);
    margin: 0 0 clamp(1rem, 2vw, 1.25rem) 0;
    line-height: 1.6;
  }

  .error-suggestions {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1rem);
  }

  .error-suggestions li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--color-text-dark-tertiary);
    line-height: 1.5;
  }

  .error-suggestions i {
    color: var(--color-primary);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
  }

  .error-suggestions span {
    color: var(--color-text-dark-secondary);
  }

  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    line-height: 1.5;
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }

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

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

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

  
  .error-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
  }

  .shape-1 {
    width: clamp(100px, 20vw, 300px);
    height: clamp(100px, 20vw, 300px);
    background: var(--color-primary);
    top: -50px;
    right: -50px;
    animation: float 20s infinite ease-in-out;
  }

  .shape-2 {
    width: clamp(80px, 15vw, 250px);
    height: clamp(80px, 15vw, 250px);
    background: var(--color-secondary);
    bottom: -40px;
    left: -40px;
    animation: float 25s infinite ease-in-out reverse;
  }

  .shape-3 {
    width: clamp(60px, 12vw, 200px);
    height: clamp(60px, 12vw, 200px);
    background: var(--color-accent);
    bottom: 20%;
    right: 10%;
    animation: float 30s infinite ease-in-out;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0px) translateX(0px);
    }
    25% {
      transform: translateY(-20px) translateX(10px);
    }
    50% {
      transform: translateY(-40px) translateX(-10px);
    }
    75% {
      transform: translateY(-20px) translateX(15px);
    }
  }

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

    .error-code-wrapper {
      margin-bottom: clamp(2.5rem, 8vw, 4rem);
    }

    .error-description {
      margin: clamp(2.5rem, 5vw, 3rem) 0;
      padding: clamp(2rem, 3vw, 2.5rem);
    }

    .error-suggestions {
      gap: clamp(1rem, 2vw, 1.25rem);
    }
  }

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

    .error-code-wrapper {
      margin-bottom: clamp(3rem, 10vw, 5rem);
    }

    .error-message {
      margin-top: clamp(3rem, 10vw, 5rem);
    }

    .error-description {
      margin: clamp(2.5rem, 5vw, 3.5rem) 0;
      padding: clamp(2rem, 4vw, 3rem);
    }
  }

  
  @media (min-width: 1440px) {
    .error-code {
      font-size: 10rem;
    }

    .error-title {
      font-size: 2.75rem;
    }

    .error-subtitle {
      font-size: 1.125rem;
    }
  }

  
  @media (max-width: 480px) {
    .error-content {
      padding: 0 clamp(0.75rem, 3vw, 1rem);
    }

    .error-description {
      border: none;
      background: rgba(255, 255, 255, 0.02);
    }

    .btn {
      width: 100%;
    }
  }

  
  @media print {
    .error-animation {
      display: none;
    }

    .error-section {
      min-height: auto;
      padding: 2rem 0;
    }
  }

  
  @media (prefers-reduced-motion: reduce) {
    .floating-shape {
      animation: none;
      opacity: 0.05;
    }

    .btn {
      transition: none;
    }

    .btn:hover {
      transform: none;
    }
  }

  
  @media (prefers-contrast: more) {
    .error-decoration {
      opacity: 1;
      height: 6px;
    }

    .error-description {
      border: 2px solid var(--color-primary);
    }

    .btn-primary {
      border: 2px solid currentColor;
    }
  }

  
  @media (prefers-color-scheme: dark) {
    .error-section {
      background: var(--color-bg-dark-primary);
    }
  }