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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-accent: #0f172a;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-primary-dark: #ffffff;
  --color-text-primary-light: #0f172a;
  --color-text-secondary-dark: #94a3b8;
  --color-text-secondary-light: #475569;
  --color-text-muted-dark: #64748b;
  --color-text-muted-light: #9ca3af;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #d1fae5;
  --color-secondary: #0ea5e9;
  --color-secondary-hover: #0284c7;
  --color-accent-warm: #f59e0b;
  
  
  --font-heading: 'DM Serif Display', serif;
  --font-primary: '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;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --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.15);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 400ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary-light);
  background: var(--color-bg-secondary);
}

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

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

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

h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: 1.875rem;
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

.section-hero {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-hero h1 {
  color: var(--color-text-primary-dark);
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
}

.section-hero p {
  color: var(--color-text-secondary-dark);
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  padding: var(--space-4xl) 0;
}

.section-light h2 {
  color: var(--color-text-primary-light);
}

.section-light p {
  color: var(--color-text-secondary-light);
}

.section-dark-accent {
  background: var(--color-bg-accent);
  color: var(--color-text-primary-dark);
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-dark-accent h2 {
  color: var(--color-text-primary-dark);
}

.section-dark-accent p {
  color: var(--color-text-secondary-dark);
}

.section-light-gray {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-light);
  padding: var(--space-4xl) 0;
}

.section-light-gray h2 {
  color: var(--color-text-primary-light);
}

.section-light-gray p {
  color: var(--color-text-secondary-light);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  text-decoration: none;
}

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

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

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

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

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

.btn-dark:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-light {
  background: #ffffff;
  color: var(--color-text-primary-light);
  border-color: #ffffff;
}

.btn-light:hover {
  background: var(--color-bg-tertiary);
  border-color: var(--color-text-primary-light);
}

.card {
  background: var(--color-bg-card-light);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card h3 {
  color: var(--color-text-primary-light);
}

.card p {
  color: var(--color-text-secondary-light);
}

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

.card-dark h3 {
  color: var(--color-text-primary-dark);
}

.card-dark p {
  color: var(--color-text-secondary-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.font-weight-400 { font-weight: 400; }
.font-weight-500 { font-weight: 500; }
.font-weight-600 { font-weight: 600; }
.font-weight-700 { font-weight: 700; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

.text-muted-dark { color: var(--color-text-muted-dark); }
.text-muted-light { color: var(--color-text-muted-light); }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }

.feature-block {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.section-dark-accent .feature-icon {
  background: rgba(16, 185, 129, 0.2);
}

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

.badge-primary {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(14, 165, 233, 0.1);
  color: var(--color-secondary);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-primary-dark);
}

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

.divider-dark {
  background: rgba(255, 255, 255, 0.1);
}

input,
textarea,
select {
  font-family: var(--font-primary);
  padding: var(--space-md);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: all var(--transition-base);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.section-dark-accent input,
.section-dark-accent textarea,
.section-dark-accent select {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-primary-dark);
}

.section-dark-accent input::placeholder {
  color: var(--color-text-muted-dark);
}

.section-dark-accent input:focus,
.section-dark-accent textarea:focus,
.section-dark-accent select:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.08);
}

ul, ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

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

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

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

.animate-fade-in {
  animation: fadeIn var(--transition-base);
}

.animate-slide-up {
  animation: slideUp var(--transition-slow);
}

.animate-slide-in-right {
  animation: slideInRight var(--transition-slow);
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section-hero {
    padding: var(--space-3xl) 0;
  }

  .section-light,
  .section-dark-accent,
  .section-light-gray {
    padding: var(--space-3xl) 0;
  }

  .feature-block {
    flex-direction: column;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  .btn {
    border: 1px solid #000000;
  }
}
.header-empower-deck {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  position: static;
  z-index: 100;
  width: 100%;
  overflow: hidden;
}

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

.header-empower-deck-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

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

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

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

.header-empower-deck-desktop-nav {
  display: none;
  flex-direction: row;
  gap: clamp(0.5rem, 2vw, 2rem);
  align-items: center;
}

.header-empower-deck-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

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

.header-empower-deck-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-empower-deck-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

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

.header-empower-deck-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  overflow-y: auto;
  padding-top: 3rem;
}

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

.header-empower-deck-mobile-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.header-empower-deck-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 1.75rem;
  cursor: pointer;
  transition: color var(--transition-fast);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.header-empower-deck-mobile-link {
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.05);
  transition: color var(--transition-fast);
}

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

.header-empower-deck-mobile-cta {
  display: block;
  margin: clamp(1rem, 3vw, 2rem) clamp(1rem, 4vw, 2rem);
  padding: 0.875rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-base);
}

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

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

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

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

  .header-empower-deck-cta-button {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .header-empower-deck-container {
    padding: 1.25rem clamp(1.5rem, 5vw, 3rem);
  }

  .header-empower-deck-desktop-nav {
    gap: 2.5rem;
  }

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

    .leadership-portal {
  width: 100%;
  overflow-x: hidden;
}

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

.hero-section-index::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-text-block-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 700px;
}

.hero-title-index {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  font-family: 'DM Serif Display', serif;
}

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

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

.hero-btn-primary-index {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.hero-btn-secondary-index {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #f59e0b;
  font-family: 'DM Serif Display', serif;
}

.hero-stat-label-index {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3b8;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-section-index {
    padding: 3rem 0;
  }

  .hero-ctas-index {
    flex-direction: column;
  }

  .hero-btn-primary-index,
  .hero-btn-secondary-index {
    width: 100%;
    text-align: center;
  }
}

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

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

.about-text-block-index {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-image-block-index {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  align-items: center;
}

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

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

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.about-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
}

.about-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.about-text-secondary-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

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

.about-list-item-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  padding-left: 1.75rem;
  position: relative;
}

.about-list-item-index::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
}

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

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

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

.features-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.features-header-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.features-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'DM Serif Display', serif;
}

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

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon-index {
  width: 60px;
  height: 60px;
  background: #d1fae5;
  color: #10b981;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto;
}

.feature-card-title-index {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

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

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

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

.process-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.process-header-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.process-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'DM Serif Display', serif;
}

.process-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  line-height: 1.8;
  margin: 0;
}

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

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

.step-number-index {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #f59e0b;
  font-family: 'DM Serif Display', serif;
  flex-shrink: 0;
  line-height: 1;
  min-width: 100px;
}

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

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

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

@media (max-width: 768px) {
  .process-step-index {
    gap: 1.5rem;
  }

  .step-number-index {
    min-width: 60px;
    font-size: 2rem;
  }
}

