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

:root {
  
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #64748b;
  
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #06b6d4;
  --color-accent-warm: #fbbf24;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(59, 130, 246, 0.15);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  background: var(--color-bg-primary);
}

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

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

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

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

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

p {
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-primary-hover);
}

.card {
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: 1fr;
}

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

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

.grid-cols-3 {
  grid-template-columns: 1fr;
}

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

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

.decoration-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.decoration-line {
  position: absolute;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  opacity: 0.15;
}

.accent-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.3;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.icon:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.1);
}

.icon-lg {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.75rem;
}

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

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

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--color-text-primary);
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-submit-btn {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

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

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

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
  }
}

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

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

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

@media (max-width: 767px) {
  body {
    font-size: 0.9375rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hide-mobile {
    display: none;
  }
}

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

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

@media print {
  body {
    background: white;
    color: black;
  }

  .btn,
  .no-print {
    display: none;
  }
}

.header-accountability-hub {
  width: 100%;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  z-index: 100;
}

.header-accountability-hub-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 5vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-accountability-hub-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-accountability-hub-brand:hover {
  opacity: 0.8;
}

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

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

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

.header-accountability-hub-nav-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

.header-accountability-hub-nav-link:hover {
  color: var(--color-primary);
}

.header-accountability-hub-nav-link:hover::after {
  width: 100%;
}

.header-accountability-hub-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #0f172a;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.header-accountability-hub-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.header-accountability-hub-cta-button:active {
  transform: translateY(0);
}

.header-accountability-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem 0;
  z-index: 101;
}

.header-accountability-hub-mobile-toggle-line {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.header-accountability-hub-mobile-toggle.active .header-accountability-hub-mobile-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-accountability-hub-mobile-toggle.active .header-accountability-hub-mobile-toggle-line:nth-child(2) {
  opacity: 0;
}

.header-accountability-hub-mobile-toggle.active .header-accountability-hub-mobile-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-accountability-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-secondary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  border-left: 1px solid rgba(59, 130, 246, 0.1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.header-accountability-hub-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 4vw, 1.5rem);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  flex-shrink: 0;
}

.header-accountability-hub-mobile-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

.header-accountability-hub-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-accountability-hub-mobile-close:hover {
  color: var(--color-primary);
}

.header-accountability-hub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  padding: 0;
  margin: 0;
}

.header-accountability-hub-mobile-link {
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 4vw, 1.5rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.9375rem, 2vw, 1rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(59, 130, 246, 0.05);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.header-accountability-hub-mobile-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 5vw, 2rem);
}

.header-accountability-hub-mobile-cta {
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 4vw, 1.5rem);
  background: var(--color-primary);
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-align: center;
  margin: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius-md);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.header-accountability-hub-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

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

  .header-accountability-hub-cta-button {
    display: inline-block;
  }

  .header-accountability-hub-mobile-toggle {
    display: none;
  }

  .header-accountability-hub-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header-accountability-hub-container {
    padding: 0.875rem clamp(1rem, 4vw, 1.5rem);
  }

  .header-accountability-hub-brand {
    flex-shrink: 0;
  }

  .header-accountability-hub-logo-img {
    width: 36px;
    height: 36px;
  }

  .header-accountability-hub-logo-text {
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .header-accountability-hub,
  .header-accountability-hub *,
  .header-accountability-hub *::before,
  .header-accountability-hub *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

    .accountability-hub {
  width: 100%;
  position: relative;
}

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

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

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

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

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

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

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

p {
  line-height: 1.7;
}

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

.btn-primary-index,
.btn-secondary-index,
.featured-card-link-index,
.featured-view-all-index,
.contact-submit-btn-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary-index {
  background: var(--color-primary);
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.btn-primary-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25);
}

.btn-secondary-index {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  border-width: 2px;
}

.btn-secondary-index:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #f1f5f9;
  transform: translateY(-2px);
}

.featured-card-link-index {
  background: transparent;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-card-link-index:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.featured-view-all-index {
  background: var(--color-primary);
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
  margin-top: 2rem;
}

.featured-view-all-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
}

.contact-submit-btn-index {
  background: var(--color-primary);
  color: #0f172a;
  width: 100%;
  border: none;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.contact-submit-btn-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
}

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

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

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

.hero-glow-secondary-index {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-floating-element-index {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 120px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 45% 55% 60% 40%;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.hero-title-index {
  color: #ffffff;
  font-weight: 700;
}

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

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin: clamp(1rem, 2vw, 2rem) 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.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: 800;
  color: var(--color-primary);
  line-height: 1;
  display: block;
}

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

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: 1rem;
}

.hero-image-block-index {
  flex: 1 1 350px;
  min-height: 400px;
  position: relative;
}

