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

:root {
  
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-text-light: #6b7280;
  
  
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #d1fae5;
  --color-secondary: #10b981;
  --color-secondary-light: #a7f3d0;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.08);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

ul, ol {
  list-style-position: inside;
}

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

strong {
  font-weight: 600;
  color: var(--color-text-primary);
}

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

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

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

.btn:hover {
  text-decoration: none;
}

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

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

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

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

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

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

.btn-light {
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-color: rgba(5, 150, 105, 0.2);
}

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

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

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

.card-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

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

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

.card-footer {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid #e5e7eb;
}

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

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

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

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

@media (max-width: 768px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.flex {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.flex-between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

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

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

.py-1 { padding: var(--space-sm) 0; }
.py-2 { padding: var(--space-md) 0; }
.py-3 { padding: var(--space-lg) 0; }
.py-4 { padding: var(--space-xl) 0; }
.py-5 { padding: var(--space-2xl) 0; }
.py-6 { padding: var(--space-3xl) 0; }

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

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

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

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

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

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

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

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

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

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

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: currentColor;
  font-size: 1.5rem;
}

.icon-sm {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
}

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

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

.icon-primary {
  color: var(--color-primary);
}

.icon-secondary {
  color: var(--color-secondary);
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

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

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

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  transition: border-color var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

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

button[type="submit"],
.form-submit-btn {
  background: var(--color-primary);
  color: #ffffff;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
  box-shadow: var(--shadow-md);
}

button[type="submit"]:hover,
.form-submit-btn:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

button[type="submit"]:active,
.form-submit-btn:active {
  transform: translateY(0);
}

.dot-accent {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-block;
}

.line-accent {
  width: 40px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  display: inline-block;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  }

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

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

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

@media (max-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

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

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

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

.animate-fade {
  animation: fadeIn 600ms ease-out;
}

.animate-slide-up {
  animation: slideInUp 600ms ease-out;
}

.animate-slide-down {
  animation: slideInDown 600ms ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.overflow-hidden {
  overflow: hidden;
}

.no-scroll {
  overflow: hidden;
}

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

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

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

  a {
    text-decoration: underline;
  }

  button,
  .btn {
    display: none;
  }
}
.header-resilience-hub {
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-bg-tertiary);
    position: static;
    z-index: 100;
    width: 100%;
  }

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

  .header-resilience-hub-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    flex-shrink: 0;
  }

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

  .header-resilience-hub-logo-text {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
  }

  .header-resilience-hub-desktop-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    margin-left: 3rem;
    justify-content: flex-end;
  }

  .header-resilience-hub-nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
  }

  .header-resilience-hub-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
  }

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

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

  .header-resilience-hub-cta-button {
    padding: 0.625rem 1.25rem;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-block;
    white-space: nowrap;
  }

  .header-resilience-hub-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
  }

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

  .header-resilience-hub-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
  }

  .header-resilience-hub-mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
  }

  .header-resilience-hub-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }

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

  .header-resilience-hub-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }

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

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

  .header-resilience-hub-mobile-header {
    display: flex;
    justify-content: flex-end;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-bg-tertiary);
  }

  .header-resilience-hub-mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .header-resilience-hub-mobile-link {
    padding: 1rem 1.5rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-bg-tertiary);
    transition: all var(--transition-base);
    display: block;
  }

  .header-resilience-hub-mobile-link:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
    padding-left: 2rem;
  }

  .header-resilience-hub-mobile-cta {
    margin: 1.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    display: block;
    transition: all var(--transition-base);
  }

  .header-resilience-hub-mobile-cta:active {
    background: var(--color-primary-hover);
    transform: scale(0.98);
  }

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

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

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

    .header-resilience-hub-container {
      height: 75px;
    }
  }

  @media (max-width: 767px) {
    .header-resilience-hub-mobile-menu {
      width: 100vw;
      max-width: 100%;
    }
  }

    

.resilience-hub {
  width: 100%;
}

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