.faq-section-index {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.faq-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.faq-header-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.faq-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'DM Serif Display', serif;
}

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-index {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #10b981;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-question-index {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.faq-answer-index {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-items-index {
    gap: 1rem;
  }

  .faq-item-index {
    padding: 1.25rem;
  }
}

.blog-section-index {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.blog-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.blog-header-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.blog-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'DM Serif Display', serif;
}

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

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

.blog-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.blog-card-image-index {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

.blog-card-img-index {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body-index {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.blog-card-title-index {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

.blog-card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.blog-card-link-index {
  font-size: 0.9rem;
  color: #10b981;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-card-index:hover .blog-card-link-index {
  color: #059669;
  transform: translateX(4px);
}

.blog-footer-index {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.blog-see-all-index {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

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

.testimonials-section-index {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testimonials-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.testimonials-header-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'DM Serif Display', serif;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-quote-index {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.testimonial-author-index {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 600;
  margin: 0;
}

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

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

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

.cta-box-index {
  flex: 1 1 45%;
  min-width: 280px;
  background: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #ffffff;
}

.cta-title-index {
  font-size: clamp(1.5rem, 3vw + 0.25rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  font-family: 'DM Serif Display', serif;
}

.cta-text-index {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin: 0;
}

.cta-button-index {
  background: #ffffff;
  color: #10b981;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  width: fit-content;
  margin-top: 0.5rem;
}

.cta-button-index:hover {
  background: #f0fdf4;
  color: #059669;
}

.cta-info-index {
  flex: 1 1 45%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-info-item-index {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.cta-info-item-index i {
  font-size: 1.75rem;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cta-info-text-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta-info-title-index {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.cta-info-description-index {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

  .cta-box-index,
  .cta-info-index {
    flex: 1 1 100%;
  }
}

.resources-section-index {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.resources-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.resources-header-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.resources-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'DM Serif Display', serif;
}

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

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

.resource-item-index {
  flex: 1 1 280px;
  max-width: 340px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-item-index:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.resource-icon-index {
  font-size: 2.5rem;
  color: #10b981;
}

.resource-title-index {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.resource-text-index {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.resource-link-index {
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-link-index:hover {
  color: #059669;
  text-decoration: underline;
}

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

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

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

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

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept-index {
  background: #10b981;
  color: #ffffff;
}

.cookie-btn-accept-index:hover {
  background: #059669;
}

.cookie-btn-decline-index {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline-index:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1rem;
  }

  .cookie-banner-text-index {
    min-width: 100%;
  }

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

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

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

@media (max-width: 1024px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .leadership-portal {
    font-size: 15px;
  }
}

* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.footer-about h3 {
  color: var(--color-text-primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: -0.5px;
}

.footer-about p {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav {
  display: block;
}

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

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  display: block;
}

.footer-nav-list a {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  text-decoration: none;
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-contact {
  display: block;
}

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

.footer-contact p {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.8;
  margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-legal {
  display: block;
}

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

.footer-legal-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-list li {
  display: block;
}

.footer-legal-list a {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  text-decoration: none;
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

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

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2.5rem, 5vw, 4rem);
  }

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

  .footer-nav {
    flex: 1 1 160px;
  }

  .footer-contact {
    flex: 1 1 240px;
  }

  .footer-legal {
    flex: 1 1 160px;
  }

  .footer-copyright {
    flex: 1 1 100%;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    padding-top: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    gap: clamp(3rem, 5vw, 5rem);
  }

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

  .footer-nav {
    flex: 0 1 140px;
  }

  .footer-contact {
    flex: 0 1 260px;
  }

  .footer-legal {
    flex: 0 1 140px;
  }
}
    

.category-page-delegation-team-empowerment {
  width: 100%;
  overflow: hidden;
}

.hero-section-delegation-team-empowerment {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-delegation-team-empowerment::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content-delegation-team-empowerment {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-content-delegation-team-empowerment {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text-block-delegation-team-empowerment {
  flex: 1 1 100%;
  max-width: 600px;
}

@media (min-width: 1024px) {
  .hero-text-block-delegation-team-empowerment {
    flex: 1 1 50%;
    max-width: none;
  }
}

.hero-title-delegation-team-empowerment {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-delegation-team-empowerment {
  color: #10b981;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
}

.hero-description-delegation-team-empowerment {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 0;
}

.hero-visual-delegation-team-empowerment {
  flex: 1 1 100%;
  max-width: 500px;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-visual-delegation-team-empowerment {
    flex: 1 1 50%;
    max-width: none;
  }
}

.hero-image-delegation-team-empowerment {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.posts-section-delegation-team-empowerment {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.posts-header-delegation-team-empowerment {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.posts-title-delegation-team-empowerment {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.posts-subtitle-delegation-team-empowerment {
  color: #475569;
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  margin-bottom: 0;
}

.posts-grid-delegation-team-empowerment {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.card-delegation-team-empowerment {
  flex: 1 1 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  transition: all 0.3s ease;
}

.card-delegation-team-empowerment:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-image-delegation-team-empowerment {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.card-title-delegation-team-empowerment {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  margin-bottom: 0;
  line-height: 1.3;
}

.card-description-delegation-team-empowerment {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

.card-meta-delegation-team-empowerment {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  padding-top: clamp(0.75rem, 1.5vw, 1rem);
  border-top: 1px solid #e2e8f0;
}

.card-meta-item-delegation-team-empowerment {
  color: #64748b;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-meta-item-delegation-team-empowerment i {
  color: #10b981;
  font-size: 0.875rem;
}

.card-link-delegation-team-empowerment {
  color: #10b981;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.card-link-delegation-team-empowerment:hover {
  color: #059669;
  text-decoration: underline;
}

.principles-section-delegation-team-empowerment {
  background: #0f172a;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.principles-header-delegation-team-empowerment {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.principles-title-delegation-team-empowerment {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 0;
}

.principles-grid-delegation-team-empowerment {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.principle-card-delegation-team-empowerment {
  flex: 1 1 100%;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.principle-card-delegation-team-empowerment:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
}

.principle-number-delegation-team-empowerment {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
}

.principle-heading-delegation-team-empowerment {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  margin-bottom: 0;
  line-height: 1.3;
}

.principle-text-delegation-team-empowerment {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.benefits-section-delegation-team-empowerment {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.benefits-header-delegation-team-empowerment {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.benefits-title-delegation-team-empowerment {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.benefits-intro-delegation-team-empowerment {
  color: #475569;
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 0;
}

.benefits-list-delegation-team-empowerment {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefit-item-delegation-team-empowerment {
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-title-delegation-team-empowerment {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  margin-bottom: 0;
  font-weight: 600;
}

.benefit-text-delegation-team-empowerment {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-section-delegation-team-empowerment {
    padding: 2rem 0;
  }

  .hero-content-delegation-team-empowerment {
    gap: 2rem;
  }

  .posts-section-delegation-team-empowerment {
    padding: 2rem 0;
  }

  .principles-section-delegation-team-empowerment {
    padding: 2rem 0;
  }

  .benefits-section-delegation-team-empowerment {
    padding: 2rem 0;
  }

  .card-delegation-team-empowerment {
    max-width: 100%;
  }

  .principle-card-delegation-team-empowerment {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title-delegation-team-empowerment {
    font-size: 1.75rem;
  }

  .posts-title-delegation-team-empowerment {
    font-size: 1.5rem;
  }

  .principles-title-delegation-team-empowerment {
    font-size: 1.5rem;
  }

  .benefits-title-delegation-team-empowerment {
    font-size: 1.5rem;
  }

  .card-meta-delegation-team-empowerment {
    gap: 0.75rem;
  }

  .card-meta-item-delegation-team-empowerment {
    font-size: 0.75rem;
  }
}

.main-effectief-taken-delegeren {
  width: 100%;
  overflow: hidden;
}

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

.breadcrumbs-effectief-taken-delegeren {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-effectief-taken-delegeren a {
  color: #94a3b8;
  transition: color 250ms ease-in-out;
}

.breadcrumbs-effectief-taken-delegeren a:hover {
  color: #10b981;
}

.breadcrumbs-effectief-taken-delegeren span {
  color: #64748b;
}

.hero-section-effectief-taken-delegeren {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-effectief-taken-delegeren::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-text-block-effectief-taken-delegeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-effectief-taken-delegeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-effectief-taken-delegeren {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.hero-description-effectief-taken-delegeren {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 550px;
}

.hero-meta-effectief-taken-delegeren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-effectief-taken-delegeren {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #cbd5e1;
}

.meta-item-effectief-taken-delegeren i {
  color: #10b981;
}

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

@media (max-width: 768px) {
  .hero-content-effectief-taken-delegeren {
    flex-direction: column;
  }

  .hero-text-block-effectief-taken-delegeren,
  .hero-image-block-effectief-taken-delegeren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-effectief-taken-delegeren {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

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

.intro-text-block-effectief-taken-delegeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-effectief-taken-delegeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-effectief-taken-delegeren {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.intro-text-effectief-taken-delegeren {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-text-effectief-taken-delegeren:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 768px) {
  .intro-content-effectief-taken-delegeren {
    flex-direction: column;
  }

  .intro-text-block-effectief-taken-delegeren,
  .intro-image-block-effectief-taken-delegeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.principles-header-effectief-taken-delegeren {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-effectief-taken-delegeren {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.principles-title-effectief-taken-delegeren {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.2;
  font-weight: 700;
}

.principles-subtitle-effectief-taken-delegeren {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #64748b;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.principles-grid-effectief-taken-delegeren {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.principle-card-effectief-taken-delegeren {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
  max-width: 320px;
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
}

.principle-card-effectief-taken-delegeren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-icon-effectief-taken-delegeren {
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-title-effectief-taken-delegeren {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.card-text-effectief-taken-delegeren {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .principles-grid-effectief-taken-delegeren {
    flex-direction: column;
    align-items: stretch;
  }

  .principle-card-effectief-taken-delegeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.steps-header-effectief-taken-delegeren {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.steps-title-effectief-taken-delegeren {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.2;
  font-weight: 700;
}

.steps-list-effectief-taken-delegeren {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4.5rem);
}

.step-block-effectief-taken-delegeren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.step-block-effectief-taken-delegeren:nth-child(even) {
  flex-direction: row-reverse;
}

.step-text-effectief-taken-delegeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.step-image-effectief-taken-delegeren {
  flex: 1 1 50%;
  max-width: 50%;
}

.step-number-effectief-taken-delegeren {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title-effectief-taken-delegeren {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.2;
  font-weight: 700;
}

.step-text-content-effectief-taken-delegeren {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.step-image-img-effectief-taken-delegeren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .step-block-effectief-taken-delegeren,
  .step-block-effectief-taken-delegeren:nth-child(even) {
    flex-direction: column;
  }

  .step-text-effectief-taken-delegeren,
  .step-image-effectief-taken-delegeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tips-header-effectief-taken-delegeren {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.tips-title-effectief-taken-delegeren {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.2;
  font-weight: 700;
}

.tips-subtitle-effectief-taken-delegeren {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #64748b;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.tips-box-effectief-taken-delegeren {
  background: #f8fafc;
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tip-item-effectief-taken-delegeren {
  padding: 0;
}

.tip-heading-effectief-taken-delegeren {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.tip-text-effectief-taken-delegeren {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .tips-box-effectief-taken-delegeren {
    grid-template-columns: 1fr;
  }
}

.cta-section-effectief-taken-delegeren {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.cta-content-effectief-taken-delegeren {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-effectief-taken-delegeren {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.cta-text-effectief-taken-delegeren {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-button-effectief-taken-delegeren {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #10b981;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all 250ms ease-in-out;
  text-decoration: none;
}

.cta-button-effectief-taken-delegeren:hover {
  background: #059669;
  transform: translateY(-2px);
}

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

.disclaimer-content-effectief-taken-delegeren {
  max-width: 750px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.disclaimer-title-effectief-taken-delegeren {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-text-effectief-taken-delegeren {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #475569;
  line-height: 1.8;
}

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

.related-content-effectief-taken-delegeren {
  display: flex;
  flex-direction: column;
}

.related-title-effectief-taken-delegeren {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
}

.related-subtitle-effectief-taken-delegeren {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #94a3b8;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.6;
}

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

.related-card-effectief-taken-delegeren {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.667rem));
  max-width: 360px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
}

.related-card-effectief-taken-delegeren:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.card-image-wrapper-effectief-taken-delegeren {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(16, 185, 129, 0.05);
}

.card-image-effectief-taken-delegeren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease-in-out;
}

.related-card-effectief-taken-delegeren:hover .card-image-effectief-taken-delegeren {
  transform: scale(1.05);
}

.card-body-effectief-taken-delegeren {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-heading-effectief-taken-delegeren {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.card-description-effectief-taken-delegeren {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-link-effectief-taken-delegeren {
  color: #10b981;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  transition: all 250ms ease-in-out;
  text-decoration: none;
}

.card-link-effectief-taken-delegeren:hover {
  color: #059669;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-effectief-taken-delegeren {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .related-cards-effectief-taken-delegeren {
    flex-direction: column;
    align-items: stretch;
  }

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

.main-teamversterking-autonomie {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-teamversterking-autonomie {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-section-teamversterking-autonomie::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.breadcrumbs-teamversterking-autonomie {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

.breadcrumbs-teamversterking-autonomie a {
  color: #10b981;
  text-decoration: none;
  transition: color 250ms ease-in-out;
}

.breadcrumbs-teamversterking-autonomie a:hover {
  color: #059669;
}

.breadcrumbs-teamversterking-autonomie span {
  color: #64748b;
}

.breadcrumbs-teamversterking-autonomie > span:last-child {
  color: #94a3b8;
}

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

.hero-text-teamversterking-autonomie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-teamversterking-autonomie {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-teamversterking-autonomie {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.6;
}

.hero-meta-teamversterking-autonomie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.meta-item-teamversterking-autonomie {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-teamversterking-autonomie i {
  color: #10b981;
  width: 18px;
}

.hero-image-teamversterking-autonomie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-teamversterking-autonomie {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

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

.intro-text-teamversterking-autonomie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-teamversterking-autonomie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-teamversterking-autonomie {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-teamversterking-autonomie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-teamversterking-autonomie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.principles-section-teamversterking-autonomie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-content-teamversterking-autonomie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.principles-image-teamversterking-autonomie {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.principles-img-teamversterking-autonomie {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.principles-text-teamversterking-autonomie {
  flex: 1 1 50%;
  max-width: 50%;
}

.principles-title-teamversterking-autonomie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principle-item-teamversterking-autonomie {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.principle-heading-teamversterking-autonomie {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.principle-text-teamversterking-autonomie {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.implementation-section-teamversterking-autonomie {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-content-teamversterking-autonomie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-teamversterking-autonomie {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-teamversterking-autonomie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-box-teamversterking-autonomie {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-teamversterking-autonomie {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  flex-shrink: 0;
  min-width: 80px;
}

.step-details-teamversterking-autonomie {
  flex: 1;
}

.step-title-teamversterking-autonomie {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-text-teamversterking-autonomie {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #94a3b8;
  line-height: 1.8;
}

.implementation-image-teamversterking-autonomie {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-teamversterking-autonomie {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

.challenges-content-teamversterking-autonomie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.challenges-image-teamversterking-autonomie {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-img-teamversterking-autonomie {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.challenges-text-teamversterking-autonomie {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-teamversterking-autonomie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.challenge-item-teamversterking-autonomie {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.challenge-heading-teamversterking-autonomie {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.challenge-text-teamversterking-autonomie {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.results-section-teamversterking-autonomie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.results-content-teamversterking-autonomie {
  text-align: center;
}

.results-title-teamversterking-autonomie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.results-cards-teamversterking-autonomie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.result-card-teamversterking-autonomie {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 320px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 250ms ease-in-out;
}

.result-card-teamversterking-autonomie:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.result-icon-teamversterking-autonomie {
  width: 60px;
  height: 60px;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  border-radius: 12px;
  background: #d1fae5;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.result-card-title-teamversterking-autonomie {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.result-card-text-teamversterking-autonomie {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

.closing-section-teamversterking-autonomie {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.closing-content-teamversterking-autonomie {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.closing-title-teamversterking-autonomie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.closing-text-teamversterking-autonomie {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.closing-cta-teamversterking-autonomie {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.cta-title-teamversterking-autonomie {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-text-teamversterking-autonomie {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.cta-button-teamversterking-autonomie {
  display: inline-block;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  background: #10b981;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 250ms ease-in-out;
}

.cta-button-teamversterking-autonomie:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(16, 185, 129, 0.2);
}

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

.related-content-teamversterking-autonomie {
  text-align: center;
}

.related-title-teamversterking-autonomie {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-teamversterking-autonomie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-teamversterking-autonomie {
  flex: 1 1 calc(33.33% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 250ms ease-in-out;
  text-align: left;
}

.related-card-teamversterking-autonomie:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

.related-img-teamversterking-autonomie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-teamversterking-autonomie {
  padding: clamp(1.5rem, 2vw, 2rem);
}

.related-card-title-teamversterking-autonomie {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-teamversterking-autonomie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-card-link-teamversterking-autonomie {
  display: inline-block;
  color: #10b981;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color 250ms ease-in-out;
}

.related-card-link-teamversterking-autonomie:hover {
  color: #059669;
}

.disclaimer-section-teamversterking-autonomie {
  background: #f8fafc;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-teamversterking-autonomie {
  max-width: 800px;
  margin: 0 auto;
}

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

.disclaimer-text-teamversterking-autonomie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-content-teamversterking-autonomie,
  .intro-content-teamversterking-autonomie,
  .principles-content-teamversterking-autonomie,
  .implementation-content-teamversterking-autonomie,
  .challenges-content-teamversterking-autonomie {
    flex-direction: column;
  }

  .hero-text-teamversterking-autonomie,
  .intro-text-teamversterking-autonomie,
  .principles-text-teamversterking-autonomie,
  .implementation-text-teamversterking-autonomie,
  .challenges-text-teamversterking-autonomie,
  .hero-image-teamversterking-autonomie,
  .intro-image-teamversterking-autonomie,
  .principles-image-teamversterking-autonomie,
  .implementation-image-teamversterking-autonomie,
  .challenges-image-teamversterking-autonomie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principles-content-teamversterking-autonomie {
    flex-direction: column;
  }

  .principles-image-teamversterking-autonomie {
    order: 0;
  }

  .result-card-teamversterking-autonomie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-teamversterking-autonomie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-box-teamversterking-autonomie {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-teamversterking-autonomie {
    min-width: auto;
  }
}

@media (max-width: 1024px) {
  .result-card-teamversterking-autonomie {
    flex: 1 1 calc(50% - 0.75rem);
  }

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

.main-verdeelde-leiderschap {
  width: 100%;
  background: #ffffff;
}

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

.hero-content-verdeelde-leiderschap {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .hero-content-verdeelde-leiderschap {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 6vw, 5rem);
  }
}

.hero-text-wrapper-verdeelde-leiderschap {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-text-wrapper-verdeelde-leiderschap {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.breadcrumbs-verdeelde-leiderschap {
  display: flex;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  color: #94a3b8;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-verdeelde-leiderschap a {
  color: #10b981;
  text-decoration: none;
  transition: color 250ms ease-in-out;
}

.breadcrumbs-verdeelde-leiderschap a:hover {
  color: #059669;
  text-decoration: underline;
}

.breadcrumbs-verdeelde-leiderschap span {
  color: #94a3b8;
}

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

.hero-subtitle-verdeelde-leiderschap {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-verdeelde-leiderschap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
}

.meta-item-verdeelde-leiderschap {
  color: #94a3b8;
}

.meta-divider-verdeelde-leiderschap {
  color: #64748b;
}

.hero-image-wrapper-verdeelde-leiderschap {
  flex: 1 1 100%;
  max-width: 100%;
  min-height: 300px;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
}

@media (min-width: 1024px) {
  .hero-image-wrapper-verdeelde-leiderschap {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.hero-image-verdeelde-leiderschap {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-section-verdeelde-leiderschap {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-verdeelde-leiderschap {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .intro-content-verdeelde-leiderschap {
    flex-direction: row;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: flex-start;
  }
}

.intro-text-verdeelde-leiderschap {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .intro-text-verdeelde-leiderschap {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-title-verdeelde-leiderschap {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-verdeelde-leiderschap {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-highlight-verdeelde-leiderschap {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .intro-highlight-verdeelde-leiderschap {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.highlight-box-verdeelde-leiderschap {
  background: #f8fafc;
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
}

.highlight-title-verdeelde-leiderschap {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.highlight-list-verdeelde-leiderschap {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-item-verdeelde-leiderschap {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.highlight-item-verdeelde-leiderschap::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.content-section-one-verdeelde-leiderschap {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-verdeelde-leiderschap {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .content-wrapper-one-verdeelde-leiderschap {
    flex-direction: row;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
  }
}

.content-text-one-verdeelde-leiderschap {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .content-text-one-verdeelde-leiderschap {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.content-title-one-verdeelde-leiderschap {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-one-verdeelde-leiderschap {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-image-one-verdeelde-leiderschap {
  flex: 1 1 100%;
  max-width: 100%;
  min-height: 300px;
  max-height: 450px;
  overflow: hidden;
  border-radius: 12px;
}

@media (min-width: 1024px) {
  .content-image-one-verdeelde-leiderschap {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.content-img-verdeelde-leiderschap {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.content-section-two-verdeelde-leiderschap {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-verdeelde-leiderschap {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .content-wrapper-two-verdeelde-leiderschap {
    flex-direction: row;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
  }
}

.content-image-two-verdeelde-leiderschap {
  flex: 1 1 100%;
  max-width: 100%;
  min-height: 300px;
  max-height: 450px;
  overflow: hidden;
  border-radius: 12px;
  order: 2;
}

@media (min-width: 1024px) {
  .content-image-two-verdeelde-leiderschap {
    flex: 1 1 50%;
    max-width: 50%;
    order: 1;
  }
}

.content-text-two-verdeelde-leiderschap {
  flex: 1 1 100%;
  max-width: 100%;
  order: 1;
}

@media (min-width: 1024px) {
  .content-text-two-verdeelde-leiderschap {
    flex: 1 1 50%;
    max-width: 50%;
    order: 2;
  }
}

.content-title-two-verdeelde-leiderschap {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-two-verdeelde-leiderschap {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-section-verdeelde-leiderschap {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-content-verdeelde-leiderschap {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.benefits-title-verdeelde-leiderschap {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-intro-verdeelde-leiderschap {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-grid-verdeelde-leiderschap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.benefit-card-verdeelde-leiderschap {
  flex: 1 1 100%;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 250ms ease-in-out;
}

.benefit-card-verdeelde-leiderschap:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #10b981;
  transform: translateY(-4px);
}

.benefit-card-title-verdeelde-leiderschap {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefit-card-text-verdeelde-leiderschap {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.challenges-section-verdeelde-leiderschap {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-wrapper-verdeelde-leiderschap {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .challenges-wrapper-verdeelde-leiderschap {
    flex-direction: row;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
  }
}

.challenges-text-verdeelde-leiderschap {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .challenges-text-verdeelde-leiderschap {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.challenges-title-verdeelde-leiderschap {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.challenges-paragraph-verdeelde-leiderschap {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.challenges-image-verdeelde-leiderschap {
  flex: 1 1 100%;
  max-width: 100%;
  min-height: 300px;
  max-height: 450px;
  overflow: hidden;
  border-radius: 12px;
}

@media (min-width: 1024px) {
  .challenges-image-verdeelde-leiderschap {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.conclusion-section-verdeelde-leiderschap {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-verdeelde-leiderschap {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-verdeelde-leiderschap {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-cta-verdeelde-leiderschap {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-button-verdeelde-leiderschap {
  display: inline-block;
  background: #10b981;
  color: #ffffff;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  text-decoration: none;
  transition: all 250ms ease-in-out;
}

.cta-button-verdeelde-leiderschap:hover {
  background: #059669;
  transform: translateY(-2px);
}

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

.disclaimer-content-verdeelde-leiderschap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-verdeelde-leiderschap {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: #1e293b;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-verdeelde-leiderschap {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-section-verdeelde-leiderschap {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-verdeelde-leiderschap {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-verdeelde-leiderschap {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-grid-verdeelde-leiderschap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-verdeelde-leiderschap {
  flex: 1 1 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 250ms ease-in-out;
}

.related-card-verdeelde-leiderschap:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #10b981;
  transform: translateY(-4px);
}

.related-image-wrapper-verdeelde-leiderschap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-verdeelde-leiderschap {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-verdeelde-leiderschap {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  font-weight: 700;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-verdeelde-leiderschap {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
  padding: 0 clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-link-verdeelde-leiderschap {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  padding: 0 clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  transition: color 250ms ease-in-out;
  display: block;
}

.related-link-verdeelde-leiderschap:hover {
  color: #059669;
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.main-feedback-geven-effectief {
  width: 100%;
  overflow-x: hidden;
}

.hero-section-feedback-geven-effectief {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-feedback-geven-effectief::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.breadcrumbs-feedback-geven-effectief a {
  color: #10b981;
  text-decoration: none;
  transition: color 250ms ease-in-out;
}

.breadcrumbs-feedback-geven-effectief a:hover {
  color: #059669;
}

.breadcrumbs-feedback-geven-effectief span {
  color: #64748b;
}

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

.hero-text-feedback-geven-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-feedback-geven-effectief {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-feedback-geven-effectief {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-feedback-geven-effectief {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #64748b;
  flex-wrap: wrap;
}

.meta-item-feedback-geven-effectief {
  color: #94a3b8;
}

.meta-divider-feedback-geven-effectief {
  color: #475569;
}

.hero-image-feedback-geven-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-feedback-geven-effectief {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

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

  .hero-text-feedback-geven-effectief {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-feedback-geven-effectief {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-section-feedback-geven-effectief::before {
    width: 300px;
    height: 300px;
  }
}

.intro-section-feedback-geven-effectief {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.intro-title-feedback-geven-effectief {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-feedback-geven-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.intro-image-feedback-geven-effectief img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

@media (max-width: 768px) {
  .intro-content-feedback-geven-effectief {
    flex-direction: column;
  }

  .intro-text-feedback-geven-effectief {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-feedback-geven-effectief {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.foundation-section-feedback-geven-effectief {
  background: #0f172a;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.foundation-content-feedback-geven-effectief {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.foundation-text-feedback-geven-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-title-feedback-geven-effectief {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.foundation-paragraph-feedback-geven-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-list-feedback-geven-effectief {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-item-feedback-geven-effectief {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.principle-number-feedback-geven-effectief {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principle-text-feedback-geven-effectief {
  flex: 1;
}

.principle-title-feedback-geven-effectief {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principle-description-feedback-geven-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.foundation-image-feedback-geven-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundation-image-feedback-geven-effectief img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

@media (max-width: 768px) {
  .foundation-content-feedback-geven-effectief {
    flex-direction: column;
    align-items: center;
  }

  .foundation-text-feedback-geven-effectief {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .foundation-image-feedback-geven-effectief {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.structure-section-feedback-geven-effectief {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.structure-content-feedback-geven-effectief {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.structure-text-feedback-geven-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-title-feedback-geven-effectief {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.structure-paragraph-feedback-geven-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.step-block-feedback-geven-effectief {
  background: #f8fafc;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  border-left: 4px solid #10b981;
}

.step-header-feedback-geven-effectief {
  margin-bottom: 0.75rem;
}

.step-title-feedback-geven-effectief {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-feedback-geven-effectief {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.structure-image-feedback-geven-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-image-feedback-geven-effectief img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

@media (max-width: 768px) {
  .structure-content-feedback-geven-effectief {
    flex-direction: column;
    align-items: center;
  }

  .structure-text-feedback-geven-effectief {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .structure-image-feedback-geven-effectief {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.common-mistakes-section-feedback-geven-effectief {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.common-mistakes-content-feedback-geven-effectief {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.common-mistakes-text-feedback-geven-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.common-mistakes-title-feedback-geven-effectief {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.common-mistakes-intro-feedback-geven-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mistake-cards-feedback-geven-effectief {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.mistake-card-feedback-geven-effectief {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  transition: all 250ms ease-in-out;
}

.mistake-card-feedback-geven-effectief:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.mistake-title-feedback-geven-effectief {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #10b981;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mistake-text-feedback-geven-effectief {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.common-mistakes-image-feedback-geven-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .common-mistakes-content-feedback-geven-effectief {
    flex-direction: column;
    align-items: center;
  }

  .common-mistakes-text-feedback-geven-effectief {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .common-mistakes-image-feedback-geven-effectief {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.closing-section-feedback-geven-effectief {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.closing-content-feedback-geven-effectief {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-title-feedback-geven-effectief {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.closing-paragraph-feedback-geven-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.closing-highlight-feedback-geven-effectief {
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-text-feedback-geven-effectief {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #059669;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-style: italic;
}

.disclaimer-section-feedback-geven-effectief {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-feedback-geven-effectief {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-feedback-geven-effectief {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
}

.disclaimer-title-feedback-geven-effectief {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-feedback-geven-effectief {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-section-feedback-geven-effectief {
  background: #0f172a;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-feedback-geven-effectief {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-feedback-geven-effectief {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-feedback-geven-effectief {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease-in-out;
  display: flex;
  flex-direction: column;
}

.related-card-feedback-geven-effectief:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.related-card-image-feedback-geven-effectief {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-feedback-geven-effectief {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease-in-out;
}

.related-card-feedback-geven-effectief:hover .related-card-img-feedback-geven-effectief {
  transform: scale(1.05);
}

.related-card-title-feedback-geven-effectief {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  padding: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: 0.5rem;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-feedback-geven-effectief {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: #cbd5e1;
  line-height: 1.6;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-link-feedback-geven-effectief {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  padding-top: 0.75rem;
  display: inline-block;
  transition: color 250ms ease-in-out;
}

.related-card-link-feedback-geven-effectief:hover {
  color: #059669;
}

@media (max-width: 1024px) {
  .related-card-feedback-geven-effectief {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .related-card-feedback-geven-effectief {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .closing-content-feedback-geven-effectief {
    max-width: 100%;
  }

  .disclaimer-content-feedback-geven-effectief {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content-feedback-geven-effectief {
    flex-direction: column;
  }

  .breadcrumbs-feedback-geven-effectief {
    font-size: 0.75rem;
  }

  .principle-item-feedback-geven-effectief {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-primary);
    background: var(--color-bg-secondary);
    color: var(--color-text-primary-light);
    line-height: 1.6;
  }

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

  p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

  .delegation-leadership-about {
    width: 100%;
  }

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

  .hero-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
  }

  .hero-header-about {
    text-align: center;
    max-width: 900px;
  }

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

  .hero-subtitle-about {
    font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
    color: var(--color-text-secondary-dark);
    font-weight: 300;
    margin-bottom: 2rem;
  }

  .hero-stats-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
  }

  .stat-item-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 0 1 auto;
  }

  .stat-number-about {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
  }

  .stat-label-about {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--color-text-secondary-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .hero-visual-about {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    object-fit: cover;
  }

  .expertise-section-about {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

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

  .section-header-about {
    text-align: center;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .section-tag-about {
    display: inline-block;
    padding: clamp(0.25rem, 0.5vw, 0.35rem) clamp(0.75rem, 1.5vw, 1rem);
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .section-title-about {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
    color: var(--color-text-primary-light);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .section-subtitle-about {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--color-text-secondary-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
  }

  .expertise-cards-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    justify-content: center;
    margin-top: 2rem;
  }

  .expertise-card-about {
    flex: 1 1 clamp(250px, 30vw, 380px);
    background: var(--color-bg-tertiary);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

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

  .card-icon-about {
    width: clamp(2.5rem, 5vw, 3.5rem);
    height: clamp(2.5rem, 5vw, 3.5rem);
    background: rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: var(--color-primary);
  }

  .card-title-about {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-text-primary-light);
    font-weight: 600;
    line-height: 1.4;
  }

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

  .approach-section-about {
    background: var(--color-bg-accent);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

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

  .approach-header-about {
    text-align: center;
    margin-bottom: 1rem;
  }

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

  .approach-subtitle-about {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--color-text-secondary-dark);
    max-width: 700px;
    margin: 0 auto;
  }

  .process-steps-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 3vw, 2.5rem);
    margin-top: 2rem;
  }

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

  .step-number-about {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
    flex-shrink: 0;
    line-height: 1;
  }

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

  .step-title-about {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: #ffffff;
    font-weight: 600;
  }

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

  .vision-section-about {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

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

  .vision-split-about {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
  }

  .vision-text-about {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .vision-image-about {
    flex: 1 1 45%;
    width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: var(--radius-lg);
    object-fit: cover;
  }

  .vision-heading-about {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
    color: var(--color-text-primary-light);
    font-weight: 700;
    line-height: 1.3;
  }

  .vision-description-about {
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    color: var(--color-text-secondary-light);
    line-height: 1.8;
  }

  .featured-quote-about {
    background: var(--color-bg-tertiary);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    font-style: italic;
    margin: 1.5rem 0;
  }

  .quote-text-about {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--color-text-primary-light);
    margin-bottom: 1rem;
    line-height: 1.8;
  }

  .quote-author-about {
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    color: var(--color-text-secondary-light);
    font-style: normal;
    display: block;
  }

  .disclaimer-section-about {
    background: var(--color-bg-tertiary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
  }

  .disclaimer-content-about {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
  }

  .disclaimer-header-about {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .disclaimer-icon-about {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--color-primary);
    flex-shrink: 0;
  }

  .disclaimer-title-about {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-text-primary-light);
    font-weight: 600;
  }

  .disclaimer-text-about {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: var(--color-text-secondary-light);
    line-height: 1.7;
    text-align: left;
  }

  @media (max-width: 768px) {
    .hero-stats-about {
      gap: 1.5rem;
    }

    .stat-item-about {
      flex: 1 1 calc(50% - 0.75rem);
    }

    .expertise-cards-about {
      flex-direction: column;
    }

    .expertise-card-about {
      flex: 1 1 100%;
    }

    .process-step-about {
      gap: 1rem;
    }

    .step-number-about {
      min-width: clamp(2.5rem, 15vw, 3rem);
    }

    .vision-split-about {
      flex-direction: column;
    }

    .vision-text-about {
      flex: 1 1 100%;
    }

    .vision-image-about {
      flex: 1 1 100%;
      max-height: 300px;
    }

    .approach-section-about {
      padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    .hero-section-about {
      padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    .expertise-section-about {
      padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    .vision-section-about {
      padding: clamp(2.5rem, 6vw, 4rem) 0;
    }
  }

  @media (min-width: 769px) and (max-width: 1023px) {
    .expertise-cards-about {
      justify-content: center;
    }

    .expertise-card-about {
      flex: 1 1 calc(50% - 0.75rem);
      max-width: none;
    }

    .stat-item-about {
      flex: 1 1 calc(25% - 1.125rem);
    }
  }

  @media (min-width: 1024px) {
    .stat-item-about {
      flex: 0 1 auto;
    }

    .expertise-cards-about {
      justify-content: center;
    }

    .expertise-card-about {
      flex: 1 1 calc(33.333% - 1.666rem);
      max-width: 380px;
    }
  }

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

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

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

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  color: var(--color-text-primary-dark);
  line-height: 1.2;
  margin: 0;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw + 0.25rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.6;
}

.faq-hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-xl) var(--space-lg);
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .faq-hero-image {
    border-radius: var(--radius-xl);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-2xl) var(--space-2xl);
  }
}

.faq-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

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

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

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-tertiary);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: background-color var(--transition-base);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  text-align: left;
}

.faq-question:hover {
  background-color: #f0f9ff;
}

.faq-question-text {
  color: var(--color-text-primary-light);
  line-height: 1.5;
  flex: 1;
}

.faq-toggle {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  background-color: #ffffff;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  line-height: 1.7;
  margin: 0;
}

.faq-side {
  display: none;
}

.faq-side-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-xl) var(--space-lg);
  }

  .faq-container {
    grid-template-columns: 1fr 320px;
    gap: var(--space-2xl);
    align-items: start;
  }

  .faq-side {
    display: block;
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-2xl) var(--space-2xl);
  }

  .faq-question {
    padding: var(--space-lg);
  }

  .faq-question:hover {
    background-color: #f0f9ff;
  }

  .faq-item {
    border-radius: var(--radius-xl);
  }
}

.faq-cta {
  background-color: var(--color-bg-accent);
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

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

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary-dark);
  margin: 0;
  line-height: 1.2;
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.6;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
  width: fit-content;
}

.faq-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.faq-cta-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-xl) var(--space-lg);
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .faq-cta-image {
    border-radius: var(--radius-xl);
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-2xl) var(--space-2xl);
  }
}

.services-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0 var(--space-2xl);
  overflow: hidden;
  border-bottom: 1px solid var(--color-bg-card-dark);
}

.services-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.services-hero-content {
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--color-text-secondary-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-cards-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.services-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  display: flex;
  flex-direction: column;
}

.services-card {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-card:hover {
  background-color: rgba(16, 185, 129, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.services-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: var(--color-text-primary-dark);
}

.services-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-sm);
  font-weight: 400;
}

.services-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.services-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.services-card-features li {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  padding-left: var(--space-md);
  position: relative;
}

.services-card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.services-image-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.services-image-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.services-section-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-dark);
}

.services-cta-section {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 233, 0.1));
  border-top: 1px solid var(--color-bg-card-dark);
  border-bottom: 1px solid var(--color-bg-card-dark);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.services-cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.services-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
}

.services-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateX(4px);
}

.services-cta-button-text {
  font-family: var(--font-primary);
}

.services-cta-button i {
  font-size: 0.95rem;
  transition: transform var(--transition-base);
}

.services-cta-button:hover i {
  transform: translateX(2px);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
  }

  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .services-cards-section {
    padding: var(--space-4xl) 0;
  }

  .services-image-section {
    padding: var(--space-4xl) 0;
  }

  .services-cta-section {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
  }

  .services-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .services-card {
    padding: var(--space-2xl);
  }

  .services-cards-section {
    padding: var(--space-4xl) 0;
  }

  .services-image-section {
    padding: var(--space-4xl) 0;
  }

  .services-cta-section {
    padding: var(--space-4xl) 0;
  }

  .services-cta-container {
    padding: var(--space-xl);
  }
}

@media (min-width: 1280px) {
  .services-cards-container {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
  }
}

@media (max-width: 767px) {
  .services-card {
    margin-bottom: var(--space-sm);
  }

  .services-cta-button {
    width: 100%;
    justify-content: center;
  }
}

.delegation-docs {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
  padding: 0;
  margin: 0;
}

.delegation-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.delegation-docs .delegation-docs-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.delegation-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary-light);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.2;
}

.delegation-docs .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-2xl);
  display: block;
}

.delegation-docs h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary-light);
  margin: var(--space-2xl) 0 var(--space-md) 0;
  font-weight: 600;
  line-height: 1.3;
}

.delegation-docs section {
  margin-bottom: var(--space-2xl);
}

.delegation-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0 0 var(--space-md) 0;
}

.delegation-docs ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
}

.delegation-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
}

.delegation-docs li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.delegation-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.delegation-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary-light);
}

.delegation-docs .contact-section p {
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-sm);
}

.delegation-docs .contact-section strong {
  color: var(--color-text-primary-light);
  font-weight: 600;
}

@media (min-width: 768px) {
  .delegation-docs .delegation-docs-content {
    padding: var(--space-4xl) var(--space-lg);
  }
  
  .delegation-docs .contact-section {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .delegation-docs .delegation-docs-content {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 0;
}

.thank-section {
  width: 100%;
  overflow: hidden;
}

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

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
}

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

.thank-icon {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-icon svg {
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  margin: 0 0 var(--space-lg) 0;
  font-weight: 500;
  line-height: 1.6;
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-2xl) 0;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-return {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 2px solid var(--color-primary);
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  letter-spacing: 0.5px;
}

.btn-return:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
  transform: translateY(-2px);
}

.btn-return:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

@media (min-width: 768px) {
  .thank-you-page {
    padding: var(--space-xl) 0;
  }
  
  .container {
    padding: 0 var(--space-xl);
  }
  
  .thank-icon {
    margin-bottom: var(--space-2xl);
  }
  
  .thank-title {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .thank-you-page {
    padding: var(--space-3xl) 0;
  }
  
  .container {
    padding: 0 var(--space-2xl);
  }
  
  .thank-icon {
    margin-bottom: var(--space-3xl);
  }
  
  .thank-description {
    margin-bottom: var(--space-3xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-content,
  .thank-icon {
    animation: none;
    opacity: 1;
  }
  
  .btn-return {
    transition: none;
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

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

.error-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.error-illustration {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.error-code-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  animation: float 6s ease-in-out infinite;
}

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

.error-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.error-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  line-height: 1.7;
  max-width: 600px;
  margin: var(--space-sm) 0;
}

.error-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin: var(--space-md) 0;
}

.keyword {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  padding: var(--space-xs) var(--space-md);
  background-color: var(--color-bg-card-dark);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-family: var(--font-primary);
  font-weight: 500;
  transition: all var(--transition-base);
}

.keyword:hover {
  background-color: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  margin-top: var(--space-md);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-primary-light);
  box-shadow: var(--shadow-lg);
}

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

.btn-primary:active {
  transform: translateY(-2px);
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .error-content {
    gap: var(--space-xl);
  }

  .error-code-wrapper {
    max-width: 400px;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .error-content {
    gap: var(--space-2xl);
  }

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

  .keyword {
    padding: var(--space-sm) var(--space-lg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }

  .keyword {
    transition: none;
  }

  .btn {
    transition: none;
  }
}

.contact-say-hello {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.contact-say-hello-hero {
  background-color: var(--color-bg-primary);
  padding: 4rem var(--space-md) 3rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-say-hello-hero-content {
  width: 100%;
}

.contact-say-hello-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.contact-say-hello-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  font-weight: 400;
}

.contact-say-hello-main {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-say-hello-main-content {
  width: 100%;
}

.contact-say-hello-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-say-hello-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-say-hello-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-say-hello-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-say-hello-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.contact-say-hello-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  font-weight: 500;
  color: var(--color-text-primary-dark);
  display: block;
}

.contact-say-hello-input,
.contact-say-hello-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  color: var(--color-text-primary-dark);
  transition: all var(--transition-base);
  box-sizing: border-box;
}

.contact-say-hello-input::placeholder,
.contact-say-hello-textarea::placeholder {
  color: var(--color-text-muted-dark);
}

.contact-say-hello-input:focus,
.contact-say-hello-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-say-hello-input:invalid:not(:placeholder-shown),
.contact-say-hello-textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}

.contact-say-hello-textarea {
  min-height: 140px;
  resize: vertical;
  max-height: 400px;
}

.contact-say-hello-form-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 0;
}

.contact-say-hello-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-say-hello-consent-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  cursor: pointer;
  line-height: 1.5;
}

.contact-say-hello-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  width: 100%;
  padding: 1.125rem 2rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: 0.5rem;
}

.contact-say-hello-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.contact-say-hello-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.contact-say-hello-submit:disabled {
  background-color: var(--color-text-muted-dark);
  cursor: not-allowed;
  opacity: 0.6;
}

.contact-say-hello-info-section {
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.contact-say-hello-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-primary-dark);
  margin-bottom: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.contact-say-hello-info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-say-hello-info-item:last-child {
  margin-bottom: 0;
}

.contact-say-hello-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-say-hello-info-content {
  flex: 1;
}

.contact-say-hello-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: 0.375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-say-hello-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-text-primary-dark);
  line-height: 1.6;
  font-weight: 500;
}

.contact-say-hello-info-section-secondary {
  background-color: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}

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

.contact-say-hello-benefit-item {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-text-primary-dark);
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  line-height: 1.6;
}

.contact-say-hello-benefit-icon {
  font-size: 1.25rem;
  color: var(--color-primary);
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

@media (min-width: 768px) {
  .contact-say-hello-hero {
    padding: 5rem var(--space-md) 4rem;
  }

  .contact-say-hello-main {
    padding: 4rem var(--space-md);
  }

  .contact-say-hello-grid {
    gap: 4rem;
  }

  .contact-say-hello-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-say-hello-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-hero {
    padding: 6rem var(--space-md) 5rem;
  }

  .contact-say-hello-main {
    padding: 5rem var(--space-md);
  }

  .contact-say-hello-grid {
    gap: 5rem;
  }

  .contact-say-hello-form-wrapper {
    flex: 1 1 50%;
  }

  .contact-say-hello-info-wrapper {
    flex: 1 1 50%;
  }
}

@media (max-width: 767px) {
  .contact-say-hello-form {
    gap: 1.25rem;
  }

  .contact-say-hello-submit {
    padding: 1rem 1.75rem;
  }

  .contact-say-hello-info-section {
    padding: 1.5rem;
  }

  .contact-say-hello-info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}