.hero-image-index {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-index {
    flex-direction: column;
  }
  
  .hero-image-block-index {
    min-height: 300px;
  }
  
  .hero-stats-index {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.values-section-index {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
}

.values-mesh-gradient-index {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.values-glow-accent-index {
  position: absolute;
  bottom: 5%;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.values-floating-shape-index {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 180px;
  height: 180px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50% 40% 60% 45%;
  z-index: 2;
  pointer-events: none;
}

.values-corner-element-index {
  position: absolute;
  top: 5%;
  right: 15%;
  width: 100px;
  height: 100px;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 30% 70% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

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

.values-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.values-title-index {
  color: #ffffff;
  margin-bottom: 1rem;
}

.values-subtitle-index {
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

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

.values-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.values-card-index:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.values-card-icon-index {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.values-card-index:hover .values-card-icon-index {
  background: rgba(59, 130, 246, 0.25);
  transform: scale(1.1);
}

.values-card-title-index {
  color: #ffffff;
  font-weight: 600;
}

.values-card-text-index {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

.featured-posts-section-index {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
}

.featured-mesh-background-index {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

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

.featured-accent-shape-index {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 40% 60% 35% 65%;
  z-index: 1;
  pointer-events: none;
}

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

.featured-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.featured-title-index {
  color: #ffffff;
  margin-bottom: 1rem;
}

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

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.featured-card-index:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.featured-card-image-index {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.featured-card-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.featured-card-index:hover .featured-card-img-index {
  transform: scale(1.05);
}

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

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

.featured-card-description-index {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

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

.methodology-section-index {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
}

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

.methodology-shape-accent-index {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 45% 55% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

.methodology-floating-element-index {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 120px;
  height: 120px;
  background: rgba(59, 130, 246, 0.03);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

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

.methodology-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title-index {
  color: #ffffff;
  margin-bottom: 1rem;
}

.methodology-subtitle-index {
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.methodology-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.methodology-step-index {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.methodology-step-index:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(4px);
}

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

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

.methodology-step-title-index {
  color: #ffffff;
  font-weight: 600;
}

.methodology-step-text-index {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

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

.quote-glow-index {
  position: absolute;
  top: 50%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.quote-accent-line-index {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2));
  z-index: 2;
  pointer-events: none;
}

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

.featured-quote-index {
  flex: 1 1 350px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 0 12px 12px 0;
  margin: 0;
}

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

.quote-attribution-index {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
}

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

.quote-image-index {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .quote-content-index {
    flex-direction: column;
  }
  
  .quote-image-block-index {
    min-height: 280px;
  }
}

.benefits-section-index {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
}

.benefits-mesh-index {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.02) 50%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

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

.benefits-shape-accent-index {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 50% 40% 60% 45%;
  z-index: 1;
  pointer-events: none;
}

.benefits-floating-element-index {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: rgba(59, 130, 246, 0.03);
  border-radius: 40% 60% 45% 55%;
  z-index: 1;
  pointer-events: none;
}

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

.benefits-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.benefits-title-index {
  color: #ffffff;
  margin-bottom: 1rem;
}

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

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

.benefits-item-index {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.benefits-item-index:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.benefits-item-icon-index {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.benefits-item-index:hover .benefits-item-icon-index {
  background: rgba(59, 130, 246, 0.25);
  transform: scale(1.1);
}

.benefits-item-title-index {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.125rem;
}

.benefits-item-text-index {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

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

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

.contact-accent-shape-index {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 40% 60% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-floating-element-index {
  position: absolute;
  top: 50%;
  left: -50px;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.03);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

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

.contact-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-title-index {
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-subtitle-index {
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

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

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

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

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

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

.contact-input-index,
.contact-textarea-index {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #ffffff;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

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

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

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

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

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

.contact-faq-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  border-left: 3px solid var(--color-primary);
}

.contact-faq-question-index {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.9375rem;
}

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

.contact-faq-link-index {
  color: var(--color-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  .contact-content-index {
    flex-direction: column;
  }
  
  .contact-form-wrapper-index,
  .contact-info-wrapper-index {
    flex: 1 1 100%;
  }
}

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

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

.cookie-banner-text-index {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  flex: 1 1 250px;
}

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

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

.cookie-btn-accept-index {
  background: var(--color-primary);
  color: #0f172a;
}

.cookie-btn-accept-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.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-index {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .cookie-banner-text-index {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .cookie-banner-buttons-index {
    flex: 1 1 100%;
  }
}

@media (min-width: 768px) {
  .hero-section-index {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .values-section-index,
  .featured-posts-section-index,
  .methodology-section-index,
  .quote-section-index,
  .benefits-section-index,
  .contact-section-index {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-index {
    padding: 6rem 0 8rem;
  }
}

    

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

.footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

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

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

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

.footer-nav-column,
.footer-contact-column {
  flex: 1 1 250px;
  min-width: 200px;
}

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

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

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

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

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

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

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

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

.footer-contact-label {
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
}

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

.footer-legal {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

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

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

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

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

.footer-bottom {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  text-align: center;
}

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

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

  .footer-sections {
    gap: clamp(3rem, 8vw, 4rem);
  }

  .footer-nav-column,
  .footer-contact-column {
    flex: 1 1 300px;
  }

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

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

  .footer-contact-item {
    gap: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    gap: 4rem;
  }

  .footer-sections {
    gap: 5rem;
    margin-bottom: 2rem;
  }

  .footer-nav-column,
  .footer-contact-column {
    flex: 1 1 320px;
  }

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

  .footer-legal-links {
    justify-content: flex-start;
  }
}

.footer a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

.category-page-accountability-coaching {
    width: 100%;
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
  }

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

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

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

  .hero-gradient-field-accountability {
    position: absolute;
    top: 40%;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    filter: blur(90px);
    z-index: 1;
    pointer-events: none;
  }

  .hero-floating-accent-accountability {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
    z-index: 2;
    pointer-events: none;
  }

  .hero-light-burst-accountability {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: rgba(251, 191, 36, 0.08);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
  }

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

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

  .hero-text-block-accountability {
    flex: 1 1 300px;
    min-width: 300px;
  }

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

  .hero-subtitle-accountability {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    color: #bfdbfe;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    line-height: 1.6;
    max-width: 550px;
  }

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

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

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

  .stat-label-accountability {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 500;
  }

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

  .hero-image-block-accountability {
    flex: 1 1 300px;
    min-width: 300px;
  }

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

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

  .posts-header-accountability {
    text-align: center;
    margin-bottom: clamp(3rem, 8vw, 5rem);
    position: relative;
    z-index: 10;
  }

  .posts-tag-accountability {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

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

  .posts-subtitle-accountability {
    font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

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

  .card-accountability {
    flex: 1 1 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 12px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
  }

  .card-accountability:hover {
    transform: translateY(-6px);
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  }

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

  .card-title-accountability {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
  }

  .card-description-accountability {
    font-size: clamp(0.875rem, 1.5vw + 0.4rem, 1rem);
    color: #cbd5e1;
    line-height: 1.6;
    flex-grow: 1;
  }

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

  .meta-badge-accountability {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-radius: 16px;
    font-size: 0.8125rem;
    font-weight: 500;
  }

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

  .card-link-accountability {
    align-self: flex-start;
    color: #60a5fa;
    font-weight: 600;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
  }

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

  .card-link-accountability:hover {
    color: #bfdbfe;
    transform: translateX(4px);
  }

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

  .principles-glow-left-accountability {
    position: absolute;
    top: 20%;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
  }

  .principles-shape-right-accountability {
    position: absolute;
    bottom: 10%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
    z-index: 1;
    pointer-events: none;
  }

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

  .principles-text-block-accountability {
    max-width: 700px;
    margin-bottom: clamp(3rem, 8vw, 5rem);
  }

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

  .principles-intro-accountability {
    font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
    color: #cbd5e1;
    line-height: 1.7;
  }

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

  .principle-step-accountability {
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(59, 130, 246, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
  }

  .principle-step-accountability:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateX(4px);
  }

  .principle-number-accountability {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
  }

  .principle-content-accountability {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

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

  .principle-text-accountability {
    font-size: clamp(0.875rem, 1.5vw + 0.4rem, 1rem);
    color: #cbd5e1;
    line-height: 1.6;
  }

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

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

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

  .benefits-header-accountability {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    position: relative;
    z-index: 10;
  }

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

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

  .featured-quote-accountability {
    padding: clamp(2rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3rem);
    border-left: 4px solid #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    margin: clamp(2rem, 4vw, 3rem) 0;
    border-radius: 8px;
    position: relative;
    z-index: 10;
  }

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

  .quote-author-accountability {
    font-size: 0.9375rem;
    color: #94a3b8;
    font-style: normal;
  }

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

  .benefit-card-accountability {
    flex: 1 1 280px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .benefit-card-accountability:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }

  .benefit-icon-accountability {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border-radius: 10px;
    font-size: 1.75rem;
  }

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

  .benefit-card-text-accountability {
    font-size: clamp(0.875rem, 1.5vw + 0.4rem, 1rem);
    color: #cbd5e1;
    line-height: 1.6;
  }

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

  .btn-primary {
    background: #3b82f6;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  }

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

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

  .btn-outline:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: #60a5fa;
    color: #60a5fa;
  }

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

    .hero-text-block-accountability,
    .hero-image-block-accountability {
      flex: 1 1 100%;
    }

    .posts-grid-accountability {
      flex-direction: column;
      align-items: center;
    }

    .card-accountability {
      width: 100%;
      max-width: 100%;
    }

    .principle-step-accountability {
      gap: 1rem;
    }

    .benefits-cards-accountability {
      flex-direction: column;
      align-items: center;
    }

    .benefit-card-accountability {
      width: 100%;
      max-width: 100%;
    }
  }

  @media (min-width: 1024px) {
    .hero-section-accountability {
      padding: 6rem 0 8rem 0;
    }

    .posts-section-accountability {
      padding: 8rem 0;
    }

    .principles-section-accountability {
      padding: 8rem 0;
    }

    .benefits-section-accountability {
      padding: 8rem 0;
    }
  }

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

.main-verantwoordingsstructuur-bouwen {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.hero-section-verantwoordingsstructuur-bouwen {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-text-block-verantwoordingsstructuur-bouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-verantwoordingsstructuur-bouwen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-meta-verantwoordingsstructuur-bouwen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.meta-badge-verantwoordingsstructuur-bouwen i {
  color: #3b82f6;
  font-size: 0.875rem;
}

.hero-stats-verantwoordingsstructuur-bouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

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

.stat-label-verantwoordingsstructuur-bouwen {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-block-verantwoordingsstructuur-bouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-verantwoordingsstructuur-bouwen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

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

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

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

.intro-section-verantwoordingsstructuur-bouwen {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-verantwoordingsstructuur-bouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-verantwoordingsstructuur-bouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.25;
}

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

.intro-image-verantwoordingsstructuur-bouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-verantwoordingsstructuur-bouwen img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: block;
}

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

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

.content-section-one-verantwoordingsstructuur-bouwen,
.content-section-two-verantwoordingsstructuur-bouwen,
.content-section-three-verantwoordingsstructuur-bouwen,
.content-section-four-verantwoordingsstructuur-bouwen {
  width: 100%;
  overflow: hidden;
}

.content-section-one-verantwoordingsstructuur-bouwen {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-section-two-verantwoordingsstructuur-bouwen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-section-three-verantwoordingsstructuur-bouwen {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-section-four-verantwoordingsstructuur-bouwen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.content-wrapper-one-verantwoordingsstructuur-bouwen,
.content-wrapper-two-verantwoordingsstructuur-bouwen,
.content-wrapper-three-verantwoordingsstructuur-bouwen,
.content-wrapper-four-verantwoordingsstructuur-bouwen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-one-verantwoordingsstructuur-bouwen,
.content-text-three-verantwoordingsstructuur-bouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-text-two-verantwoordingsstructuur-bouwen,
.content-text-four-verantwoordingsstructuur-bouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-verantwoordingsstructuur-bouwen,
.content-image-two-verantwoordingsstructuur-bouwen,
.content-image-three-verantwoordingsstructuur-bouwen,
.content-image-four-verantwoordingsstructuur-bouwen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-verantwoordingsstructuur-bouwen,
.content-title-three-verantwoordingsstructuur-bouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.content-title-two-verantwoordingsstructuur-bouwen,
.content-title-four-verantwoordingsstructuur-bouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.content-text-verantwoordingsstructuur-bouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-section-one-verantwoordingsstructuur-bouwen .content-text-verantwoordingsstructuur-bouwen {
  color: #bfdbfe;
}

.content-section-two-verantwoordingsstructuur-bouwen .content-text-verantwoordingsstructuur-bouwen {
  color: #374151;
}

.content-section-three-verantwoordingsstructuur-bouwen .content-text-verantwoordingsstructuur-bouwen {
  color: #bfdbfe;
}

.content-section-four-verantwoordingsstructuur-bouwen .content-text-verantwoordingsstructuur-bouwen {
  color: #374151;
}

.highlight-box-one-verantwoordingsstructuur-bouwen,
.highlight-box-three-verantwoordingsstructuur-bouwen {
  background: rgba(59, 130, 246, 0.15);
  border-left: 4px solid #3b82f6;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-title-verantwoordingsstructuur-bouwen {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.highlight-text-verantwoordingsstructuur-bouwen {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.content-list-verantwoordingsstructuur-bouwen {
  list-style: none;
  padding: 0;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.list-item-verantwoordingsstructuur-bouwen {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.6;
}

.content-section-two-verantwoordingsstructuur-bouwen .list-item-verantwoordingsstructuur-bouwen {
  color: #374151;
}

.list-item-verantwoordingsstructuur-bouwen::before {
  content: "";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.25rem;
}

.content-image-one-verantwoordingsstructuur-bouwen img,
.content-image-two-verantwoordingsstructuur-bouwen img,
.content-image-three-verantwoordingsstructuur-bouwen img,
.content-image-four-verantwoordingsstructuur-bouwen img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .content-wrapper-one-verantwoordingsstructuur-bouwen,
  .content-wrapper-two-verantwoordingsstructuur-bouwen,
  .content-wrapper-three-verantwoordingsstructuur-bouwen,
  .content-wrapper-four-verantwoordingsstructuur-bouwen {
    flex-direction: column;
  }

  .content-text-one-verantwoordingsstructuur-bouwen,
  .content-text-two-verantwoordingsstructuur-bouwen,
  .content-text-three-verantwoordingsstructuur-bouwen,
  .content-text-four-verantwoordingsstructuur-bouwen,
  .content-image-one-verantwoordingsstructuur-bouwen,
  .content-image-two-verantwoordingsstructuur-bouwen,
  .content-image-three-verantwoordingsstructuur-bouwen,
  .content-image-four-verantwoordingsstructuur-bouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-verantwoordingsstructuur-bouwen {
  width: 100%;
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-verantwoordingsstructuur-bouwen {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
}

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

.quote-author-verantwoordingsstructuur-bouwen {
  font-size: 0.9375rem;
  color: #94a3b8;
  font-style: normal;
  display: block;
}

.conclusion-section-verantwoordingsstructuur-bouwen {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-verantwoordingsstructuur-bouwen {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-verantwoordingsstructuur-bouwen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
}

.conclusion-text-verantwoordingsstructuur-bouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.cta-box-verantwoordingsstructuur-bouwen {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-title-verantwoordingsstructuur-bouwen {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-verantwoordingsstructuur-bouwen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #e0f2fe;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.cta-box-verantwoordingsstructuur-bouwen .btn {
  background: #ffffff;
  color: #0c1929;
}

.cta-box-verantwoordingsstructuur-bouwen .btn:hover {
  background: #f0f4f8;
  transform: translateY(-2px);
}

.related-section-verantwoordingsstructuur-bouwen {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-verantwoordingsstructuur-bouwen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-verantwoordingsstructuur-bouwen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.related-subtitle-verantwoordingsstructuur-bouwen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #94a3b8;
  line-height: 1.6;
}

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

.related-card-verantwoordingsstructuur-bouwen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-verantwoordingsstructuur-bouwen:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.related-card-image-verantwoordingsstructuur-bouwen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

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

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

.related-card-title-verantwoordingsstructuur-bouwen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-verantwoordingsstructuur-bouwen {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.6;
}

.related-card-link-verantwoordingsstructuur-bouwen {
  font-size: 0.9375rem;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  display: inline-block;
}

.related-card-link-verantwoordingsstructuur-bouwen:hover {
  color: #06b6d4;
  transform: translateX(4px);
}

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

.disclaimer-section-verantwoordingsstructuur-bouwen {
  width: 100%;
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-content-verantwoordingsstructuur-bouwen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-left: 4px solid #6b7280;
  border-radius: var(--radius-lg);
}

.disclaimer-title-verantwoordingsstructuur-bouwen {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.disclaimer-text-verantwoordingsstructuur-bouwen {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.7;
}

.breadcrumbs-verantwoordingsstructuur-bouwen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
}

.breadcrumbs-verantwoordingsstructuur-bouwen a {
  color: #bfdbfe;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-verantwoordingsstructuur-bouwen a:hover {
  color: #3b82f6;
}

.breadcrumbs-verantwoordingsstructuur-bouwen span {
  color: #94a3b8;
}

@media (max-width: 768px) {
  .hero-section-verantwoordingsstructuur-bouwen,
  .intro-section-verantwoordingsstructuur-bouwen,
  .content-section-one-verantwoordingsstructuur-bouwen,
  .content-section-two-verantwoordingsstructuur-bouwen,
  .content-section-three-verantwoordingsstructuur-bouwen,
  .content-section-four-verantwoordingsstructuur-bouwen,
  .quote-section-verantwoordingsstructuur-bouwen,
  .conclusion-section-verantwoordingsstructuur-bouwen,
  .related-section-verantwoordingsstructuur-bouwen,
  .disclaimer-section-verantwoordingsstructuur-bouwen {
    padding-top: clamp(2rem, 5vw, 3rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
  }
}

@media (min-width: 768px) {
  .hero-section-verantwoordingsstructuur-bouwen,
  .intro-section-verantwoordingsstructuur-bouwen,
  .content-section-one-verantwoordingsstructuur-bouwen,
  .content-section-two-verantwoordingsstructuur-bouwen,
  .content-section-three-verantwoordingsstructuur-bouwen,
  .content-section-four-verantwoordingsstructuur-bouwen,
  .quote-section-verantwoordingsstructuur-bouwen,
  .conclusion-section-verantwoordingsstructuur-bouwen,
  .related-section-verantwoordingsstructuur-bouwen {
    padding-top: clamp(3rem, 8vw, 5rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
  }
}

@media (min-width: 1024px) {
  .hero-section-verantwoordingsstructuur-bouwen,
  .intro-section-verantwoordingsstructuur-bouwen,
  .content-section-one-verantwoordingsstructuur-bouwen,
  .content-section-two-verantwoordingsstructuur-bouwen,
  .content-section-three-verantwoordingsstructuur-bouwen,
  .content-section-four-verantwoordingsstructuur-bouwen,
  .quote-section-verantwoordingsstructuur-bouwen,
  .conclusion-section-verantwoordingsstructuur-bouwen,
  .related-section-verantwoordingsstructuur-bouwen {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
  }
}

.main-doelstellingen-stellen-effectief {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
}

.breadcrumbs-doelstellingen-stellen-effectief {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.breadcrumbs-doelstellingen-stellen-effectief a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-doelstellingen-stellen-effectief a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.breadcrumbs-doelstellingen-stellen-effectief span {
  color: var(--color-text-muted);
}

.hero-section-doelstellingen-stellen-effectief {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-doelstellingen-stellen-effectief::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-text-block-doelstellingen-stellen-effectief {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.hero-subtitle-doelstellingen-stellen-effectief {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.meta-badges-doelstellingen-stellen-effectief {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-doelstellingen-stellen-effectief {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
  color: var(--color-text-secondary);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-doelstellingen-stellen-effectief i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.hero-stats-doelstellingen-stellen-effectief {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-item-doelstellingen-stellen-effectief {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-doelstellingen-stellen-effectief {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-doelstellingen-stellen-effectief {
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image-block-doelstellingen-stellen-effectief {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-doelstellingen-stellen-effectief {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: block;
}

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

  .hero-image-block-doelstellingen-stellen-effectief {
    width: 100%;
  }

  .hero-stats-doelstellingen-stellen-effectief {
    gap: 1rem;
  }
}

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

.intro-wrapper-doelstellingen-stellen-effectief {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-doelstellingen-stellen-effectief {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.intro-title-doelstellingen-stellen-effectief {
  font-size: clamp(1.5rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

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

.intro-image-doelstellingen-stellen-effectief {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-img-doelstellingen-stellen-effectief {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-doelstellingen-stellen-effectief {
    flex-direction: column;
  }

  .intro-image-doelstellingen-stellen-effectief {
    width: 100%;
  }
}

.framework-section-doelstellingen-stellen-effectief {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.section-header-doelstellingen-stellen-effectief {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-doelstellingen-stellen-effectief {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.framework-title-doelstellingen-stellen-effectief {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.framework-subtitle-doelstellingen-stellen-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.principle-card-doelstellingen-stellen-effectief {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.principle-card-doelstellingen-stellen-effectief:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.principle-number-doelstellingen-stellen-effectief {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.principle-title-doelstellingen-stellen-effectief {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.principle-text-doelstellingen-stellen-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

.implementation-wrapper-doelstellingen-stellen-effectief {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.implementation-text-doelstellingen-stellen-effectief {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-title-doelstellingen-stellen-effectief {
  font-size: clamp(1.5rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

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

.steps-container-doelstellingen-stellen-effectief {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-box-doelstellingen-stellen-effectief {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #f1f5f9;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.step-box-doelstellingen-stellen-effectief:hover {
  background: #e2e8f0;
}

.step-number-doelstellingen-stellen-effectief {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-title-doelstellingen-stellen-effectief {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

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

.implementation-image-doelstellingen-stellen-effectief {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impl-img-doelstellingen-stellen-effectief {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .implementation-wrapper-doelstellingen-stellen-effectief {
    flex-direction: column;
  }

  .implementation-image-doelstellingen-stellen-effectief {
    width: 100%;
  }
}

.tracking-section-doelstellingen-stellen-effectief {
  background: var(--color-bg-tertiary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.tracking-content-doelstellingen-stellen-effectief {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.tracking-image-block-doelstellingen-stellen-effectief {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}

.tracking-img-doelstellingen-stellen-effectief {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: block;
}

.tracking-text-block-doelstellingen-stellen-effectief {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tracking-title-doelstellingen-stellen-effectief {
  font-size: clamp(1.5rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.tracking-paragraph-doelstellingen-stellen-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.highlight-box-doelstellingen-stellen-effectief {
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.15);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: 0.5rem 0;
}

.highlight-text-doelstellingen-stellen-effectief {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

.tracking-list-doelstellingen-stellen-effectief {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.tracking-item-doelstellingen-stellen-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.tracking-item-doelstellingen-stellen-effectief::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .tracking-content-doelstellingen-stellen-effectief {
    flex-direction: column;
  }

  .tracking-image-block-doelstellingen-stellen-effectief {
    order: 0;
    width: 100%;
  }
}

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

.obstacles-header-doelstellingen-stellen-effectief {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.obstacles-title-doelstellingen-stellen-effectief {
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.obstacles-subtitle-doelstellingen-stellen-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
}

.obstacles-grid-doelstellingen-stellen-effectief {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.obstacle-card-doelstellingen-stellen-effectief {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.obstacle-card-doelstellingen-stellen-effectief:hover {
  background: #f1f5f9;
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.obstacle-title-doelstellingen-stellen-effectief {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.obstacle-text-doelstellingen-stellen-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

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

.quote-section-doelstellingen-stellen-effectief {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-doelstellingen-stellen-effectief {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  margin: 0;
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.quote-author-doelstellingen-stellen-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
  display: block;
}

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

.conclusion-content-doelstellingen-stellen-effectief {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.conclusion-image-block-doelstellingen-stellen-effectief {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conclusion-img-doelstellingen-stellen-effectief {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.conclusion-text-block-doelstellingen-stellen-effectief {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-doelstellingen-stellen-effectief {
  font-size: clamp(1.5rem, 4vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

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

.cta-box-doelstellingen-stellen-effectief {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.cta-title-doelstellingen-stellen-effectief {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.cta-text-doelstellingen-stellen-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.btn-primary-doelstellingen-stellen-effectief {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.btn-primary-doelstellingen-stellen-effectief:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .conclusion-content-doelstellingen-stellen-effectief {
    flex-direction: column;
  }

  .conclusion-image-block-doelstellingen-stellen-effectief {
    width: 100%;
  }
}

.disclaimer-section-doelstellingen-stellen-effectief {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-box-doelstellingen-stellen-effectief {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-doelstellingen-stellen-effectief {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.375rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-doelstellingen-stellen-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

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

.related-header-doelstellingen-stellen-effectief {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.related-subtitle-doelstellingen-stellen-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
}

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

.related-card-doelstellingen-stellen-effectief {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.related-card-doelstellingen-stellen-effectief:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 35px rgba(59, 130, 246, 0.15);
  transform: translateY(-6px);
}

.related-card-image-doelstellingen-stellen-effectief {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-title-doelstellingen-stellen-effectief {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  padding-top: 0.5rem;
  margin: 0;
}

.related-card-text-doelstellingen-stellen-effectief {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  line-height: 1.6;
  margin: 0;
}

.related-card-link-doelstellingen-stellen-effectief {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 3vw, 1.5rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.related-card-link-doelstellingen-stellen-effectief:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

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

@media (max-width: 768px) {
  .breadcrumbs-doelstellingen-stellen-effectief {
    font-size: 0.75rem;
  }

  .hero-title-doelstellingen-stellen-effectief {
    font-size: 1.75rem;
  }

  .hero-stats-doelstellingen-stellen-effectief {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .principle-card-doelstellingen-stellen-effectief {
    flex: 1 1 300px;
  }

  .obstacle-card-doelstellingen-stellen-effectief {
    flex: 1 1 300px;
  }

  .related-card-doelstellingen-stellen-effectief {
    flex: 1 1 300px;
  }
}

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

.main-verantwoordingspartners-vinden {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.hero-section-verantwoordingspartners-vinden {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-verantwoordingspartners-vinden {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.9375rem);
}

.breadcrumbs-verantwoordingspartners-vinden a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumbs-verantwoordingspartners-vinden a:hover {
  opacity: 0.8;
}

.breadcrumbs-verantwoordingspartners-vinden span {
  color: var(--color-text-muted);
}

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

.hero-text-wrapper-verantwoordingspartners-vinden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-verantwoordingspartners-vinden {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-verantwoordingspartners-vinden {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-verantwoordingspartners-vinden {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.meta-badge-verantwoordingspartners-vinden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-verantwoordingspartners-vinden i {
  color: var(--color-secondary);
}

.hero-image-wrapper-verantwoordingspartners-vinden {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-verantwoordingspartners-vinden {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

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

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

.intro-text-block-verantwoordingspartners-vinden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-verantwoordingspartners-vinden {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.intro-text-verantwoordingspartners-vinden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-block-verantwoordingspartners-vinden {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-verantwoordingspartners-vinden {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

.characteristics-section-verantwoordingspartners-vinden {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.section-header-verantwoordingspartners-vinden {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-verantwoordingspartners-vinden {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.characteristics-title-verantwoordingspartners-vinden {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.characteristics-cards-verantwoordingspartners-vinden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.characteristics-card-verantwoordingspartners-vinden {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.characteristics-card-verantwoordingspartners-vinden:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.characteristics-card-icon-verantwoordingspartners-vinden {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.75rem;
}

.characteristics-card-title-verantwoordingspartners-vinden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
}

.characteristics-card-text-verantwoordingspartners-vinden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

.finding-content-verantwoordingspartners-vinden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.finding-text-block-verantwoordingspartners-vinden {
  flex: 1 1 50%;
  max-width: 50%;
}

.finding-title-verantwoordingspartners-vinden {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.finding-text-verantwoordingspartners-vinden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.finding-steps-verantwoordingspartners-vinden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.finding-step-verantwoordingspartners-vinden {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.finding-step-verantwoordingspartners-vinden:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(8px);
}

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

.finding-step-content-verantwoordingspartners-vinden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.finding-step-title-verantwoordingspartners-vinden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.finding-step-text-verantwoordingspartners-vinden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.finding-image-block-verantwoordingspartners-vinden {
  flex: 1 1 50%;
  max-width: 50%;
}

.finding-image-verantwoordingspartners-vinden {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

.building-section-verantwoordingspartners-vinden {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.building-content-verantwoordingspartners-vinden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.building-image-block-verantwoordingspartners-vinden {
  flex: 1 1 50%;
  max-width: 50%;
}

.building-image-verantwoordingspartners-vinden {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.building-text-block-verantwoordingspartners-vinden {
  flex: 1 1 50%;
  max-width: 50%;
}

.building-title-verantwoordingspartners-vinden {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.building-text-verantwoordingspartners-vinden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.building-highlight-verantwoordingspartners-vinden {
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.building-highlight-text-verantwoordingspartners-vinden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-weight: 500;
}

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

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

.challenges-title-verantwoordingspartners-vinden {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.challenges-grid-verantwoordingspartners-vinden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.challenges-card-verantwoordingspartners-vinden {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.challenges-card-verantwoordingspartners-vinden:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.challenges-card-title-verantwoordingspartners-vinden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
}

.challenges-card-text-verantwoordingspartners-vinden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.conclusion-section-verantwoordingspartners-vinden {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-verantwoordingspartners-vinden {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-verantwoordingspartners-vinden {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  line-height: 1.25;
  text-align: center;
}

.conclusion-text-verantwoordingspartners-vinden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-quote-verantwoordingspartners-vinden {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-secondary);
  background: var(--color-bg-card);
  margin: 2rem 0;
  border-radius: var(--radius-lg);
}

.conclusion-quote-text-verantwoordingspartners-vinden {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.conclusion-quote-cite-verantwoordingspartners-vinden {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
}

.disclaimer-section-verantwoordingspartners-vinden {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-box-verantwoordingspartners-vinden {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-verantwoordingspartners-vinden {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.related-section-verantwoordingspartners-vinden {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-title-verantwoordingspartners-vinden {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

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

.related-card-verantwoordingspartners-vinden {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.related-card-verantwoordingspartners-vinden:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 130, 246, 0.4);
}

.related-card-image-verantwoordingspartners-vinden {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-verantwoordingspartners-vinden {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-verantwoordingspartners-vinden {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

@media (min-width: 768px) {
  .hero-section-verantwoordingspartners-vinden {
    padding: 5rem 0;
  }
  
  .intro-section-verantwoordingspartners-vinden {
    padding: 5rem 0;
  }
  
  .characteristics-section-verantwoordingspartners-vinden {
    padding: 5rem 0;
  }
  
  .finding-section-verantwoordingspartners-vinden {
    padding: 5rem 0;
  }
  
  .building-section-verantwoordingspartners-vinden {
    padding: 5rem 0;
  }
  
  .challenges-section-verantwoordingspartners-vinden {
    padding: 5rem 0;
  }
  
  .conclusion-section-verantwoordingspartners-vinden {
    padding: 5rem 0;
  }
  
  .related-section-verantwoordingspartners-vinden {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-verantwoordingspartners-vinden {
    padding: 6rem 0;
  }
  
  .intro-section-verantwoordingspartners-vinden {
    padding: 6rem 0;
  }
  
  .characteristics-section-verantwoordingspartners-vinden {
    padding: 6rem 0;
  }
  
  .finding-section-verantwoordingspartners-vinden {
    padding: 6rem 0;
  }
  
  .building-section-verantwoordingspartners-vinden {
    padding: 6rem 0;
  }
  
  .challenges-section-verantwoordingspartners-vinden {
    padding: 6rem 0;
  }
  
  .conclusion-section-verantwoordingspartners-vinden {
    padding: 6rem 0;
  }
  
  .related-section-verantwoordingspartners-vinden {
    padding: 6rem 0;
  }
}

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

.main-voortgang-volgen-reflecteren {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

.hero-section-voortgang-volgen-reflecteren {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.breadcrumbs-voortgang-volgen-reflecteren {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.breadcrumbs-voortgang-volgen-reflecteren a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-voortgang-volgen-reflecteren a:hover {
  color: var(--color-accent-warm);
}

.breadcrumbs-voortgang-volgen-reflecteren span {
  color: var(--color-text-secondary);
}

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

.hero-text-block-voortgang-volgen-reflecteren {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-voortgang-volgen-reflecteren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-voortgang-volgen-reflecteren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-voortgang-volgen-reflecteren {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: var(--color-text-secondary);
}

.meta-badge-voortgang-volgen-reflecteren i {
  color: var(--color-primary);
}

.hero-image-block-voortgang-volgen-reflecteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-voortgang-volgen-reflecteren {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-voortgang-volgen-reflecteren {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-block-voortgang-volgen-reflecteren,
  .hero-image-block-voortgang-volgen-reflecteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-voortgang-volgen-reflecteren {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-tertiary);
  position: relative;
  overflow: hidden;
}

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

.intro-text-voortgang-volgen-reflecteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-voortgang-volgen-reflecteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-content-voortgang-volgen-reflecteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-voortgang-volgen-reflecteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-voortgang-volgen-reflecteren img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-voortgang-volgen-reflecteren {
    flex-direction: column;
  }

  .intro-text-voortgang-volgen-reflecteren,
  .intro-image-voortgang-volgen-reflecteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.methods-section-voortgang-volgen-reflecteren {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.methods-header-voortgang-volgen-reflecteren {
  text-align: center;
  margin-bottom: 3rem;
}

.methods-tag-voortgang-volgen-reflecteren {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methods-title-voortgang-volgen-reflecteren {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.methods-grid-voortgang-volgen-reflecteren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.methods-card-voortgang-volgen-reflecteren {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.methods-card-voortgang-volgen-reflecteren:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.methods-card-icon-voortgang-volgen-reflecteren {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.methods-card-title-voortgang-volgen-reflecteren {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.methods-card-text-voortgang-volgen-reflecteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.tools-section-voortgang-volgen-reflecteren {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.tools-wrapper-voortgang-volgen-reflecteren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.tools-content-voortgang-volgen-reflecteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-title-voortgang-volgen-reflecteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.tools-list-voortgang-volgen-reflecteren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tools-item-voortgang-volgen-reflecteren {
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.tools-item-title-voortgang-volgen-reflecteren {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.tools-item-text-voortgang-volgen-reflecteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.tools-image-voortgang-volgen-reflecteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-image-voortgang-volgen-reflecteren img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .tools-wrapper-voortgang-volgen-reflecteren {
    flex-direction: column;
  }

  .tools-content-voortgang-volgen-reflecteren,
  .tools-image-voortgang-volgen-reflecteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.reflection-section-voortgang-volgen-reflecteren {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-tertiary);
  position: relative;
  overflow: hidden;
}

.reflection-wrapper-voortgang-volgen-reflecteren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.reflection-image-voortgang-volgen-reflecteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.reflection-image-voortgang-volgen-reflecteren img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
}

.reflection-content-voortgang-volgen-reflecteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.reflection-title-voortgang-volgen-reflecteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.reflection-text-voortgang-volgen-reflecteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.reflection-quote-voortgang-volgen-reflecteren {
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  margin: 2rem 0;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #ffffff;
  border-radius: var(--radius-md);
}

.reflection-highlight-voortgang-volgen-reflecteren {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(251, 191, 36, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.reflection-highlight-title-voortgang-volgen-reflecteren {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-accent-warm);
  margin-bottom: 1rem;
}

.reflection-highlight-list-voortgang-volgen-reflecteren {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reflection-highlight-list-voortgang-volgen-reflecteren li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.reflection-highlight-list-voortgang-volgen-reflecteren strong {
  color: var(--color-accent-warm);
}

@media (max-width: 768px) {
  .reflection-wrapper-voortgang-volgen-reflecteren {
    flex-direction: column;
  }

  .reflection-image-voortgang-volgen-reflecteren,
  .reflection-content-voortgang-volgen-reflecteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.framework-section-voortgang-volgen-reflecteren {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.framework-header-voortgang-volgen-reflecteren {
  text-align: center;
  margin-bottom: 3rem;
}

.framework-tag-voortgang-volgen-reflecteren {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.framework-title-voortgang-volgen-reflecteren {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
}

.framework-steps-voortgang-volgen-reflecteren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.framework-step-voortgang-volgen-reflecteren {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.framework-step-voortgang-volgen-reflecteren:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(8px);
}

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

.framework-step-content-voortgang-volgen-reflecteren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.framework-step-title-voortgang-volgen-reflecteren {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.framework-step-text-voortgang-volgen-reflecteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .framework-step-voortgang-volgen-reflecteren {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .framework-step-number-voortgang-volgen-reflecteren {
    min-width: auto;
  }
}

.tips-section-voortgang-volgen-reflecteren {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.tips-title-voortgang-volgen-reflecteren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

.tips-grid-voortgang-volgen-reflecteren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tips-card-voortgang-volgen-reflecteren {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.tips-card-voortgang-volgen-reflecteren:hover {
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tips-card-title-voortgang-volgen-reflecteren {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.tips-card-text-voortgang-volgen-reflecteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.conclusion-section-voortgang-volgen-reflecteren {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-tertiary);
  position: relative;
  overflow: hidden;
}

.conclusion-content-voortgang-volgen-reflecteren {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-voortgang-volgen-reflecteren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-text-voortgang-volgen-reflecteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.conclusion-cta-voortgang-volgen-reflecteren {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  text-align: center;
}

.conclusion-cta-title-voortgang-volgen-reflecteren {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.conclusion-cta-text-voortgang-volgen-reflecteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.cta-button-voortgang-volgen-reflecteren {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.cta-button-voortgang-volgen-reflecteren:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.disclaimer-section-voortgang-volgen-reflecteren {
  width: 100%;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}

.disclaimer-box-voortgang-volgen-reflecteren {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  border-right: 1px solid rgba(59, 130, 246, 0.2);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.disclaimer-title-voortgang-volgen-reflecteren {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-accent-warm);
  margin-bottom: 0.75rem;
}

.disclaimer-text-voortgang-volgen-reflecteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-section-voortgang-volgen-reflecteren {
  width: 100%;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.related-header-voortgang-volgen-reflecteren {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-voortgang-volgen-reflecteren {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.related-subtitle-voortgang-volgen-reflecteren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

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

.related-card-voortgang-volgen-reflecteren {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.related-card-voortgang-volgen-reflecteren:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-voortgang-volgen-reflecteren {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-voortgang-volgen-reflecteren {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.5rem);
}

.related-card-title-voortgang-volgen-reflecteren {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-voortgang-volgen-reflecteren {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

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

.related-card-link-voortgang-volgen-reflecteren:hover {
  color: var(--color-accent-warm);
  gap: 1rem;
}

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

@media (min-width: 768px) {
  .hero-section-voortgang-volgen-reflecteren,
  .intro-section-voortgang-volgen-reflecteren,
  .methods-section-voortgang-volgen-reflecteren,
  .tools-section-voortgang-volgen-reflecteren,
  .reflection-section-voortgang-volgen-reflecteren,
  .framework-section-voortgang-volgen-reflecteren,
  .tips-section-voortgang-volgen-reflecteren,
  .conclusion-section-voortgang-volgen-reflecteren,
  .disclaimer-section-voortgang-volgen-reflecteren,
  .related-section-voortgang-volgen-reflecteren {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-voortgang-volgen-reflecteren,
  .intro-section-voortgang-volgen-reflecteren,
  .methods-section-voortgang-volgen-reflecteren,
  .tools-section-voortgang-volgen-reflecteren,
  .reflection-section-voortgang-volgen-reflecteren,
  .framework-section-voortgang-volgen-reflecteren,
  .tips-section-voortgang-volgen-reflecteren,
  .conclusion-section-voortgang-volgen-reflecteren,
  .disclaimer-section-voortgang-volgen-reflecteren,
  .related-section-voortgang-volgen-reflecteren {
    padding: clamp(5rem, 8vw, 6rem) 0;
  }
}

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

.main-tegenslag-aanpassingen-beheren {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

.breadcrumbs-tegenslag-aanpassingen-beheren {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin-bottom: 2rem;
  color: var(--color-text-secondary);
}

.breadcrumbs-tegenslag-aanpassingen-beheren a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-tegenslag-aanpassingen-beheren a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.breadcrumbs-tegenslag-aanpassingen-beheren span {
  color: var(--color-text-muted);
}

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

.hero-text-block-tegenslag-aanpassingen-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-tegenslag-aanpassingen-beheren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-tegenslag-aanpassingen-beheren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-tegenslag-aanpassingen-beheren {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-tegenslag-aanpassingen-beheren i {
  color: var(--color-secondary);
}

.hero-stats-tegenslag-aanpassingen-beheren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
}

.stat-item-tegenslag-aanpassingen-beheren {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.stat-label-tegenslag-aanpassingen-beheren {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  opacity: 0.9;
}

.hero-image-block-tegenslag-aanpassingen-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-tegenslag-aanpassingen-beheren {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.hero-image-tegenslag-aanpassingen-beheren:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .hero-content-tegenslag-aanpassingen-beheren {
    flex-direction: column;
  }

  .hero-text-block-tegenslag-aanpassingen-beheren,
  .hero-image-block-tegenslag-aanpassingen-beheren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-tegenslag-aanpassingen-beheren {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

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

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

.intro-text-block-tegenslag-aanpassingen-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-tegenslag-aanpassingen-beheren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.intro-text-tegenslag-aanpassingen-beheren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-image-block-tegenslag-aanpassingen-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-tegenslag-aanpassingen-beheren {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-tegenslag-aanpassingen-beheren {
    flex-direction: column;
  }

  .intro-text-block-tegenslag-aanpassingen-beheren,
  .intro-image-block-tegenslag-aanpassingen-beheren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.process-header-tegenslag-aanpassingen-beheren {
  text-align: center;
  margin-bottom: 3rem;
}

.process-tag-tegenslag-aanpassingen-beheren {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.process-subtitle-tegenslag-aanpassingen-beheren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.process-section-steps-tegenslag-aanpassingen-beheren {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-section-step-tegenslag-aanpassingen-beheren {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  flex-direction: column;
}

.process-section-step-tegenslag-aanpassingen-beheren:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(4px);
}

.process-section-step-number-tegenslag-aanpassingen-beheren {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
}

.process-section-step-content-tegenslag-aanpassingen-beheren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-section-step-title-tegenslag-aanpassingen-beheren {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.process-section-step-text-tegenslag-aanpassingen-beheren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .process-section-step-tegenslag-aanpassingen-beheren {
    padding: 1rem;
    gap: 1rem;
  }

  .process-section-step-number-tegenslag-aanpassingen-beheren {
    min-width: 50px;
  }
}

.content-section-one-tegenslag-aanpassingen-beheren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-tegenslag-aanpassingen-beheren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-one-tegenslag-aanpassingen-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-tegenslag-aanpassingen-beheren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.content-text-one-tegenslag-aanpassingen-beheren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-quote-tegenslag-aanpassingen-beheren {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: #f8fafc;
  margin: 2rem 0;
  font-style: italic;
  border-radius: var(--radius-md);
}

.featured-quote-tegenslag-aanpassingen-beheren p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 1rem;
  color: #1e293b;
  line-height: 1.6;
}

.featured-quote-tegenslag-aanpassingen-beheren cite {
  font-size: 0.875rem;
  color: #64748b;
  opacity: 0.8;
  font-style: normal;
}

.highlight-box-tegenslag-aanpassingen-beheren {
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
  margin-top: 1.5rem;
}

.highlight-title-tegenslag-aanpassingen-beheren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.highlight-list-tegenslag-aanpassingen-beheren {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item-tegenslag-aanpassingen-beheren {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-tegenslag-aanpassingen-beheren::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

.content-image-one-tegenslag-aanpassingen-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-tegenslag-aanpassingen-beheren {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

@media (max-width: 768px) {
  .content-wrapper-one-tegenslag-aanpassingen-beheren {
    flex-direction: column;
  }

  .content-text-one-tegenslag-aanpassingen-beheren,
  .content-image-one-tegenslag-aanpassingen-beheren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-tegenslag-aanpassingen-beheren {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-tegenslag-aanpassingen-beheren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-two-tegenslag-aanpassingen-beheren {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-two-tegenslag-aanpassingen-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-tegenslag-aanpassingen-beheren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.content-text-two-tegenslag-aanpassingen-beheren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-cards-two-tegenslag-aanpassingen-beheren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-card-two-tegenslag-aanpassingen-beheren {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.feature-card-two-tegenslag-aanpassingen-beheren:hover {
  background: rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.feature-card-icon-two-tegenslag-aanpassingen-beheren {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.feature-card-title-two-tegenslag-aanpassingen-beheren {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.feature-card-text-two-tegenslag-aanpassingen-beheren {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-wrapper-two-tegenslag-aanpassingen-beheren {
    flex-direction: column;
  }

  .content-image-two-tegenslag-aanpassingen-beheren,
  .content-text-two-tegenslag-aanpassingen-beheren {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .content-image-two-tegenslag-aanpassingen-beheren {
    order: -1;
  }
}

.content-section-three-tegenslag-aanpassingen-beheren {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-tegenslag-aanpassingen-beheren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-three-tegenslag-aanpassingen-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-tegenslag-aanpassingen-beheren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.content-text-three-tegenslag-aanpassingen-beheren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tips-box-tegenslag-aanpassingen-beheren {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.tips-title-tegenslag-aanpassingen-beheren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tips-list-tegenslag-aanpassingen-beheren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tip-item-tegenslag-aanpassingen-beheren {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.6;
}

.tip-number-tegenslag-aanpassingen-beheren {
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.tip-text-tegenslag-aanpassingen-beheren {
  flex: 1;
}

.content-image-three-tegenslag-aanpassingen-beheren {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .content-wrapper-three-tegenslag-aanpassingen-beheren {
    flex-direction: column;
  }

  .content-text-three-tegenslag-aanpassingen-beheren,
  .content-image-three-tegenslag-aanpassingen-beheren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-tegenslag-aanpassingen-beheren {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-tegenslag-aanpassingen-beheren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.conclusion-text-tegenslag-aanpassingen-beheren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-section-tegenslag-aanpassingen-beheren {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  margin-top: 3rem;
  text-align: center;
}

.cta-title-tegenslag-aanpassingen-beheren {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-tegenslag-aanpassingen-beheren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.cta-button-tegenslag-aanpassingen-beheren {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #0f172a;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.cta-button-tegenslag-aanpassingen-beheren:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.disclaimer-section-tegenslag-aanpassingen-beheren {
  background: rgba(59, 130, 246, 0.05);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.disclaimer-content-tegenslag-aanpassingen-beheren {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-tegenslag-aanpassingen-beheren {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.disclaimer-text-tegenslag-aanpassingen-beheren {
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.related-header-tegenslag-aanpassingen-beheren {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-tegenslag-aanpassingen-beheren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

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

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

.related-card-tegenslag-aanpassingen-beheren {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-tegenslag-aanpassingen-beheren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.related-card-image-tegenslag-aanpassingen-beheren {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-image-tegenslag-aanpassingen-beheren img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-tegenslag-aanpassingen-beheren:hover .related-card-image-tegenslag-aanpassingen-beheren img {
  transform: scale(1.05);
}

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

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

.related-card-text-tegenslag-aanpassingen-beheren {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-card-link-tegenslag-aanpassingen-beheren {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.related-card-link-tegenslag-aanpassingen-beheren:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

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

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

  .breadcrumbs-tegenslag-aanpassingen-beheren {
    margin-bottom: 1.5rem;
  }

  .hero-meta-tegenslag-aanpassingen-beheren {
    margin-bottom: 1.5rem;
  }

  .meta-badge-tegenslag-aanpassingen-beheren {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .featured-quote-tegenslag-aanpassingen-beheren {
    padding: 1.5rem 1.5rem;
    margin: 1.5rem 0;
  }

  .highlight-box-tegenslag-aanpassingen-beheren {
    padding: 1.25rem;
    margin-top: 1rem;
  }

  .tips-box-tegenslag-aanpassingen-beheren {
    padding: 1.25rem;
  }

  .cta-section-tegenslag-aanpassingen-beheren {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .disclaimer-section-tegenslag-aanpassingen-beheren {
    padding: 1.5rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 2rem);
  }
}

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

@media print {
  .main-tegenslag-aanpassingen-beheren {
    background: white;
    color: black;
  }

  .cta-button-tegenslag-aanpassingen-beheren,
  .related-card-link-tegenslag-aanpassingen-beheren {
    display: none;
  }

  .hero-image-tegenslag-aanpassingen-beheren,
  .intro-image-tegenslag-aanpassingen-beheren,
  .content-image-tegenslag-aanpassingen-beheren,
  .related-card-image-tegenslag-aanpassingen-beheren {
    max-width: 100%;
    height: auto;
  }
}

.accountability-coaching-about {
  width: 100%;
  font-family: var(--font-primary);
  color: #1e293b;
}

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

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

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

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

.hero-coaching-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #475569;
  line-height: 1.6;
  max-width: 700px;
}

.hero-coaching-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

.stat-item-coaching-about {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

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

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

.journey-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

.journey-intro-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

.journey-image-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.journey-narrative-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.journey-narrative-about p {
  color: #475569;
}

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

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

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

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

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

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

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #3b82f6;
}

.step-number-about {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

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

.step-title-about {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

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

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

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

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

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

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

.principle-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.principle-icon-about {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.principle-card-title-about {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

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

.featured-quote-about {
  background: #0f172a;
  color: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  border-left: 5px solid #3b82f6;
  margin: clamp(2rem, 4vw, 3rem) 0;
  font-style: italic;
}

.featured-quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-quote-author-about {
  font-size: 0.9375rem;
  color: #94a3b8;
  font-style: normal;
}

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

.commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
}

.commitment-heading-about {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.commitment-text-about p {
  color: #475569;
  margin-bottom: 1rem;
}

.commitment-highlight-about {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f0f9ff;
  border-radius: 10px;
  border-left: 4px solid #3b82f6;
}

.commitment-highlight-title-about {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.commitment-highlight-text-about {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 850px;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: #3b82f6;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

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

@media (min-width: 768px) {
  .hero-coaching-content-about {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .hero-coaching-image-about {
    max-width: 500px;
    flex-shrink: 0;
  }

  .hero-stats-coaching-about {
    gap: 3rem;
  }

  .journey-image-about {
    max-width: 100%;
  }

  .principles-cards-about {
    justify-content: space-between;
  }

  .principle-card-about {
    flex: 1 1 calc(33.333% - 1.33rem);
    max-width: none;
  }
}

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

  .hero-coaching-image-about {
    order: -1;
  }

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

  .methodology-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    min-width: auto;
  }
}

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

  .stat-item-coaching-about {
    flex: 1 1 100%;
  }

  .featured-quote-about {
    padding: 1.5rem;
  }

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

.accountability-hub {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

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

.privacy-hero .container {
  max-width: 900px;
}

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

.privacy-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.privacy-hero-date {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
}

.privacy-hero-intro {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 800px;
}

@media (min-width: 768px) {
  .privacy-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .privacy-hero {
    padding: 6rem 0;
  }
}

.privacy-content {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.privacy-content .container {
  max-width: 900px;
}

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

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

.privacy-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.privacy-section h3 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #bfdbfe;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.privacy-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #cbd5e1;
}

.privacy-section ul {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding-left: clamp(1.5rem, 3vw, 2rem);
  list-style: none;
}

.privacy-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #cbd5e1;
  position: relative;
  padding-left: 1.25rem;
}

.privacy-section li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.privacy-subsection {
  background: rgba(59, 130, 246, 0.05);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.privacy-subsection h3 {
  margin-top: 0;
  color: #ffffff;
}

.privacy-subsection p {
  margin: 0;
}

@media (min-width: 768px) {
  .privacy-content {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .privacy-content {
    padding: 6rem 0;
  }
}

.privacy-contact {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.privacy-contact .container {
  max-width: 900px;
}

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

.privacy-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.privacy-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0;
}

.privacy-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(59, 130, 246, 0.08);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
}

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

.privacy-contact-label {
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 1rem);
  font-weight: 600;
  color: #bfdbfe;
}

.privacy-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #ffffff;
}

@media (min-width: 768px) {
  .privacy-contact {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .privacy-contact {
    padding: 6rem 0;
  }
}

@media (max-width: 767px) {
  .privacy-hero-intro {
    font-size: 0.9375rem;
  }
  
  .privacy-section li {
    padding-left: 1.5rem;
  }
}

.thank-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.thank-section {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 8vw, 6rem) 0;
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.thank-icon {
  font-size: clamp(3.5rem, 12vw, 6rem);
  color: var(--color-secondary);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    color: var(--color-secondary);
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.3));
  }
  50% {
    color: var(--color-primary);
    filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.4));
  }
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  color: var(--color-secondary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-highlights {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 500px;
  margin: clamp(0.5rem, 2vw, 1.5rem) 0 0 0;
}

.highlight-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.highlight-item i {
  color: var(--color-primary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 3rem);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

.btn-primary:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 10vw, 8rem) 0;
    min-height: 100vh;
  }

  .thank-highlights {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .highlight-item {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    gap: 3rem;
  }

  .thank-highlights {
    gap: 2rem;
  }

  .highlight-item {
    gap: 1.25rem;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }
}

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.error-illustration {
  position: relative;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.error-code {
  display: inline-block;
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  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: clamp(-0.05em, -2vw, -0.15em);
  font-family: var(--font-heading);
  line-height: 1;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.error-icon {
  position: absolute;
  bottom: clamp(-0.5rem, -2vw, -1rem);
  right: clamp(-1rem, -3vw, -2rem);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-secondary);
  opacity: 0.7;
  animation: float 3s ease-in-out infinite;
}

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

.error-title {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  letter-spacing: -0.02em;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 550px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  flex-wrap: wrap;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-primary);
}

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

.error-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  max-width: 500px;
}

.tip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.tip-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
}

.tip-item i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-secondary);
}

.tip-item span {
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.9375rem);
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  animation: pulse-slow 4s ease-in-out infinite;
}

.decoration-1 {
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  background: var(--color-primary);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.decoration-2 {
  width: clamp(150px, 30vw, 400px);
  height: clamp(150px, 30vw, 400px);
  background: var(--color-secondary);
  bottom: -5%;
  right: -3%;
  animation-delay: 1s;
}

.decoration-3 {
  width: clamp(100px, 20vw, 300px);
  height: clamp(100px, 20vw, 300px);
  background: var(--color-accent-warm);
  top: 50%;
  right: 5%;
  animation-delay: 2s;
}

@keyframes pulse-slow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.05;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 10vw, 6rem) 0;
    min-height: 100vh;
  }

  .error-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .error-code-wrapper {
    margin-bottom: 1.5rem;
  }

  .error-code {
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
  }

  .error-tips {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
  }

  .tip-item {
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: clamp(4rem, 12vw, 8rem) 0;
  }

  .error-content {
    gap: 3rem;
  }

  .error-code {
    text-shadow: 0 0 50px rgba(59, 130, 246, 0.5);
  }

  .error-subtitle {
    font-size: 1.25rem;
  }

  .error-description {
    font-size: 1.0625rem;
  }

  .tip-item {
    padding: 1.5rem;
  }

  .tip-item:hover {
    transform: translateY(-6px);
  }
}

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

  .error-content {
    gap: 3.5rem;
  }

  .error-code {
    text-shadow: 0 0 60px rgba(59, 130, 246, 0.6);
  }
}

@media (max-width: 480px) {
  .error-content {
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .error-tips {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tip-item {
    padding: 1rem;
  }

  .error-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-icon,
  .decoration-circle,
  .btn,
  .tip-item {
    animation: none;
    transition: none;
  }
}

@media (prefers-color-scheme: dark) {
  .error-section {
    background: var(--color-bg-primary);
  }

  .error-title {
    color: #ffffff;
  }

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

  .error-description {
    color: var(--color-text-muted);
  }
}