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

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0891b2;
  --color-accent-light: #dbeafe;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.08);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

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

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

.btn-secondary:hover {
  background: #0e7490;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.icon-small {
  font-size: 1rem;
}

.icon-medium {
  font-size: 1.5rem;
}

.icon-large {
  font-size: 2rem;
}

.icon-xl {
  font-size: 3rem;
}

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

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

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

.card-text {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-secondary {
  background: rgba(8, 145, 178, 0.1);
  color: var(--color-secondary);
}

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

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

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

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

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

.pt-3 { padding-top: var(--space-lg); }
.pb-3 { padding-bottom: var(--space-lg); }
.px-2 { padding-left: var(--space-md); padding-right: var(--space-md); }

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

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

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

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

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

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

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

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

.list-reset {
  list-style: none;
}

.list-reset li {
  margin: 0;
  padding: 0;
}

.input-field {
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1rem);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-field::placeholder {
  color: var(--color-text-muted);
}

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

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

.form-group label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.95rem;
}

.error-message {
  color: #dc2626;
  font-size: 0.875rem;
}

.success-message {
  color: #059669;
  font-size: 0.875rem;
}

.divider {
  height: 1px;
  background: #e2e8f0;
  margin: var(--space-lg) 0;
}

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

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

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

@media (min-width: 1024px) {
  .show-desktop {
    display: block;
  }
}
:root {
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-bg-tertiary: #f1f5f9;
    --color-bg-card: #ffffff;
    --color-text-primary: #1e293b;
    --color-text-secondary: #64748b;
    --color-text-muted: #94a3b8;
    --color-primary: #2563eb;
    --color-primary-hover: #1d4ed8;
    --color-secondary: #0891b2;
    --color-accent-light: #dbeafe;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.08);
    --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-leadership-deck {
    background: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-bg-tertiary);
    position: relative;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }

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

  .header-leadership-deck-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    flex-shrink: 0;
    transition: opacity 300ms ease-in-out;
  }

  .header-leadership-deck-brand:hover {
    opacity: 0.8;
  }

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

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

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

  .header-leadership-deck-nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 500;
    transition: color 300ms ease-in-out;
    position: relative;
  }

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

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

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

  .header-leadership-deck-cta-button {
    display: none;
    padding: clamp(0.625rem, 1.5vw, 0.75rem) clamp(1.25rem, 3vw, 1.5rem);
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    transition: all 300ms ease-in-out;
    flex-shrink: 0;
  }

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

  .header-leadership-deck-cta-button:active {
    transform: translateY(0);
  }

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

  .header-leadership-deck-mobile-toggle:hover {
    color: var(--color-primary);
  }

  .header-leadership-deck-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-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;
  }

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

  .header-leadership-deck-mobile-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
    border-bottom: 1px solid var(--color-bg-tertiary);
  }

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

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

  .header-leadership-deck-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
    flex: 1;
    overflow-y: auto;
  }

  .header-leadership-deck-mobile-link {
    padding: clamp(0.875rem, 2vw, 1.125rem) 0;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(1rem, 2vw, 1.0625rem);
    border-bottom: 1px solid var(--color-bg-tertiary);
    transition: color 300ms ease-in-out;
  }

  .header-leadership-deck-mobile-link:hover {
    color: var(--color-primary);
  }

  .header-leadership-deck-mobile-cta {
    margin-top: auto;
    padding: clamp(0.875rem, 2vw, 1rem) 0;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.0625rem);
    border-top: 1px solid var(--color-bg-tertiary);
    border-bottom: 1px solid var(--color-bg-tertiary);
    transition: color 300ms ease-in-out;
  }

  .header-leadership-deck-mobile-cta:hover {
    color: var(--color-primary-hover);
  }

  @media (min-width: 768px) {
    .header-leadership-deck-container {
      padding: 1rem clamp(1.5rem, 4vw, 2rem);
    }

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

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

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

    .header-leadership-deck-mobile-menu {
      display: none !important;
    }
  }

  @media (min-width: 1024px) {
    .header-leadership-deck-container {
      padding: 1.25rem 2rem;
    }

    .header-leadership-deck-logo-text {
      font-size: 1.375rem;
    }

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

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

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

    .leadership-hub {
  width: 100%;
}

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

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

.hero-glow-secondary-index {
  position: absolute;
  bottom: 50px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-shape-accent-index {
  position: absolute;
  top: 100px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-gradient-mesh-index {
  position: absolute;
  bottom: -50px;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.08), transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-element-index {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 250px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  transform: rotate(-25deg);
  z-index: 1;
  pointer-events: none;
}

.hero-line-accent-index {
  position: absolute;
  bottom: 20%;
  left: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-title-index {
  font-size: clamp(1.75rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.2;
}

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

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

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

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

.hero-stat-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #38bdf8;
  display: block;
  line-height: 1;
}

.hero-stat-label-index {
  font-size: 0.875rem;
  color: #cbd5e1;
  display: block;
}

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

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

.approach-shape-2-index {
  position: absolute;
  bottom: -60px;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 70% 30% 66% 34% / 33% 66% 34% 67%;
  z-index: 1;
  pointer-events: none;
}

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

.approach-content-index {
  position: relative;
  z-index: 10;
}

.approach-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.approach-tag-index {
  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;
}

.approach-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

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

.approach-step-index {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(6, 182, 212, 0.1);
}

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

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

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

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

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

.benefits-accent-1-index {
  position: absolute;
  top: 20%;
  right: -120px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.benefits-accent-2-index {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.benefits-accent-3-index {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 35% 65% 60% 40% / 65% 35% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

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

.benefits-content-index {
  position: relative;
  z-index: 10;
}

.benefits-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.benefits-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

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

.benefits-card-index {
  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.03);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-card-index:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.featured-shape-1-index {
  position: absolute;
  top: -60px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 45% 55% 50% 50% / 55% 45% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.featured-shape-2-index {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 60% 40% 35% 65% / 35% 65% 65% 35%;
  z-index: 1;
  pointer-events: none;
}

.featured-glow-index {
  position: absolute;
  top: 50%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-content-index {
  position: relative;
  z-index: 10;
}

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

.featured-tag-index {
  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;
}

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

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

.featured-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(6, 182, 212, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}

.featured-card-index:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

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

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

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

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

.featured-cta-index {
  text-align: center;
}

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

.quote-accent-1-index {
  position: absolute;
  top: -100px;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.quote-accent-2-index {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.quote-content-index {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.quote-block-index {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #06b6d4;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 8px;
  margin: 0;
}

.quote-text-index {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
  font-weight: 500;
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.quote-author-index {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

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

.cta-shape-primary-index {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.cta-glow-1-index {
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-2-index {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

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

.cta-title-index {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.cta-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.6;
}

.btn-large-index {
  padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1.125rem);
}

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

.contact-shape-1-index {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 40% 60% 70% 30% / 40% 30% 70% 60%;
  z-index: 1;
  pointer-events: none;
}

.contact-shape-2-index {
  position: absolute;
  bottom: -80px;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 70% 30% 40% 60% / 30% 40% 60% 70%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

.contact-info-wrapper-index {
  flex: 1 1 400px;
  min-width: 0;
}

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

.contact-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

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

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

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

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 300ms ease;
}

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

.contact-input-index::placeholder,
.contact-textarea-index::placeholder {
  color: #64748b;
}

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

.contact-submit-index {
  padding: 1rem 2rem;
  background: #06b6d4;
  color: #0d1526;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 300ms ease;
  font-family: var(--font-primary);
}

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

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

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

.contact-faq-item-index {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  padding-bottom: clamp(1.5rem, 2vw, 2rem);
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.contact-faq-item-index:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-faq-question-index {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-faq-answer-index {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  line-height: 1.6;
  color: #cbd5e1;
}

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

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

.cookie-banner-text {
  flex: 1 1 auto;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #cbd5e1;
  margin: 0;
  min-width: 200px;
}

.cookie-privacy-link {
  color: #06b6d4;
  text-decoration: underline;
  transition: color 300ms ease;
}

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

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

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

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

.cookie-btn-accept:hover {
  background: #0891b2;
  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: rgba(6, 182, 212, 0.6);
  color: #ffffff;
}

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

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

  .hero-stats-index {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

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

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

    .footer {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 5rem) 0;
    border-top: 1px solid var(--color-accent-light);
    position: relative;
    overflow: hidden;
  }

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

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

  .footer-about {
    display: block;
    max-width: 500px;
    margin-bottom: 1rem;
  }

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

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

  .footer-sections {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 3rem);
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1 1 200px;
    min-width: 180px;
  }

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

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

  .footer-nav-link,
  .footer-legal-link {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
  }

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

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

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

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

  .footer-contact-item {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  .footer-divider {
    width: 100%;
    height: 1px;
    background: var(--color-accent-light);
    margin: clamp(1.5rem, 3vw, 2rem) 0;
  }

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

  .footer-copyright {
    font-family: var(--font-primary);
    font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
    color: var(--color-text-muted);
    margin: 0;
    text-align: center;
  }

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

    .footer-sections {
      flex-direction: column;
      gap: clamp(1.5rem, 4vw, 2.5rem);
    }

    .footer-column {
      flex: 1 1 100%;
      min-width: 100%;
    }

    .footer-about {
      max-width: 100%;
    }

    .footer-copyright {
      font-size: 0.8125rem;
    }
  }

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

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

.main.category-page-leadership-training {
  width: 100%;
}

.hero-section-leadership {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.hero-decoration-glow-2 {
  position: absolute;
  bottom: 50px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(8, 145, 178, 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: 120px;
  height: 120px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 0;
  pointer-events: none;
}

.hero-decoration-shape-2 {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(8, 145, 178, 0.04);
  border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
  z-index: 0;
  pointer-events: none;
}

.hero-content-leadership {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-tag-leadership {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title-leadership {
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle-leadership {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-stats-leadership {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2.5rem;
}

.stat-item-leadership {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.stat-number-leadership {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.stat-label-leadership {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

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

.hero-buttons-leadership .btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.featured-quote-section-leadership {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

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

.quote-decoration-2 {
  position: absolute;
  bottom: 50px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.featured-quote-leadership {
  position: relative;
  z-index: 10;
  padding: 2.5rem 2rem;
  border-left: 4px solid #2563eb;
  background: rgba(255, 255, 255, 0.03);
  margin: 0 auto;
  max-width: 650px;
  text-align: center;
  border-left: none;
}

.quote-text-leadership {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quote-author-leadership {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: normal;
}

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

.posts-decoration-glow-1 {
  position: absolute;
  top: -150px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.posts-decoration-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -180px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.posts-decoration-accent-1 {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 0;
  pointer-events: none;
}

.posts-header-leadership {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

.posts-tag-leadership {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.posts-title-leadership {
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.posts-subtitle-leadership {
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.card-leadership:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

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

.card-title-leadership {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.card-description-leadership {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-leadership {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meta-badge-leadership {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: #f1f5f9;
  color: #2563eb;
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-leadership i {
  font-size: 0.75rem;
}

.card-link-leadership {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.card-link-leadership:hover {
  color: #1d4ed8;
  gap: 0.75rem;
}

.learning-path-section-leadership {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.path-decoration-1 {
  position: absolute;
  top: -100px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 0;
  pointer-events: none;
}

.path-decoration-2 {
  position: absolute;
  bottom: 100px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 0;
  pointer-events: none;
}

.path-decoration-3 {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(8, 145, 178, 0.04);
  border-radius: 50% 30% 70% 40% / 30% 50% 40% 70%;
  z-index: 0;
  pointer-events: none;
}

.path-header-leadership {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.path-tag-leadership {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(8, 145, 178, 0.1);
  color: #0891b2;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.path-title-leadership {
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.path-steps-leadership {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.path-step-leadership {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.path-step-leadership:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.path-step-number-leadership {
  font-size: 2rem;
  font-weight: 900;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

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

.path-step-title-leadership {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.path-step-text-leadership {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.65;
}

.skills-overview-section-leadership {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.skills-decoration-mesh {
  position: absolute;
  top: -150px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.skills-decoration-accent {
  position: absolute;
  bottom: 50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 0;
  pointer-events: none;
}

.skills-header-leadership {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.skills-tag-leadership {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.12);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.skills-title-leadership {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.skills-subtitle-leadership {
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.skill-card-leadership {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-card-leadership:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.skill-icon-leadership {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 10px;
  color: #60a5fa;
  font-size: 1.5rem;
}

.skill-card-title-leadership {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.skill-card-text-leadership {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-stats-leadership {
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .stat-number-leadership {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .hero-buttons-leadership {
    flex-direction: column;
  }

  .hero-buttons-leadership .btn {
    width: 100%;
    justify-content: center;
  }

  .posts-grid-leadership {
    flex-direction: column;
  }

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

  .path-step-leadership {
    flex-direction: column;
    gap: 1rem;
  }

  .path-step-number-leadership {
    font-size: 1.5rem;
    min-width: 40px;
  }

  .skills-grid-leadership {
    flex-direction: column;
  }

  .skill-card-leadership {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .posts-grid-leadership {
    flex-wrap: wrap;
  }

  .card-leadership {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .skills-grid-leadership {
    flex-wrap: wrap;
  }

  .skill-card-leadership {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

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

  .skill-card-leadership {
    flex: 1 1 280px;
  }
}

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

.main-effectief-delegeren-managers {
  width: 100%;
}

.hero-section-effectief-delegeren-managers {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.hero-content-effectief-delegeren-managers {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-block-effectief-delegeren-managers {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-title-effectief-delegeren-managers {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-effectief-delegeren-managers {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-meta-effectief-delegeren-managers {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta-badge-effectief-delegeren-managers {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-image-block-effectief-delegeren-managers {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-image-effectief-delegeren-managers {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.breadcrumbs-effectief-delegeren-managers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-effectief-delegeren-managers a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-effectief-delegeren-managers a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-effectief-delegeren-managers span {
  color: #94a3b8;
}

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

.intro-content-effectief-delegeren-managers {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-block-effectief-delegeren-managers {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-title-effectief-delegeren-managers {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.intro-description-effectief-delegeren-managers {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.intro-text-effectief-delegeren-managers {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

.intro-image-block-effectief-delegeren-managers {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-image-effectief-delegeren-managers {
  width: 100%;
  height: auto;
  max-width: 450px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

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

.principles-header-effectief-delegeren-managers {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-effectief-delegeren-managers {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-effectief-delegeren-managers {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.principles-subtitle-effectief-delegeren-managers {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.principles-cards-effectief-delegeren-managers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2rem);
}

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

.principles-card-effectief-delegeren-managers:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.principles-card-icon-effectief-delegeren-managers {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1.5rem;
}

.principles-card-title-effectief-delegeren-managers {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.principles-card-text-effectief-delegeren-managers {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.strategy-section-effectief-delegeren-managers {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategy-content-effectief-delegeren-managers {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategy-text-block-effectief-delegeren-managers {
  flex: 1 1 300px;
  min-width: 280px;
}

.strategy-title-effectief-delegeren-managers {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.strategy-description-effectief-delegeren-managers {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.strategy-text-effectief-delegeren-managers {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.strategy-quote-effectief-delegeren-managers {
  padding: 2rem 2.5rem;
  border-left: 4px solid #2563eb;
  background: #ffffff;
  margin: 2rem 0;
  border-radius: 4px;
}

.quote-text-effectief-delegeren-managers {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: #1e293b;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-effectief-delegeren-managers {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.strategy-image-block-effectief-delegeren-managers {
  flex: 1 1 300px;
  min-width: 280px;
}

.strategy-image-effectief-delegeren-managers {
  width: 100%;
  height: auto;
  max-width: 450px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.mistakes-section-effectief-delegeren-managers {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mistakes-header-effectief-delegeren-managers {
  text-align: center;
  margin-bottom: 3rem;
}

.mistakes-title-effectief-delegeren-managers {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.mistakes-subtitle-effectief-delegeren-managers {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.mistakes-content-effectief-delegeren-managers {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.mistakes-text-block-effectief-delegeren-managers {
  flex: 1 1 300px;
  min-width: 280px;
}

.mistakes-subheading-effectief-delegeren-managers {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin: 1.5rem 0 0.75rem 0;
  line-height: 1.3;
}

.mistakes-text-effectief-delegeren-managers {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.mistakes-image-block-effectief-delegeren-managers {
  flex: 1 1 300px;
  min-width: 280px;
}

.mistakes-image-effectief-delegeren-managers {
  width: 100%;
  height: auto;
  max-width: 450px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.tools-section-effectief-delegeren-managers {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-effectief-delegeren-managers {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-effectief-delegeren-managers {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-steps-effectief-delegeren-managers {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tools-step-effectief-delegeren-managers {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tools-step-effectief-delegeren-managers:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.tools-step-number-effectief-delegeren-managers {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.tools-step-content-effectief-delegeren-managers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.tools-step-title-effectief-delegeren-managers {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.tools-step-text-effectief-delegeren-managers {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tools-step-effectief-delegeren-managers {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .tools-step-number-effectief-delegeren-managers {
    min-width: auto;
  }
}

.impact-section-effectief-delegeren-managers {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.impact-content-effectief-delegeren-managers {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.impact-image-block-effectief-delegeren-managers {
  flex: 1 1 300px;
  min-width: 280px;
  order: -1;
}

.impact-image-effectief-delegeren-managers {
  width: 100%;
  height: auto;
  max-width: 450px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.impact-text-block-effectief-delegeren-managers {
  flex: 1 1 300px;
  min-width: 280px;
}

.impact-title-effectief-delegeren-managers {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.impact-description-effectief-delegeren-managers {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.impact-list-effectief-delegeren-managers {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.impact-list-item-effectief-delegeren-managers {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.impact-list-item-effectief-delegeren-managers::before {
  content: "";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.impact-list-item-effectief-delegeren-managers strong {
  color: #0f172a;
}

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

.conclusion-content-effectief-delegeren-managers {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-effectief-delegeren-managers {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-effectief-delegeren-managers {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-effectief-delegeren-managers {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-top: 2rem;
}

.cta-heading-effectief-delegeren-managers {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cta-text-effectief-delegeren-managers {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-effectief-delegeren-managers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-effectief-delegeren-managers:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.disclaimer-section-effectief-delegeren-managers {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-effectief-delegeren-managers {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-effectief-delegeren-managers {
  font-size: 1.25rem;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-effectief-delegeren-managers {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #cbd5e1;
}

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

.related-header-effectief-delegeren-managers {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-effectief-delegeren-managers {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

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

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

.related-card-effectief-delegeren-managers {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-effectief-delegeren-managers:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.related-card-image-effectief-delegeren-managers {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-img-effectief-delegeren-managers {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-effectief-delegeren-managers {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-effectief-delegeren-managers {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-effectief-delegeren-managers {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content-effectief-delegeren-managers,
  .intro-content-effectief-delegeren-managers,
  .strategy-content-effectief-delegeren-managers,
  .mistakes-content-effectief-delegeren-managers,
  .impact-content-effectief-delegeren-managers {
    flex-direction: column;
  }

  .impact-image-block-effectief-delegeren-managers {
    order: 0;
  }

  .principles-cards-effectief-delegeren-managers,
  .related-cards-effectief-delegeren-managers {
    flex-direction: column;
    align-items: center;
  }

  .principles-card-effectief-delegeren-managers,
  .related-card-effectief-delegeren-managers {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-teamcultuur-opbouwen-wint {
  width: 100%;
  margin: 0 auto;
}

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

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

.breadcrumbs-teamcultuur-opbouwen-wint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-teamcultuur-opbouwen-wint a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-teamcultuur-opbouwen-wint a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-teamcultuur-opbouwen-wint span {
  color: #cbd5e1;
}

.hero-section-teamcultuur-opbouwen-wint {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
}

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

.hero-text-block-teamcultuur-opbouwen-wint {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-teamcultuur-opbouwen-wint {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-teamcultuur-opbouwen-wint {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-meta-teamcultuur-opbouwen-wint {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-teamcultuur-opbouwen-wint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-teamcultuur-opbouwen-wint i {
  color: #3b82f6;
}

.hero-image-block-teamcultuur-opbouwen-wint {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-teamcultuur-opbouwen-wint {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .hero-content-teamcultuur-opbouwen-wint {
    flex-direction: column;
  }
  
  .hero-text-block-teamcultuur-opbouwen-wint,
  .hero-image-block-teamcultuur-opbouwen-wint {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-teamcultuur-opbouwen-wint {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

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

.intro-text-teamcultuur-opbouwen-wint {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-heading-teamcultuur-opbouwen-wint {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-teamcultuur-opbouwen-wint {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-image-teamcultuur-opbouwen-wint {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.foundations-section-teamcultuur-opbouwen-wint {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-header-teamcultuur-opbouwen-wint {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-teamcultuur-opbouwen-wint {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.foundations-title-teamcultuur-opbouwen-wint {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-teamcultuur-opbouwen-wint {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.foundations-wrapper-teamcultuur-opbouwen-wint {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.foundations-text-teamcultuur-opbouwen-wint {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-subheading-teamcultuur-opbouwen-wint {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.foundations-paragraph-teamcultuur-opbouwen-wint {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.foundations-image-teamcultuur-opbouwen-wint {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-image-teamcultuur-opbouwen-wint img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .foundations-wrapper-teamcultuur-opbouwen-wint {
    flex-direction: column;
  }
  
  .foundations-text-teamcultuur-opbouwen-wint,
  .foundations-image-teamcultuur-opbouwen-wint {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-teamcultuur-opbouwen-wint {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.implementation-title-teamcultuur-opbouwen-wint {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.steps-container-teamcultuur-opbouwen-wint {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-teamcultuur-opbouwen-wint {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item-teamcultuur-opbouwen-wint:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

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

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

.step-title-teamcultuur-opbouwen-wint {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.step-text-teamcultuur-opbouwen-wint {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-item-teamcultuur-opbouwen-wint {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .step-number-teamcultuur-opbouwen-wint {
    min-width: auto;
  }
}

.strategies-section-teamcultuur-opbouwen-wint {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

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

.strategies-image-teamcultuur-opbouwen-wint {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-image-img-teamcultuur-opbouwen-wint {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.strategies-text-teamcultuur-opbouwen-wint {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-heading-teamcultuur-opbouwen-wint {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.strategy-point-teamcultuur-opbouwen-wint {
  margin-bottom: 2rem;
}

.strategy-point-teamcultuur-opbouwen-wint:last-child {
  margin-bottom: 0;
}

.strategy-title-teamcultuur-opbouwen-wint {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.strategy-text-teamcultuur-opbouwen-wint {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .strategies-wrapper-teamcultuur-opbouwen-wint {
    flex-direction: column;
  }
  
  .strategies-image-teamcultuur-opbouwen-wint,
  .strategies-text-teamcultuur-opbouwen-wint {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-section-teamcultuur-opbouwen-wint {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.challenges-title-teamcultuur-opbouwen-wint {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.challenges-wrapper-teamcultuur-opbouwen-wint {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenges-text-teamcultuur-opbouwen-wint {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-subheading-teamcultuur-opbouwen-wint {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.challenges-paragraph-teamcultuur-opbouwen-wint {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.challenges-image-teamcultuur-opbouwen-wint {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-img-teamcultuur-opbouwen-wint {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .challenges-wrapper-teamcultuur-opbouwen-wint {
    flex-direction: column;
  }
  
  .challenges-text-teamcultuur-opbouwen-wint,
  .challenges-image-teamcultuur-opbouwen-wint {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.impact-section-teamcultuur-opbouwen-wint {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.impact-content-teamcultuur-opbouwen-wint {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.impact-text-teamcultuur-opbouwen-wint {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-title-teamcultuur-opbouwen-wint {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.impact-paragraph-teamcultuur-opbouwen-wint {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.impact-quote-teamcultuur-opbouwen-wint {
  padding: 2rem;
  border-left: 4px solid #3b82f6;
  background: #eff6ff;
  margin: 2rem 0;
  border-radius: 8px;
}

.impact-quote-text-teamcultuur-opbouwen-wint {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.impact-quote-author-teamcultuur-opbouwen-wint {
  font-size: 0.875rem;
  color: #475569;
  font-style: normal;
}

.impact-image-teamcultuur-opbouwen-wint {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-image-img-teamcultuur-opbouwen-wint {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .impact-content-teamcultuur-opbouwen-wint {
    flex-direction: column;
  }
  
  .impact-text-teamcultuur-opbouwen-wint,
  .impact-image-teamcultuur-opbouwen-wint {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-teamcultuur-opbouwen-wint {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.conclusion-content-teamcultuur-opbouwen-wint {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-teamcultuur-opbouwen-wint {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.conclusion-cta-teamcultuur-opbouwen-wint {
  margin-top: 2rem;
}

.cta-button-teamcultuur-opbouwen-wint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #3b82f6;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.2);
}

.cta-button-teamcultuur-opbouwen-wint:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(59, 130, 246, 0.3);
}

.related-section-teamcultuur-opbouwen-wint {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.related-title-teamcultuur-opbouwen-wint {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-teamcultuur-opbouwen-wint {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

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

.related-card-teamcultuur-opbouwen-wint {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.related-card-teamcultuur-opbouwen-wint:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.related-card-image-teamcultuur-opbouwen-wint {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-title-teamcultuur-opbouwen-wint {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.related-card-text-teamcultuur-opbouwen-wint {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #475569;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-teamcultuur-opbouwen-wint {
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  color: #3b82f6;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.related-card-link-teamcultuur-opbouwen-wint:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

.disclaimer-section-teamcultuur-opbouwen-wint {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-box-teamcultuur-opbouwen-wint {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid #0891b2;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.disclaimer-title-teamcultuur-opbouwen-wint {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-teamcultuur-opbouwen-wint {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-section-teamcultuur-opbouwen-wint {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .intro-section-teamcultuur-opbouwen-wint,
  .foundations-section-teamcultuur-opbouwen-wint,
  .implementation-section-teamcultuur-opbouwen-wint,
  .strategies-section-teamcultuur-opbouwen-wint,
  .challenges-section-teamcultuur-opbouwen-wint,
  .impact-section-teamcultuur-opbouwen-wint,
  .conclusion-section-teamcultuur-opbouwen-wint,
  .related-section-teamcultuur-opbouwen-wint {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-teamcultuur-opbouwen-wint {
    margin-bottom: 1.5rem;
  }

  .meta-badge-teamcultuur-opbouwen-wint {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .step-item-teamcultuur-opbouwen-wint {
    padding: 1rem;
    gap: 1rem;
  }

  .step-number-teamcultuur-opbouwen-wint {
    font-size: 1.75rem;
    min-width: 60px;
  }
}

.main-strategische-planningsgids {
  width: 100%;
  background: #ffffff;
}

.main-strategische-planningsgids section {
  width: 100%;
  overflow: hidden;
}

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

.breadcrumbs-strategische-planningsgids {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #64748b;
}

.breadcrumbs-strategische-planningsgids a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-strategische-planningsgids a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.hero-section-strategische-planningsgids {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-bottom: 1px solid #e2e8f0;
}

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

.hero-text-wrapper-strategische-planningsgids {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-strategische-planningsgids {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-strategische-planningsgids {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-strategische-planningsgids {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-strategische-planningsgids i {
  font-size: 1rem;
}

.hero-image-wrapper-strategische-planningsgids {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-strategische-planningsgids {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-strategische-planningsgids {
    flex-direction: column;
  }

  .hero-text-wrapper-strategische-planningsgids,
  .hero-image-wrapper-strategische-planningsgids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

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

.intro-description-strategische-planningsgids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.intro-image-strategische-planningsgids {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-element-strategische-planningsgids {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-strategische-planningsgids {
    flex-direction: column;
  }

  .intro-text-strategische-planningsgids,
  .intro-image-strategische-planningsgids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.framework-section-strategische-planningsgids {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
}

.framework-header-strategische-planningsgids {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-strategische-planningsgids {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.framework-title-strategische-planningsgids {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto;
}

.framework-steps-strategische-planningsgids {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.framework-step-strategische-planningsgids {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

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

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

.framework-step-title-strategische-planningsgids {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.framework-step-text-strategische-planningsgids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .framework-step-strategische-planningsgids {
    flex-direction: column;
    gap: 1rem;
  }
}

.implementation-section-strategische-planningsgids {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.implementation-image-strategische-planningsgids {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.implementation-image-element-strategische-planningsgids {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.implementation-text-strategische-planningsgids {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.implementation-description-strategische-planningsgids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.implementation-highlight-strategische-planningsgids {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #0891b2;
  border-radius: 8px;
}

.highlight-text-strategische-planningsgids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #0f172a;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 768px) {
  .implementation-wrapper-strategische-planningsgids {
    flex-direction: column;
  }

  .implementation-image-strategische-planningsgids,
  .implementation-text-strategische-planningsgids {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.tools-section-strategische-planningsgids {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
}

.tools-header-strategische-planningsgids {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.tools-cards-strategische-planningsgids {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

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

.tools-card-strategische-planningsgids:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tools-card-icon-strategische-planningsgids {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 10px;
  font-size: 1.5rem;
}

.tools-card-title-strategische-planningsgids {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.tools-card-text-strategische-planningsgids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

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

.challenges-section-strategische-planningsgids {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.challenges-wrapper-strategische-planningsgids {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.challenges-text-strategische-planningsgids {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.challenges-description-strategische-planningsgids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.challenge-item-strategische-planningsgids {
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 3px solid #f97316;
}

.challenge-item-title-strategische-planningsgids {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.challenge-item-text-strategische-planningsgids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

.challenges-image-strategische-planningsgids {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-element-strategische-planningsgids {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .challenges-wrapper-strategische-planningsgids {
    flex-direction: column;
  }

  .challenges-text-strategische-planningsgids,
  .challenges-image-strategische-planningsgids {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-strategische-planningsgids {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
}

.conclusion-content-strategische-planningsgids {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conclusion-title-strategische-planningsgids {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
}

.conclusion-quote-strategische-planningsgids {
  padding: 2rem;
  border-left: 4px solid #2563eb;
  background: #f8fafc;
  border-radius: 8px;
  margin: 1rem 0;
}

.quote-text-strategische-planningsgids {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #0f172a;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.conclusion-description-strategische-planningsgids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  text-align: center;
}

.conclusion-steps-strategische-planningsgids {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1rem 0;
}

.conclusion-step-strategische-planningsgids {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #eff6ff;
  border-radius: 10px;
  align-items: center;
  text-align: center;
}

.step-number-strategische-planningsgids {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.step-text-strategische-planningsgids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #0f172a;
  line-height: 1.5;
  font-weight: 500;
}

.conclusion-final-strategische-planningsgids {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 768px) {
  .conclusion-steps-strategische-planningsgids {
    flex-direction: column;
  }

  .conclusion-step-strategische-planningsgids {
    flex: 1 1 100%;
  }
}

.disclaimer-section-strategische-planningsgids {
  background: #f0fdf4;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid #dcfce7;
}

.disclaimer-content-strategische-planningsgids {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #10b981;
}

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

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

.related-section-strategische-planningsgids {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
}

.related-header-strategische-planningsgids {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.related-card-strategische-planningsgids {
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-strategische-planningsgids:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.related-card-image-strategische-planningsgids {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-strategische-planningsgids {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-strategische-planningsgids {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

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

  .framework-section-strategische-planningsgids {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .implementation-section-strategische-planningsgids {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .tools-section-strategische-planningsgids {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .challenges-section-strategische-planningsgids {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .conclusion-section-strategische-planningsgids {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-strategische-planningsgids {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

.main-luistervaardigheden-beheersen {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-section-luistervaardigheden-beheersen {
  background: linear-gradient(135deg, #0f172a 0%, #1a2744 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.hero-section-luistervaardigheden-beheersen::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content-luistervaardigheden-beheersen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text-block-luistervaardigheden-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-image-block-luistervaardigheden-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-luistervaardigheden-beheersen {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-luistervaardigheden-beheersen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.hero-meta-luistervaardigheden-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

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

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

.hero-image-luistervaardigheden-beheersen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.breadcrumbs-luistervaardigheden-beheersen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.breadcrumbs-luistervaardigheden-beheersen a {
  color: #93c5fd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-luistervaardigheden-beheersen a:hover {
  color: #ffffff;
}

.breadcrumbs-luistervaardigheden-beheersen span {
  color: #64748b;
}

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

.introduction-section-luistervaardigheden-beheersen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

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

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

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

.introduction-image-luistervaardigheden-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-luistervaardigheden-beheersen img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

.core-principles-section-luistervaardigheden-beheersen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.core-principles-header-luistervaardigheden-beheersen {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-luistervaardigheden-beheersen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.core-principles-title-luistervaardigheden-beheersen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

.principles-steps-luistervaardigheden-beheersen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principles-step-luistervaardigheden-beheersen {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.principles-step-number-luistervaardigheden-beheersen {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.principles-step-content-luistervaardigheden-beheersen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.principles-step-text-luistervaardigheden-beheersen {
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .principles-step-luistervaardigheden-beheersen {
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .principles-step-number-luistervaardigheden-beheersen {
    min-width: 60px;
  }
}

.benefits-section-luistervaardigheden-beheersen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.benefits-wrapper-luistervaardigheden-beheersen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.benefits-text-luistervaardigheden-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.benefits-list-luistervaardigheden-beheersen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item-luistervaardigheden-beheersen {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: #1e293b;
}

.benefit-icon-luistervaardigheden-beheersen {
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-text-luistervaardigheden-beheersen {
  color: #475569;
}

.benefits-image-luistervaardigheden-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-luistervaardigheden-beheersen img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

.barriers-section-luistervaardigheden-beheersen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.barriers-header-luistervaardigheden-beheersen {
  text-align: center;
  margin-bottom: 3rem;
}

.barriers-title-luistervaardigheden-beheersen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

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

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

.barriers-card-luistervaardigheden-beheersen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.barriers-card-title-luistervaardigheden-beheersen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
}

.barriers-card-text-luistervaardigheden-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

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

.featured-quote-section-luistervaardigheden-beheersen {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-quote-luistervaardigheden-beheersen {
  max-width: 800px;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin: 0;
}

.featured-quote-text-luistervaardigheden-beheersen {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.featured-quote-cite-luistervaardigheden-beheersen {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

.implementation-section-luistervaardigheden-beheersen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.implementation-image-luistervaardigheden-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-luistervaardigheden-beheersen img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.implementation-text-luistervaardigheden-beheersen {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.implementation-cta-luistervaardigheden-beheersen {
  margin-top: 1rem;
}

.btn-primary-luistervaardigheden-beheersen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #2563eb;
  color: #ffffff;
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1.0625rem);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary-luistervaardigheden-beheersen:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

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

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

.conclusion-content-luistervaardigheden-beheersen {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

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

.conclusion-text-luistervaardigheden-beheersen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
}

.conclusion-highlight-luistervaardigheden-beheersen {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(8, 145, 178, 0.1) 100%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  margin-top: 1rem;
}

.conclusion-highlight-text-luistervaardigheden-beheersen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.disclaimer-section-luistervaardigheden-beheersen {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-luistervaardigheden-beheersen {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f0f9ff;
  border-radius: 12px;
  border-left: 4px solid #0284c7;
}

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

.disclaimer-text-luistervaardigheden-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #0c4a6e;
  line-height: 1.8;
  margin: 0;
}

.related-posts-section-luistervaardigheden-beheersen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.related-posts-title-luistervaardigheden-beheersen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

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

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

.related-post-card-luistervaardigheden-beheersen {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card-luistervaardigheden-beheersen:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.related-post-image-luistervaardigheden-beheersen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-post-img-luistervaardigheden-beheersen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-post-content-luistervaardigheden-beheersen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-post-title-luistervaardigheden-beheersen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.related-post-description-luistervaardigheden-beheersen {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.related-post-link-luistervaardigheden-beheersen {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-post-link-luistervaardigheden-beheersen:hover {
  color: #1d4ed8;
}

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

@media (min-width: 768px) {
  .hero-section-luistervaardigheden-beheersen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .introduction-section-luistervaardigheden-beheersen,
  .benefits-section-luistervaardigheden-beheersen,
  .implementation-section-luistervaardigheden-beheersen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-luistervaardigheden-beheersen {
    padding: 6rem 0;
  }
  
  .introduction-section-luistervaardigheden-beheersen,
  .core-principles-section-luistervaardigheden-beheersen,
  .benefits-section-luistervaardigheden-beheersen,
  .barriers-section-luistervaardigheden-beheersen,
  .featured-quote-section-luistervaardigheden-beheersen,
  .implementation-section-luistervaardigheden-beheersen,
  .conclusion-section-luistervaardigheden-beheersen,
  .disclaimer-section-luistervaardigheden-beheersen,
  .related-posts-section-luistervaardigheden-beheersen {
    padding: 6rem 0;
  }
}

.main-feedback-prestatiebeheer {
  width: 100%;
}

.hero-section-feedback-prestatiebeheer {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-block-feedback-prestatiebeheer {
  flex: 1 1 45%;
  max-width: 50%;
}

.hero-image-block-feedback-prestatiebeheer {
  flex: 1 1 55%;
  max-width: 50%;
}

.breadcrumbs-feedback-prestatiebeheer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-feedback-prestatiebeheer a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-feedback-prestatiebeheer a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumbs-feedback-prestatiebeheer span {
  color: #94a3b8;
}

.hero-title-feedback-prestatiebeheer {
  color: #0f172a;
  margin-bottom: 1rem;
}

.hero-subtitle-feedback-prestatiebeheer {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-description-feedback-prestatiebeheer {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-meta-feedback-prestatiebeheer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.meta-badge-feedback-prestatiebeheer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #dbeafe;
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-feedback-prestatiebeheer i {
  font-size: 0.9rem;
}

.hero-image-feedback-prestatiebeheer {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-feedback-prestatiebeheer {
    flex-direction: column;
  }

  .hero-text-block-feedback-prestatiebeheer,
  .hero-image-block-feedback-prestatiebeheer {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-feedback-prestatiebeheer {
    gap: 1rem;
  }
}

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

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

.intro-text-feedback-prestatiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-feedback-prestatiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-feedback-prestatiebeheer {
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.intro-content-feedback-prestatiebeheer {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-img-feedback-prestatiebeheer {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-wrapper-feedback-prestatiebeheer {
    flex-direction: column;
  }

  .intro-text-feedback-prestatiebeheer,
  .intro-image-feedback-prestatiebeheer {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.principles-header-feedback-prestatiebeheer {
  text-align: center;
  margin-bottom: 3rem;
}

.principles-tag-feedback-prestatiebeheer {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #dbeafe;
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.principles-title-feedback-prestatiebeheer {
  color: #0f172a;
  margin-bottom: 1rem;
  text-align: center;
}

.principles-subtitle-feedback-prestatiebeheer {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.principles-steps-feedback-prestatiebeheer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.principles-step-feedback-prestatiebeheer {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

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

.principles-step-content-feedback-prestatiebeheer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principles-step-title-feedback-prestatiebeheer {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.principles-step-text-feedback-prestatiebeheer {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .principles-step-feedback-prestatiebeheer {
    padding: 1.5rem;
    gap: 1rem;
  }

  .principles-step-number-feedback-prestatiebeheer {
    min-width: 50px;
  }
}

.methods-section-feedback-prestatiebeheer {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-wrapper-feedback-prestatiebeheer {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.methods-image-feedback-prestatiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-text-feedback-prestatiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-image-img-feedback-prestatiebeheer {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.methods-title-feedback-prestatiebeheer {
  color: #0f172a;
  margin-bottom: 2rem;
}

.methods-subheading-feedback-prestatiebeheer {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.methods-content-feedback-prestatiebeheer {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.methods-list-feedback-prestatiebeheer {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.methods-list-item-feedback-prestatiebeheer {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.methods-list-item-feedback-prestatiebeheer::before {
  content: "";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

@media (max-width: 768px) {
  .methods-wrapper-feedback-prestatiebeheer {
    flex-direction: column;
  }

  .methods-image-feedback-prestatiebeheer,
  .methods-text-feedback-prestatiebeheer {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.challenges-text-feedback-prestatiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-feedback-prestatiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-feedback-prestatiebeheer {
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.challenges-intro-feedback-prestatiebeheer {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.challenges-cards-feedback-prestatiebeheer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.challenges-card-feedback-prestatiebeheer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  flex: 1 1 100%;
}

.challenges-card-icon-feedback-prestatiebeheer {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  border-radius: 10px;
  color: #2563eb;
  font-size: 1.5rem;
}

.challenges-card-title-feedback-prestatiebeheer {
  color: #0f172a;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
}

.challenges-card-text-feedback-prestatiebeheer {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.challenges-image-img-feedback-prestatiebeheer {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .challenges-wrapper-feedback-prestatiebeheer {
    flex-direction: column;
  }

  .challenges-text-feedback-prestatiebeheer,
  .challenges-image-feedback-prestatiebeheer {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .challenges-card-feedback-prestatiebeheer {
    flex: 1 1 100%;
  }
}

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

.implementation-header-feedback-prestatiebeheer {
  text-align: center;
  margin-bottom: 3rem;
}

.implementation-title-feedback-prestatiebeheer {
  color: #0f172a;
  margin-bottom: 1rem;
  text-align: center;
}

.implementation-subtitle-feedback-prestatiebeheer {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

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

.implementation-text-feedback-prestatiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-feedback-prestatiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-content-feedback-prestatiebeheer {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.implementation-subheading-feedback-prestatiebeheer {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.implementation-image-img-feedback-prestatiebeheer {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .implementation-wrapper-feedback-prestatiebeheer {
    flex-direction: column;
  }

  .implementation-text-feedback-prestatiebeheer,
  .implementation-image-feedback-prestatiebeheer {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-feedback-prestatiebeheer {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-feedback-prestatiebeheer {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-feedback-prestatiebeheer {
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-quote-feedback-prestatiebeheer {
  padding: 2rem 2.5rem;
  border-left: 4px solid #2563eb;
  background: rgba(37, 99, 235, 0.1);
  margin: 2rem 0;
  border-radius: 8px;
}

.conclusion-quote-text-feedback-prestatiebeheer {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #f1f5f9;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

.conclusion-text-feedback-prestatiebeheer {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-cta-feedback-prestatiebeheer {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  text-align: center;
}

.conclusion-cta-title-feedback-prestatiebeheer {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
}

.conclusion-cta-text-feedback-prestatiebeheer {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.conclusion-btn-feedback-prestatiebeheer {
  background: #2563eb;
  color: #ffffff;
}

.conclusion-btn-feedback-prestatiebeheer:hover {
  background: #1d4ed8;
}

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

.related-header-feedback-prestatiebeheer {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-feedback-prestatiebeheer {
  color: #0f172a;
  margin-bottom: 1rem;
  text-align: center;
}

.related-subtitle-feedback-prestatiebeheer {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

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

.related-card-feedback-prestatiebeheer {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-feedback-prestatiebeheer:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image-feedback-prestatiebeheer {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8fafc;
}

.related-card-img-feedback-prestatiebeheer {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-feedback-prestatiebeheer {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-feedback-prestatiebeheer {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-feedback-prestatiebeheer {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-feedback-prestatiebeheer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
  margin-top: 0.5rem;
}

.related-card-link-feedback-prestatiebeheer:hover {
  color: #1d4ed8;
  transform: translateX(4px);
}

.related-card-link-feedback-prestatiebeheer i {
  font-size: 0.8rem;
}

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

.disclaimer-section-feedback-prestatiebeheer {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-feedback-prestatiebeheer {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.disclaimer-title-feedback-prestatiebeheer {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.disclaimer-text-feedback-prestatiebeheer {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 4vw, 1.5rem);
  }

  .hero-section-feedback-prestatiebeheer,
  .intro-section-feedback-prestatiebeheer,
  .principles-section-feedback-prestatiebeheer,
  .methods-section-feedback-prestatiebeheer,
  .challenges-section-feedback-prestatiebeheer,
  .implementation-section-feedback-prestatiebeheer,
  .conclusion-section-feedback-prestatiebeheer,
  .related-section-feedback-prestatiebeheer,
  .disclaimer-section-feedback-prestatiebeheer {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .hero-meta-feedback-prestatiebeheer {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .meta-badge-feedback-prestatiebeheer {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
  }
}

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

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0891b2;
  --color-accent-light: #dbeafe;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.08);
  --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;
  overflow-x: hidden;
}

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

.leadership-journey-about {
  background: var(--color-bg-primary);
}

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

.vision-hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
}

.vision-hero-section-about h1 {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.vision-hero-section-about .vision-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  line-height: 1.6;
}

.vision-hero-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  margin: 0 auto;
}

.vision-stats-row-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.vision-stat-item-about {
  flex: 0 1 auto;
  text-align: center;
}

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

.vision-stat-label-about {
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
  font-weight: 500;
}

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

.foundation-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.foundation-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.foundation-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundation-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.foundation-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.foundation-story-blocks-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.foundation-story-block-about {
  flex: 1 1 300px;
  max-width: 450px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.foundation-story-block-about h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.foundation-story-block-about p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

.methodology-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methodology-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.methodology-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  margin-top: clamp(2rem, 4vw, 2.5rem);
}

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

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

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

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

.methodology-step-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.methodology-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

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

.pillars-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.pillars-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.pillars-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pillars-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.pillars-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.pillars-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 2.5rem);
}

.pillar-card-about {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card-about:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pillar-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
  flex-shrink: 0;
}

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

.pillar-card-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.commitment-text-block-about {
  max-width: 750px;
  text-align: center;
}

.commitment-heading-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.commitment-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.commitment-featured-quote-about {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: var(--radius-md);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.commitment-featured-quote-about p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.commitment-quote-author-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 500;
}

.commitment-visual-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  margin: 0 auto;
}

.disclaimer-section-about {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-section-about h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-section-about h3 i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.disclaimer-section-about p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .vision-hero-content-about {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .methodology-step-about {
    flex-direction: column;
    gap: 1rem;
  }

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

  .pillars-cards-about {
    gap: 1.25rem;
  }

  .pillar-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .foundation-story-blocks-about {
    gap: 1rem;
  }

  .foundation-story-block-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .vision-stats-row-about {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (max-width: 480px) {
  .vision-stats-row-about {
    flex-direction: column;
    align-items: center;
  }

  .vision-stat-item-about {
    width: 100%;
  }
}

.leadership-docs {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

.privacy-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.privacy-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-hero-content .updated-date {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.privacy-content-section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.privacy-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.privacy-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.privacy-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.privacy-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 1.5rem;
}

.privacy-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section strong {
  color: #0f172a;
  font-weight: 600;
}

.contact-section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.contact-content p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.contact-label {
  font-weight: 600;
  color: #0f172a;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .privacy-hero-section {
    padding: 4rem 0;
  }

  .privacy-content-section {
    padding: 4rem 0;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .privacy-content-wrapper {
    gap: 3rem;
  }

  .privacy-section {
    gap: 1.5rem;
  }
}

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

  .privacy-content-section {
    padding: 6rem 0;
  }

  .contact-section {
    padding: 6rem 0;
  }
}

.thank-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  animation: scaleIn 0.6s ease-out;
}

.thank-icon i {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-primary);
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-checklist {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  margin: clamp(0.5rem, 1vw, 1rem) 0;
}

.checklist-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.0625rem);
  font-weight: 500;
  line-height: 1.5;
}

.checklist-item i {
  color: var(--color-primary);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

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

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

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

@media (min-width: 768px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    gap: 2.5rem;
  }

  .thank-checklist {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2.5rem;
  }

  .checklist-item {
    flex-basis: auto;
    width: auto;
  }
}

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

  .thank-content {
    gap: 3rem;
  }

  .thank-icon {
    animation: scaleInBounce 0.8s ease-out;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 10rem 0;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleInBounce {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  50% {
    opacity: 1;
  }
  75% {
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon,
  .btn {
    animation: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

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

@media (prefers-color-scheme: dark) {
  .thank-section {
    background: var(--color-bg-primary);
  }

  .thank-section h1 {
    color: var(--color-text-primary);
  }

  .thank-description {
    color: var(--color-text-secondary);
  }

  .thank-checklist {
    background: var(--color-bg-secondary);
  }

  .checklist-item {
    color: var(--color-text-primary);
  }
}

.error-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.error-illustration {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-code {
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
  text-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  width: clamp(15rem, 50vw, 30rem);
  height: clamp(15rem, 50vw, 30rem);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.error-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  font-family: var(--font-heading);
  margin: 0;
  letter-spacing: -0.01em;
}

.error-description {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  background: var(--color-bg-card);
  border: 2px solid var(--color-accent-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin: clamp(1rem, 3vw, 2rem) auto;
  max-width: 550px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.suggestion-label {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 1rem 0;
  letter-spacing: 0.5px;
}

.suggestion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.suggestion-list li {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestion-list i {
  color: var(--color-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.error-footer-text {
  margin-top: clamp(1.5rem, 4vw, 3rem);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
    min-height: 100vh;
  }

  .error-code {
    text-shadow: 0 6px 30px rgba(37, 99, 235, 0.2);
  }

  .btn {
    padding: 1rem 2.5rem;
  }

  .btn:hover {
    transform: translateY(-3px);
  }

  .error-suggestions {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .error-content {
    gap: 3rem;
  }

  .error-code-wrapper {
    margin-bottom: 2rem;
  }

  .error-decoration {
    width: 35rem;
    height: 35rem;
  }

  .btn {
    padding: 1.125rem 3rem;
    font-size: 1.0625rem;
  }

  .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  }

  .suggestion-list {
    gap: 1.25rem;
  }

  .error-suggestions {
    padding: 3rem;
    margin: 3rem auto;
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 8rem 0;
  }

  .error-content {
    gap: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .btn-primary:active {
    transform: none;
  }
}

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

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

@media print {
  .error-decoration {
    display: none;
  }

  .error-section {
    min-height: auto;
  }
}