.hero-ambient-glow {
  position: absolute;
  top: -10%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh {
  position: absolute;
  top: 20%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at 30% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-accent-2 {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: rgba(10, 185, 105, 0.03);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.hero-radiant-orb {
  position: absolute;
  bottom: 15%;
  left: 15%;
  width: 250px;
  height: 250px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-corner-element {
  position: absolute;
  top: 5%;
  left: 2%;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  transform: rotate(15deg);
  z-index: 1;
  pointer-events: none;
}

.hero-line-accent {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

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

.about-accent-shape-1 {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.about-accent-shape-2 {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.about-glow-element {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.about-floating-panel {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  transform: rotate(8deg);
  z-index: 2;
  pointer-events: none;
}

.about-line-decoration {
  position: absolute;
  bottom: 30%;
  right: 15%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.about-corner-accent {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(5, 150, 105, 0.08);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

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

.about-text-block {
  flex: 1 1 350px;
  min-width: 0;
}

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

.about-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  font-size: 1.5rem;
  font-weight: 800;
  color: #059669;
  flex-shrink: 0;
  min-width: 40px;
}

.about-feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.about-feature-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.about-image-block {
  flex: 1 1 350px;
  min-width: 0;
}

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

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

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

.features-mesh-gradient {
  position: absolute;
  top: -5%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at 40% 50%, rgba(5, 150, 105, 0.07) 0%, transparent 65%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-1 {
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-2 {
  position: absolute;
  top: 30%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.features-floating-shape {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.03);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.features-accent-line {
  position: absolute;
  top: 25%;
  right: 20%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.features-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.features-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

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

.features-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-step:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.08);
}

.features-step-number {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

.features-step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.features-step-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.features-cards-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.features-cards-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

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

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

.features-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(5, 150, 105, 0.2);
}

.features-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
}

.features-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.features-card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

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

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

.featured-gradient-backdrop {
  position: absolute;
  top: 0;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-accent-1 {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 50% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.featured-accent-2 {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.featured-floating-element {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 150px;
  height: 150px;
  background: rgba(5, 150, 105, 0.03);
  border-radius: 45% 55% 50% 50% / 50% 50% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.featured-line-accent {
  position: absolute;
  top: 40%;
  right: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.12), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.featured-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.featured-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.featured-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

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

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

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

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

.featured-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

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

.featured-card-link {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  transition: all 300ms ease;
  margin-top: 0.5rem;
}

.featured-card-link:hover {
  color: #047857;
  text-decoration: underline;
}

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

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

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

.testimonial-glow-shape {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-accent-blur {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 60% 40% 30% 70% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.testimonial-floating-panel {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 160px;
  height: 120px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(5, 150, 105, 0.08);
  border-radius: 12px;
  transform: rotate(-5deg);
  z-index: 2;
  pointer-events: none;
}

.testimonial-corner-element {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(5, 150, 105, 0.08);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.testimonial-line-decoration {
  position: absolute;
  top: 40%;
  right: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.1), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.testimonial-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.testimonial-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonial-quote {
  position: relative;
  z-index: 10;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author-name {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.testimonial-author-role {
  font-size: 0.875rem;
  color: #64748b;
}

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

.testimonial-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-stat-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #059669;
}

.testimonial-stat-label {
  font-size: 0.875rem;
  color: #4b5563;
  text-align: center;
}

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

.values-mesh-1 {
  position: absolute;
  top: -10%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse at 50% 50%, rgba(5, 150, 105, 0.06) 0%, transparent 65%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.values-mesh-2 {
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.values-accent-shape {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.03);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.values-floating-element {
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 150px;
  height: 150px;
  background: rgba(5, 150, 105, 0.02);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.values-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.values-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

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

.values-card {
  flex: 1 1 280px;
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.values-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.15);
}

.values-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

.values-card-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

.process-glow-1 {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.process-glow-2 {
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.process-accent-element {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.03);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.process-floating-shape {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(5, 150, 105, 0.02);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.process-line-accent {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.12), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.process-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.process-step {
  flex: 1 1 240px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.process-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.process-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
}

.process-step-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.cta-gradient-mesh {
  position: absolute;
  top: -5%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at 40% 50%, rgba(5, 150, 105, 0.08) 0%, transparent 65%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-element {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.cta-accent-shape-1 {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.03);
  border-radius: 60% 40% 30% 70% / 40% 50% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.cta-accent-shape-2 {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 180px;
  height: 180px;
  background: rgba(5, 150, 105, 0.02);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.cta-title {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-description {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-large {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  padding: clamp(1rem, 2vw, 1.5rem) clamp(2rem, 4vw, 3rem);
}

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

.contact-accent-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.contact-accent-2 {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 60% 40% 30% 70% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.contact-floating-element {
  position: absolute;
  top: 40%;
  right: 8%;
  width: 150px;
  height: 150px;
  background: rgba(5, 150, 105, 0.02);
  border-radius: 45% 55% 50% 50% / 50% 50% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-line-decoration {
  position: absolute;
  bottom: 30%;
  left: 15%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.1), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.contact-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

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

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

.contact-label {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.9375rem;
}

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

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #9ca3af;
}

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

.contact-privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #4b5563;
  cursor: pointer;
}

.contact-privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.contact-privacy-link {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
}

.contact-privacy-link:hover {
  text-decoration: underline;
}

.contact-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.contact-submit:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

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

.contact-info-block {
  flex: 1 1 400px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
}

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

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

.contact-faq-answer {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  animation: slideUp 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-banner-text {
  color: #e2e8f0;
  margin: 0;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.5;
  flex: 0 1 auto;
}

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

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

.cookie-btn-accept {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.cookie-btn-accept:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

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

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-primary);
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.btn-primary:hover {
  background: #047857;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #059669;
  border: 2px solid #059669;
}

.btn-secondary:hover {
  background: rgba(5, 150, 105, 0.1);
  transform: translateY(-2px);
}

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

  .testimonial-stats {
    flex-direction: column;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-step {
    flex: 1 1 100%;
    max-width: none;
  }

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

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

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

    .footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--color-text-muted);
  position: relative;
  overflow: hidden;
}

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

.footer-content {
  display: block;
}

.footer-section {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

.footer-about-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.footer-about-text {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 400px;
}

.footer-nav-title,
.footer-contact-title,
.footer-legal-title {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.footer-nav-links,
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-direction: column;
}

.footer-nav-link,
.footer-legal-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.footer-contact-phone,
.footer-contact-email,
.footer-contact-address {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.footer-copyright-text {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--color-text-muted);
}

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

  .footer-section {
    flex: 1 1 250px;
    margin-bottom: 0;
  }

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

  .footer-section.footer-copyright {
    flex: 1 1 100%;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
  }

  .footer-nav-links,
  .footer-legal-links {
    flex-direction: column;
  }

  .footer-copyright-text {
    text-align: center;
    border-top: 1px solid var(--color-text-muted);
  }
}

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

  .footer-section {
    flex: 0 1 auto;
  }

  .footer-section.footer-about {
    flex: 1 1 320px;
  }

  .footer-nav-title,
  .footer-contact-title,
  .footer-legal-title {
    font-size: 1.125rem;
  }

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

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

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

.main.category-page-veerkracht-courses {
  width: 100%;
}

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

.hero-deco-glow-1-veerkracht {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-gradient-field-veerkracht {
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-1-veerkracht {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-accent-orb-veerkracht {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(5, 150, 105, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-tag-veerkracht {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title-veerkracht {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-subtitle-veerkracht {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-stats-veerkracht {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 5vw, 3rem);
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(5, 150, 105, 0.15);
  border-bottom: 1px solid rgba(5, 150, 105, 0.15);
}

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

.hero-stat-number-veerkracht {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  display: block;
}

.hero-stat-label-veerkracht {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

.hero-buttons-veerkracht {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

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

.posts-deco-glow-1-veerkracht {
  position: absolute;
  top: 15%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.posts-deco-shape-veerkracht {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 45% 55% 50% 50% / 50% 50% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

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

.posts-title-veerkracht {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.posts-subtitle-veerkracht {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

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

.card-veerkracht {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.card-veerkracht:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

.card-image-veerkracht {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.card-content-veerkracht {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

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

.card-meta-veerkracht {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.card-meta-item-veerkracht {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

.card-meta-item-veerkracht i {
  color: #059669;
  font-size: 0.875rem;
}

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

.card-link-veerkracht {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 300ms ease-in-out;
  text-decoration: none;
  margin-top: auto;
}

.card-link-veerkracht:hover {
  color: #047857;
  gap: 0.75rem;
}

.card-link-veerkracht::after {
  content: "";
  display: inline-block;
  transition: transform 300ms ease-in-out;
}

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

.process-section-veerkracht {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #f9fafb 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.process-deco-glow-1-veerkracht {
  position: absolute;
  top: 20%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-shape-1-veerkracht {
  position: absolute;
  bottom: 15%;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.process-deco-shape-2-veerkracht {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  z-index: 1;
  pointer-events: none;
}

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

.process-title-veerkracht {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.process-step-veerkracht {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 300ms ease;
}

.process-step-veerkracht:hover {
  border-color: #059669;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.08);
}

.process-step-number-veerkracht {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step-content-veerkracht {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-veerkracht {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

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

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

  .process-step-number-veerkracht {
    align-self: flex-start;
  }
}

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

.benefits-deco-glow-veerkracht {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-deco-accent-veerkracht {
  position: absolute;
  bottom: -60px;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.benefits-title-veerkracht {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.benefits-subtitle-veerkracht {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

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

.benefit-card-veerkracht {
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 300ms ease;
}

.benefit-card-veerkracht:hover {
  background: #ffffff;
  border-color: #059669;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.1);
  transform: translateY(-4px);
}

.benefit-icon-veerkracht {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.1));
  color: #059669;
  border-radius: 12px;
  font-size: 1.75rem;
}

.benefit-title-veerkracht {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.benefit-text-veerkracht {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.insight-section-veerkracht {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 50%, #f9fafb 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.insight-deco-1-veerkracht {
  position: absolute;
  top: 15%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.insight-deco-2-veerkracht {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 50% 30% 50% 30% / 30% 50% 30% 50%;
  z-index: 1;
  pointer-events: none;
}

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

.featured-quote-veerkracht {
  padding: clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #059669;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quote-text-veerkracht {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-author-veerkracht {
  font-size: 0.9375rem;
  color: #4b5563;
  font-weight: 500;
  font-style: normal;
}

.insight-details-veerkracht {
  background: #f9fafb;
  padding: clamp(2rem, 5vw, 2.5rem);
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.insight-title-veerkracht {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.insight-text-veerkracht {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.8;
}

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

  .hero-buttons-veerkracht .btn {
    flex: 1;
  }

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

  .posts-grid-veerkracht {
    flex-direction: column;
    align-items: stretch;
  }

  .benefits-cards-veerkracht {
    flex-direction: column;
    align-items: stretch;
  }

  .benefit-card-veerkracht {
    flex: 1 1 auto;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .hero-stats-veerkracht {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .hero-tag-veerkracht {
    font-size: 0.8125rem;
    padding: 0.3rem 0.875rem;
  }
}

.main-mindfulness-stress {
  width: 100%;
}

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

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

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

.hero-text-wrapper-mindfulness-stress {
  flex: 1 1 400px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-image-wrapper-mindfulness-stress {
  flex: 1 1 400px;
  max-width: 50%;
}

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

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

.breadcrumb-link-mindfulness-stress {
  color: #059669;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-link-mindfulness-stress:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-mindfulness-stress {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

.breadcrumb-current-mindfulness-stress {
  color: #475569;
  font-weight: 600;
}

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

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

.hero-stats-mindfulness-stress {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

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

.stat-number-mindfulness-stress {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-mindfulness-stress {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  font-weight: 500;
}

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

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

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

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

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

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

.introduction-text-mindfulness-stress {
  flex: 1 1 400px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-image-mindfulness-stress {
  flex: 1 1 400px;
  max-width: 50%;
}

.introduction-img-mindfulness-stress {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

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

.introduction-description-mindfulness-stress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .introduction-content-mindfulness-stress {
    flex-direction: column;
  }

  .introduction-text-mindfulness-stress,
  .introduction-image-mindfulness-stress {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.foundations-header-mindfulness-stress {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.foundations-tag-mindfulness-stress {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

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

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

.foundations-steps-mindfulness-stress {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.foundations-step-mindfulness-stress {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.foundations-step-number-mindfulness-stress {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.foundations-step-content-mindfulness-stress {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.foundations-step-title-mindfulness-stress {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  font-weight: 700;
}

.foundations-step-text-mindfulness-stress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .foundations-step-mindfulness-stress {
    flex-direction: column;
    align-items: flex-start;
  }

  .foundations-step-number-mindfulness-stress {
    margin-bottom: 0.5rem;
  }
}

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

.techniques-content-mindfulness-stress {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.techniques-image-mindfulness-stress {
  flex: 1 1 400px;
  max-width: 50%;
  order: -1;
}

.techniques-img-mindfulness-stress {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.techniques-text-mindfulness-stress {
  flex: 1 1 400px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.techniques-description-mindfulness-stress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.techniques-list-mindfulness-stress {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 1rem 0;
}

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

.techniques-list-item-mindfulness-stress::before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
  font-size: 1.25rem;
}

.techniques-quote-mindfulness-stress {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #f0fdf4;
  margin: 1.5rem 0;
}

.quote-text-mindfulness-stress {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-mindfulness-stress {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #64748b;
  font-style: normal;
}

@media (max-width: 768px) {
  .techniques-content-mindfulness-stress {
    flex-direction: column;
  }

  .techniques-image-mindfulness-stress,
  .techniques-text-mindfulness-stress {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .techniques-image-mindfulness-stress {
    order: 0;
  }
}

.benefits-section-mindfulness-stress {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-header-mindfulness-stress {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.benefits-tag-mindfulness-stress {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

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

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

.benefits-card-mindfulness-stress {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.benefits-card-icon-mindfulness-stress {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: var(--radius-lg);
  font-size: 1.75rem;
}

.benefits-card-title-mindfulness-stress {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  font-weight: 700;
}

.benefits-card-text-mindfulness-stress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

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

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

.practice-content-mindfulness-stress {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.practice-text-mindfulness-stress {
  flex: 1 1 400px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-image-mindfulness-stress {
  flex: 1 1 400px;
  max-width: 50%;
}

.practice-img-mindfulness-stress {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

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

.practice-description-mindfulness-stress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.practice-highlight-mindfulness-stress {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f0fdf4;
  border-radius: var(--radius-lg);
  border: 1px solid #dcfce7;
}

.practice-highlight-title-mindfulness-stress {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.practice-ordered-list-mindfulness-stress {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: decimal;
  margin-left: 1.5rem;
}

.practice-list-item-mindfulness-stress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

.practice-note-mindfulness-stress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #059669;
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 768px) {
  .practice-content-mindfulness-stress {
    flex-direction: column;
  }

  .practice-text-mindfulness-stress,
  .practice-image-mindfulness-stress {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-mindfulness-stress {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.conclusion-text-mindfulness-stress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.conclusion-cta-mindfulness-stress {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.conclusion-cta-mindfulness-stress .btn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
}

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

.disclaimer-content-mindfulness-stress {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-mindfulness-stress {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-mindfulness-stress {
  font-size: clamp(0.8125rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

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

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

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

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

.related-card-mindfulness-stress {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
}

.related-card-mindfulness-stress:hover {
  border-color: #059669;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.related-card-content-mindfulness-stress {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-mindfulness-stress {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #0f172a;
  font-weight: 700;
  transition: color var(--transition-fast);
}

.related-card-mindfulness-stress:hover .related-card-title-mindfulness-stress {
  color: #059669;
}

.related-card-text-mindfulness-stress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

.related-card-link-mindfulness-stress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #059669;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: color var(--transition-fast);
}

.related-card-mindfulness-stress:hover .related-card-link-mindfulness-stress {
  color: #047857;
}

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

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

  .hero-buttons-mindfulness-stress {
    flex-direction: column;
  }

  .hero-buttons-mindfulness-stress .btn {
    width: 100%;
    text-align: center;
  }

  .breadcrumbs-mindfulness-stress {
    font-size: 0.75rem;
  }
}

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

.main-emotionele-intelligentie {
  width: 100%;
}

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

.hero-section-emotionele-intelligentie {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-block-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-description-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-meta-emotionele-intelligentie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-emotionele-intelligentie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

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

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

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

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

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

.intro-text-block-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-emotionele-intelligentie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-text-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-emotionele-intelligentie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.pillars-section-emotionele-intelligentie {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-emotionele-intelligentie {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-emotionele-intelligentie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.15);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.pillars-title-emotionele-intelligentie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pillars-subtitle-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.pillars-cards-emotionele-intelligentie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.pillars-card-emotionele-intelligentie {
  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;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillars-card-emotionele-intelligentie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pillars-card-icon-emotionele-intelligentie {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.12);
  border-radius: 12px;
  color: #059669;
  font-size: 1.75rem;
}

.pillars-card-title-emotionele-intelligentie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.pillars-card-text-emotionele-intelligentie {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

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

.techniques-content-emotionele-intelligentie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.techniques-text-block-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-block-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-emotionele-intelligentie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.techniques-text-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.techniques-list-emotionele-intelligentie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-item-emotionele-intelligentie {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.technique-number-emotionele-intelligentie {
  font-size: 2.5rem;
  font-weight: 800;
  color: #059669;
  flex-shrink: 0;
  line-height: 1;
  min-width: 70px;
}

.technique-content-emotionele-intelligentie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.technique-item-title-emotionele-intelligentie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.technique-item-text-emotionele-intelligentie {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.techniques-image-emotionele-intelligentie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.quote-section-emotionele-intelligentie {
  background: #059669;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.quote-content-emotionele-intelligentie {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #10b981;
}

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

.quote-author-emotionele-intelligentie {
  font-size: 0.875rem;
  color: #d1fae5;
  font-style: normal;
}

.benefits-section-emotionele-intelligentie {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-content-emotionele-intelligentie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.benefits-image-block-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-text-block-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-emotionele-intelligentie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.benefit-item-emotionele-intelligentie {
  margin-bottom: 2rem;
}

.benefit-item-emotionele-intelligentie:last-child {
  margin-bottom: 0;
}

.benefit-title-emotionele-intelligentie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.benefit-text-emotionele-intelligentie {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.practice-section-emotionele-intelligentie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-content-emotionele-intelligentie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practice-text-block-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-block-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-instruction-title-emotionele-intelligentie {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
}

.practice-steps-emotionele-intelligentie {
  list-style: decimal;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.practice-step-emotionele-intelligentie {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.practice-step-emotionele-intelligentie strong {
  color: #111827;
  font-weight: 600;
}

.practice-note-emotionele-intelligentie {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  padding: 1rem;
  background: #f3f4f6;
  border-radius: 8px;
  border-left: 3px solid #059669;
}

.practice-image-emotionele-intelligentie {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.cta-section-emotionele-intelligentie {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.cta-content-emotionele-intelligentie {
  text-align: center;
}

.cta-title-emotionele-intelligentie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-text-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #d1fae5;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-section-emotionele-intelligentie .btn-primary {
  background: #ffffff;
  color: #059669;
}

.cta-section-emotionele-intelligentie .btn-primary:hover {
  background: #f1f5f9;
}

.disclaimer-section-emotionele-intelligentie {
  background: #f9fafb;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-emotionele-intelligentie {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-emotionele-intelligentie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-emotionele-intelligentie {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
}

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

.related-title-emotionele-intelligentie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 2rem;
}

.related-cards-emotionele-intelligentie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.related-card-emotionele-intelligentie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.related-card-emotionele-intelligentie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

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

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

.related-card-title-emotionele-intelligentie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.related-card-text-emotionele-intelligentie {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

.related-card-emotionele-intelligentie:hover .related-card-title-emotionele-intelligentie {
  color: #059669;
}

.breadcrumbs-emotionele-intelligentie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-emotionele-intelligentie {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-emotionele-intelligentie:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-emotionele-intelligentie {
  color: #9ca3af;
}

.breadcrumb-current-emotionele-intelligentie {
  color: #4b5563;
}

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

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(5, 150, 105, 0.2);
}

.btn-primary:hover {
  background: #047857;
  box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: #d1fae5;
  border-color: #047857;
}

@media (max-width: 768px) {
  .hero-content-emotionele-intelligentie,
  .intro-content-emotionele-intelligentie,
  .techniques-content-emotionele-intelligentie,
  .benefits-content-emotionele-intelligentie,
  .practice-content-emotionele-intelligentie {
    flex-direction: column;
  }

  .hero-text-block-emotionele-intelligentie,
  .hero-image-block-emotionele-intelligentie,
  .intro-text-block-emotionele-intelligentie,
  .intro-image-block-emotionele-intelligentie,
  .techniques-text-block-emotionele-intelligentie,
  .techniques-image-block-emotionele-intelligentie,
  .benefits-image-block-emotionele-intelligentie,
  .benefits-text-block-emotionele-intelligentie,
  .practice-text-block-emotionele-intelligentie,
  .practice-image-block-emotionele-intelligentie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .pillars-card-emotionele-intelligentie,
  .related-card-emotionele-intelligentie {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-buttons-emotionele-intelligentie {
    flex-direction: column;
  }

  .hero-buttons-emotionele-intelligentie .btn {
    width: 100%;
  }

  .hero-meta-emotionele-intelligentie {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .technique-item-emotionele-intelligentie {
    gap: 1rem;
  }

  .technique-number-emotionele-intelligentie {
    font-size: 2rem;
    min-width: 50px;
  }

  .pillars-cards-emotionele-intelligentie {
    flex-direction: column;
  }

  .related-cards-emotionele-intelligentie {
    flex-direction: column;
  }
}

.main-zelfvertrouwen-opbouwen {
  width: 100%;
  font-family: var(--font-primary);
}

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

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

.breadcrumb-link-zelfvertrouwen-opbouwen {
  color: #059669;
  text-decoration: none;
  transition: color var(--transition-base);
}

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

.breadcrumb-separator-zelfvertrouwen-opbouwen,
.breadcrumb-current-zelfvertrouwen-opbouwen {
  color: #6b7280;
}

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

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

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

.hero-title-zelfvertrouwen-opbouwen {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.article-meta-zelfvertrouwen-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-zelfvertrouwen-opbouwen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-zelfvertrouwen-opbouwen i {
  color: #059669;
}

.hero-stats-zelfvertrouwen-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

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

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

.stat-label-zelfvertrouwen-opbouwen {
  font-size: 0.875rem;
  color: #6b7280;
  opacity: 0.9;
}

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

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

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

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

.intro-text-zelfvertrouwen-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.intro-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.intro-image-wrapper-zelfvertrouwen-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.intro-image-zelfvertrouwen-opbouwen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
  display: block;
}

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

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

.section-tag-zelfvertrouwen-opbouwen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.foundations-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

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

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

.process-step-zelfvertrouwen-opbouwen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

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

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

.process-step-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.process-step-text-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.strategies-content-zelfvertrouwen-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategies-text-zelfvertrouwen-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.strategies-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

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

.featured-quote-zelfvertrouwen-opbouwen {
  padding: 2rem 2rem;
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin: 2rem 0;
  border-radius: 8px;
}

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

.quote-cite-zelfvertrouwen-opbouwen {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: normal;
}

.strategies-image-wrapper-zelfvertrouwen-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.strategies-image-zelfvertrouwen-opbouwen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
  display: block;
}

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

.techniques-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.techniques-cards-zelfvertrouwen-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.technique-card-zelfvertrouwen-opbouwen {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technique-card-zelfvertrouwen-opbouwen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.technique-card-icon-zelfvertrouwen-opbouwen {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
}

.technique-card-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.technique-card-text-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.implementation-content-zelfvertrouwen-opbouwen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-image-wrapper-zelfvertrouwen-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
  order: -1;
}

.implementation-image-zelfvertrouwen-opbouwen {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
  display: block;
}

.implementation-text-zelfvertrouwen-opbouwen {
  flex: 1 1 300px;
  max-width: 50%;
}

.implementation-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

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

.highlight-box-zelfvertrouwen-opbouwen {
  background: rgba(5, 150, 105, 0.08);
  border-left: 4px solid #059669;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.highlight-list-zelfvertrouwen-opbouwen {
  list-style: none;
  padding: 0;
}

.highlight-item-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.highlight-item-zelfvertrouwen-opbouwen:before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

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

.cta-box-zelfvertrouwen-opbouwen {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
}

.cta-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-description-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-button-zelfvertrouwen-opbouwen {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #059669;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button-zelfvertrouwen-opbouwen:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

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

.disclaimer-box-zelfvertrouwen-opbouwen {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.related-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.related-subtitle-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

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

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

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

.related-card-img-zelfvertrouwen-opbouwen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-zelfvertrouwen-opbouwen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.related-card-text-zelfvertrouwen-opbouwen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-zelfvertrouwen-opbouwen {
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

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

@media (max-width: 768px) {
  .hero-text-wrapper-zelfvertrouwen-opbouwen,
  .hero-image-wrapper-zelfvertrouwen-opbouwen,
  .intro-text-zelfvertrouwen-opbouwen,
  .intro-image-wrapper-zelfvertrouwen-opbouwen,
  .strategies-text-zelfvertrouwen-opbouwen,
  .strategies-image-wrapper-zelfvertrouwen-opbouwen,
  .implementation-text-zelfvertrouwen-opbouwen,
  .implementation-image-wrapper-zelfvertrouwen-opbouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-image-wrapper-zelfvertrouwen-opbouwen {
    order: 0;
  }

  .hero-stats-zelfvertrouwen-opbouwen {
    flex-direction: column;
    gap: 1rem;
  }

  .related-cards-zelfvertrouwen-opbouwen {
    flex-direction: column;
  }

  .related-card-zelfvertrouwen-opbouwen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .article-meta-zelfvertrouwen-opbouwen {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-badge-zelfvertrouwen-opbouwen {
    width: 100%;
    justify-content: flex-start;
  }

  .highlight-list-zelfvertrouwen-opbouwen {
    padding: 0;
  }

  .highlight-item-zelfvertrouwen-opbouwen {
    padding-left: 1.5rem;
  }
}

.main-veerkracht-moeilijke-tijden {
  width: 100%;
  position: relative;
}

.hero-section-veerkracht-moeilijke-tijden {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.breadcrumb-link-veerkracht-moeilijke-tijden {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-link-veerkracht-moeilijke-tijden:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-veerkracht-moeilijke-tijden {
  color: #d1d5db;
  margin: 0 0.25rem;
}

.breadcrumb-current-veerkracht-moeilijke-tijden {
  color: #6b7280;
}

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

.hero-text-wrapper-veerkracht-moeilike-tijden {
  flex: 1 1 400px;
  max-width: 550px;
}

.hero-title-veerkracht-moeilijke-tijden {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-veerkracht-moeilijke-tijden {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-veerkracht-moeilijke-tijden {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-veerkracht-moeilijke-tijden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #059669;
}

.meta-badge-veerkracht-moeilijke-tijden i {
  font-size: 0.75rem;
}

.hero-cta-veerkracht-moeilijke-tijden {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary-veerkracht-moeilijke-tijden {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #059669;
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.btn-primary-veerkracht-moeilijke-tijden:hover {
  background: #047857;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

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

.btn-outline-veerkracht-moeilijke-tijden:hover {
  background: #d1fae5;
  color: #047857;
  border-color: #047857;
}

.hero-image-wrapper-veerkracht-moeilijke-tijden {
  flex: 1 1 350px;
  max-width: 550px;
}

.hero-image-veerkracht-moeilijke-tijden {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.08);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-veerkracht-moeilijke-tijden {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-wrapper-veerkracht-moeilike-tijden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-wrapper-veerkracht-moeilijke-tijden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.introduction-section-veerkracht-moeilijke-tijden {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.introduction-wrapper-veerkracht-moeilijke-tijden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-veerkracht-moeilijke-tijden {
  flex: 1 1 400px;
  max-width: 550px;
}

.introduction-title-veerkracht-moeilijke-tijden {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-paragraph-veerkracht-moeilijke-tijden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-image-veerkracht-moeilijke-tijden {
  flex: 1 1 350px;
  max-width: 550px;
}

.introduction-img-veerkracht-moeilijke-tijden {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
  display: block;
}

@media (max-width: 768px) {
  .introduction-wrapper-veerkracht-moeilijke-tijden {
    flex-direction: column;
    gap: 2rem;
  }

  .introduction-text-veerkracht-moeilijke-tijden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .introduction-image-veerkracht-moeilijke-tijden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.foundation-section-veerkracht-moeilijke-tijden {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.foundation-header-veerkracht-moeilijke-tijden {
  text-align: center;
  margin-bottom: 3rem;
}

.foundation-tag-veerkracht-moeilijke-tijden {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.foundation-title-veerkracht-moeilijke-tijden {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.foundation-subtitle-veerkracht-moeilijke-tijden {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.foundation-steps-veerkracht-moeilijke-tijden {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.foundation-step-veerkracht-moeilijke-tijden {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
  align-items: flex-start;
}

.foundation-step-number-veerkracht-moeilijke-tijden {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.foundation-step-content-veerkracht-moeilijke-tijden {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.foundation-step-title-veerkracht-moeilijke-tijden {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #111827;
}

.foundation-step-text-veerkracht-moeilijke-tijden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .foundation-step-veerkracht-moeilijke-tijden {
    flex-direction: column;
    gap: 1rem;
  }

  .foundation-step-number-veerkracht-moeilijke-tijden {
    min-width: auto;
  }
}

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

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

.techniques-wrapper-veerkracht-moeilijke-tijden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.techniques-image-veerkracht-moeilijke-tijden {
  flex: 1 1 350px;
  max-width: 550px;
  order: -1;
}

.techniques-img-veerkracht-moeilijke-tijden {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
  display: block;
}

.techniques-content-veerkracht-moeilijke-tijden {
  flex: 1 1 400px;
  max-width: 550px;
}

.techniques-title-veerkracht-moeilijke-tijden {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.techniques-text-veerkracht-moeilijke-tijden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.techniques-list-veerkracht-moeilijke-tijden {
  list-style: none;
  padding: 0;
  margin: 0;
}

.techniques-list-item-veerkracht-moeilijke-tijden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  position: relative;
}

.techniques-list-item-veerkracht-moeilijke-tijden::before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
  font-size: 1.25rem;
}

.techniques-list-strong-veerkracht-moeilijke-tijden {
  color: #111827;
  font-weight: 600;
}

@media (max-width: 768px) {
  .techniques-wrapper-veerkracht-moeilijke-tijden {
    flex-direction: column;
    gap: 2rem;
  }

  .techniques-image-veerkracht-moeilijke-tijden {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .techniques-content-veerkracht-moeilijke-tijden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.growth-section-veerkracht-moeilijke-tijden {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.growth-header-veerkracht-moeilijke-tijden {
  text-align: center;
  margin-bottom: 3rem;
}

.growth-title-veerkracht-moeilijke-tijden {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.growth-subtitle-veerkracht-moeilijke-tijden {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

.growth-cards-veerkracht-moeilijke-tijden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.growth-card-veerkracht-moeilijke-tijden {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.growth-card-veerkracht-moeilijke-tijden:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.growth-card-icon-veerkracht-moeilijke-tijden {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
}

.growth-card-title-veerkracht-moeilijke-tijden {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #111827;
}

.growth-card-text-veerkracht-moeilijke-tijden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .growth-card-veerkracht-moeilijke-tijden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-veerkracht-moeilijke-tijden {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.featured-quote-veerkracht-moeilijke-tijden {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #059669;
  background: rgba(5, 150, 105, 0.05);
  margin: 0;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-veerkracht-moeilijke-tijden {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-veerkracht-moeilijke-tijden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  font-style: normal;
  display: block;
}

.integration-section-veerkracht-moeilijke-tijden {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.integration-wrapper-veerkracht-moeilijke-tijden {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.integration-text-veerkracht-moeilijke-tijden {
  flex: 1 1 400px;
  max-width: 550px;
}

.integration-title-veerkracht-moeilijke-tijden {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.integration-paragraph-veerkracht-moeilijke-tijden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.integration-image-veerkracht-moeilijke-tijden {
  flex: 1 1 350px;
  max-width: 550px;
}

.integration-img-veerkracht-moeilijke-tijden {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
  display: block;
}

@media (max-width: 768px) {
  .integration-wrapper-veerkracht-moeilijke-tijden {
    flex-direction: column;
    gap: 2rem;
  }

  .integration-text-veerkracht-moeilijke-tijden {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .integration-image-veerkracht-moeilijke-tijden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-content-veerkracht-moeilijke-tijden {
  max-width: 700px;
  margin: 0 auto;
}

.conclusion-title-veerkracht-moeilijke-tijden {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-veerkracht-moeilijke-tijden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-cta-veerkracht-moeilijke-tijden {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn-primary-conclusion-veerkracht-moeilijke-tijden {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #059669;
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.btn-primary-conclusion-veerkracht-moeilijke-tijden:hover {
  background: #047857;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-secondary-conclusion-veerkracht-moeilijke-tijden {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: transparent;
  color: #059669;
  border: 2px solid #059669;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-conclusion-veerkracht-moeilijke-tijden:hover {
  background: #d1fae5;
  color: #047857;
  border-color: #047857;
}

.disclaimer-section-veerkracht-moeilijke-tijden {
  background: #fef3c7;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-veerkracht-moeilijke-tijden {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-veerkracht-moeilijke-tijden {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #92400e;
  margin-bottom: 1rem;
}

.disclaimer-text-veerkracht-moeilijke-tijden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #78350f;
  line-height: 1.7;
}

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

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

.related-header-veerkracht-moeilijke-tijden {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-veerkracht-moeilijke-tijden {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-veerkracht-moeilijke-tijden {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

.related-cards-veerkracht-moeilijke-tijden {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-veerkracht-moeilijke-tijden {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-veerkracht-moeilijke-tijden:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.related-card-image-veerkracht-moeilijke-tijden {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.related-card-img-veerkracht-moeilijke-tijden {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-veerkracht-moeilijke-tijden {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #111827;
}

.related-card-text-veerkracht-moeilijke-tijden {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
  flex-grow: 1;
}

.related-card-link-veerkracht-moeilijke-tijden {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.related-card-link-veerkracht-moeilijke-tijden:hover {
  color: #047857;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-veerkracht-moeilijke-tijden {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

  .introduction-wrapper-veerkracht-moeilijke-tijden {
    flex-direction: column;
  }

  .techniques-wrapper-veerkracht-moeilijke-tijden {
    flex-direction: column;
  }

  .integration-wrapper-veerkracht-moeilijke-tijden {
    flex-direction: column;
  }

  .foundation-step-veerkracht-moeilijke-tijden {
    flex-direction: column;
    gap: 1rem;
  }

  .conclusion-cta-veerkracht-moeilijke-tijden {
    flex-direction: column;
  }

  .btn-primary-conclusion-veerkracht-moeilijke-tijden,
  .btn-secondary-conclusion-veerkracht-moeilijke-tijden {
    width: 100%;
  }
}

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

.hero-image-veerkracht-moeilijke-tijden {
  animation: slideInUp 0.6s ease-out;
}

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

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

.main-persoonlijke-transformatie {
  width: 100%;
  background: #f9fafb;
}

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

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

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

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

.hero-image-block-persoonlijke-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-persoonlijke-transformatie {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
}

.hero-subtitle-persoonlijke-transformatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.7;
}

.hero-meta-persoonlijke-transformatie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-persoonlijke-transformatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-persoonlijke-transformatie i {
  color: #059669;
}

.hero-stats-persoonlijke-transformatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

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

.stat-number-persoonlijke-transformatie {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #059669;
  display: block;
}

.stat-label-persoonlijke-transformatie {
  font-size: 0.875rem;
  color: #4b5563;
  opacity: 0.9;
}

.hero-image-persoonlijke-transformatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

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

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

  .hero-stats-persoonlijke-transformatie {
    gap: 1.5rem;
  }
}

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

.breadcrumb-link-persoonlijke-transformatie {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-persoonlijke-transformatie:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-persoonlijke-transformatie {
  color: #d1d5db;
  margin: 0 0.25rem;
}

.breadcrumb-current-persoonlijke-transformatie {
  color: #4b5563;
}

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

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

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

.intro-image-block-persoonlijke-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-persoonlijke-transformatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.intro-text-persoonlijke-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.intro-image-persoonlijke-transformatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-persoonlijke-transformatie {
    flex-direction: column;
  }

  .intro-text-block-persoonlijke-transformatie,
  .intro-image-block-persoonlijke-transformatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.transformation-framework-section-persoonlijke-transformatie {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.framework-header-persoonlijke-transformatie {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.framework-tag-persoonlijke-transformatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.framework-title-persoonlijke-transformatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.framework-subtitle-persoonlijke-transformatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.pillars-wrapper-persoonlijke-transformatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.pillar-item-persoonlijke-transformatie {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.pillar-number-persoonlijke-transformatie {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.pillar-content-persoonlijke-transformatie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pillar-title-persoonlijke-transformatie {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.pillar-text-persoonlijke-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.program-content-section-persoonlijke-transformatie {
  width: 100%;
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.program-text-persoonlijke-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.program-image-persoonlijke-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.program-title-persoonlijke-transformatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.program-intro-persoonlijke-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.program-list-persoonlijke-transformatie {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.program-item-persoonlijke-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.program-item-persoonlijke-transformatie::before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

.program-visual-persoonlijke-transformatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .program-wrapper-persoonlijke-transformatie {
    flex-direction: column;
  }

  .program-text-persoonlijke-transformatie,
  .program-image-persoonlijke-transformatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.featured-quote-persoonlijke-transformatie {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin: 0;
}

.quote-text-persoonlijke-transformatie {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #111827;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quote-author-persoonlijke-transformatie {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
}

.transformation-journey-section-persoonlijke-transformatie {
  width: 100%;
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.journey-header-persoonlijke-transformatie {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.journey-tag-persoonlijke-transformatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.journey-text-persoonlijke-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.journey-image-persoonlijke-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.journey-subtitle-persoonlijke-transformatie {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: #111827;
}

.journey-description-persoonlijke-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.journey-phases-persoonlijke-transformatie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.phase-card-persoonlijke-transformatie {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.phase-week-persoonlijke-transformatie {
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phase-name-persoonlijke-transformatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.phase-desc-persoonlijke-transformatie {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}

.journey-visual-persoonlijke-transformatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .journey-wrapper-persoonlijke-transformatie {
    flex-direction: column;
  }

  .journey-text-persoonlijke-transformatie,
  .journey-image-persoonlijke-transformatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .phase-card-persoonlijke-transformatie {
    flex: 1 1 100%;
  }
}

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

.benefits-header-persoonlijke-transformatie {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.benefits-tag-persoonlijke-transformatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.benefits-subtitle-persoonlijke-transformatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid-persoonlijke-transformatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefit-card-persoonlijke-transformatie {
  flex: 1 1 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card-persoonlijke-transformatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon-persoonlijke-transformatie {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 10px;
  color: #059669;
  font-size: 1.5rem;
}

.benefit-title-persoonlijke-transformatie {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.benefit-text-persoonlijke-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

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

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

.conclusion-text-persoonlijke-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-image-persoonlijke-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-persoonlijke-transformatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.conclusion-intro-persoonlijke-transformatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  font-weight: 500;
}

.conclusion-text-persoonlijke-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.cta-button-persoonlijke-transformatie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  width: fit-content;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  margin-top: 1rem;
}

.cta-button-persoonlijke-transformatie:hover {
  background: #047857;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.conclusion-visual-persoonlijke-transformatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .conclusion-wrapper-persoonlijke-transformatie {
    flex-direction: column;
  }

  .conclusion-text-persoonlijke-transformatie,
  .conclusion-image-persoonlijke-transformatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-persoonlijke-transformatie {
  width: 100%;
  background: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-persoonlijke-transformatie {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f0fdf4;
  border-left: 4px solid #059669;
  border-radius: 8px;
}

.disclaimer-title-persoonlijke-transformatie {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.disclaimer-text-persoonlijke-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

.related-posts-section-persoonlijke-transformatie {
  width: 100%;
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-persoonlijke-transformatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.related-subtitle-persoonlijke-transformatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #4b5563;
}

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

.related-card-persoonlijke-transformatie {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card-persoonlijke-transformatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.related-card-image-persoonlijke-transformatie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.related-card-title-persoonlijke-transformatie {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
}

.related-card-text-persoonlijke-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.related-link-persoonlijke-transformatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}

.related-link-persoonlijke-transformatie:hover {
  color: #047857;
  text-decoration: underline;
}

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

@media (max-width: 1024px) {
  .hero-stats-persoonlijke-transformatie {
    gap: 1.5rem;
  }

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

@media (max-width: 640px) {
  .hero-section-persoonlijke-transformatie {
    padding: 2rem 0;
  }

  .hero-stats-persoonlijke-transformatie {
    gap: 1rem;
  }
}

:root {
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-text-light: #6b7280;
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #d1fae5;
  --color-secondary: #10b981;
  --color-secondary-light: #a7f3d0;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.08);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.resilience-academy-about {
  width: 100%;
}

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

section {
  width: 100%;
}

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

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

.hero-header-about {
  text-align: center;
}

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.hero-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .hero-resilience-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

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

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

.foundation-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.foundation-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 650px;
}

.pillars-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.pillar-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all var(--transition-base);
}

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

.pillar-icon-about {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.pillar-title-about {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.pillar-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

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

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

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

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

.journey-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.journey-subtitle-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: 1rem;
}

.journey-image-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.timeline-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-step-about {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.timeline-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
}

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

.timeline-title-about {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.timeline-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

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

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

.approach-header-about {
  text-align: center;
}

.approach-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

.methods-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.method-card-about {
  flex: 1 1 270px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all var(--transition-base);
}

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

.method-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary-light);
  border-radius: var(--radius-md);
  color: var(--color-secondary);
  font-size: 1.5rem;
  margin: 0 auto;
}

.method-title-about {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.method-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

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

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

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

.commitment-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.commitment-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.commitment-description-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 650px;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid var(--color-primary);
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.featured-quote-about p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.featured-quote-cite-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 500;
}

.disclaimer-resilience-about {
  background: #f0fdf4;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #dcfce7;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 750px;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.disclaimer-title-about {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .hero-resilience-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .foundation-resilience-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .journey-resilience-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .approach-resilience-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .commitment-resilience-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

  .timeline-step-about {
    gap: 1rem;
    padding: 1rem;
  }

  .timeline-number-about {
    min-width: 50px;
  }
}

.legal-hub {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

.legal-hub section {
  width: 100%;
  overflow: hidden;
}

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

.legal-hub-hero {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.legal-hub-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-hero-content p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.legal-hub-content {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.legal-hub-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-hub-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-hub-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-hub-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.legal-hub-section li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-hub-contact {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.legal-hub-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-hub-contact-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-contact-content p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-hub-contact-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.legal-hub-contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  display: inline;
}

@media (min-width: 768px) {
  .legal-hub-hero {
    padding: 4rem 0 3rem;
  }

  .legal-hub-content {
    padding: 4rem 0;
  }

  .legal-hub-contact {
    padding: 4rem 0;
  }

  .legal-hub-content-wrapper {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .legal-hub-hero {
    padding: 5rem 0 4rem;
  }

  .legal-hub-content {
    padding: 6rem 0;
  }

  .legal-hub-contact {
    padding: 6rem 0;
  }

  .legal-hub-content-wrapper {
    gap: 3.5rem;
  }
}

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background: var(--color-primary-light);
  border-radius: 50%;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

.thank-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 3vw + 0.5rem, 1.5rem);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.thank-message {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-checklist {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.checklist-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.checklist-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(1.25rem, 3vw, 1.5rem);
  width: clamp(1.25rem, 3vw, 1.5rem);
  height: clamp(1.25rem, 3vw, 1.5rem);
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(2rem, 6vw, 4rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .thank-checklist {
    gap: 1.25rem;
    padding: 2rem;
  }
}

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

  .thank-content {
    gap: 2.5rem;
  }

  .thank-checklist {
    gap: 1.5rem;
    padding: 2.5rem;
  }

  .btn:hover {
    box-shadow: var(--shadow-lg);
  }
}

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

  .thank-content {
    gap: 3rem;
  }
}

.error-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  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;
  width: 100%;
}

.error-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.error-decoration-1 {
  width: clamp(200px, 40vw, 600px);
  height: clamp(200px, 40vw, 600px);
  background: var(--color-primary);
  top: -10%;
  left: -5%;
  animation: float-decoration 6s ease-in-out infinite;
}

.error-decoration-2 {
  width: clamp(150px, 30vw, 400px);
  height: clamp(150px, 30vw, 400px);
  background: var(--color-secondary);
  bottom: -15%;
  right: -5%;
  animation: float-decoration 8s ease-in-out infinite reverse;
}

@keyframes float-decoration {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw + 1rem, 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;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-icon {
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: clamp(60px, 15vw, 120px);
  height: clamp(60px, 15vw, 120px);
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.2);
  animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.3);
  }
}

.error-message {
  position: relative;
  z-index: 2;
  width: 100%;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.3rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 clamp(1rem, 2vw, 1.25rem) 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtext {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.2vw + 0.3rem, 1rem);
  color: var(--color-text-light);
  margin: 0 0 clamp(2rem, 4vw, 3rem) 0;
  line-height: 1.6;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 600;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0px);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}

.btn i {
  font-size: 1.15em;
}

.error-accent {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(5, 150, 105, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(5, 150, 105, 0.15);
  animation: fade-in-up 0.8s ease-out 0.3s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.accent-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  flex-wrap: wrap;
}

.accent-text i {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-primary);
  animation: heartbeat 1.5s ease-in-out infinite;
}

.accent-text span {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  font-weight: 500;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.15);
  }
  50% {
    transform: scale(1);
  }
}

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

@media (min-width: 768px) {
  .error-section {
    min-height: 100vh;
    padding: 4rem 0;
  }

  .error-icon {
    bottom: -15px;
    right: -25px;
  }

  .error-code-wrapper {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .error-section {
    min-height: 100vh;
    padding: 6rem 0;
  }

  .error-code-wrapper {
    margin-bottom: 3rem;
  }

  .error-icon {
    bottom: -20px;
    right: -30px;
  }

  .btn:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 480px) {
  .error-accent {
    margin-top: 2rem;
  }

  .accent-text {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.header-resilience-hub-mobile-toggle.active{
  display: none;
} 