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

:root {
  
  --color-bg-primary: #022c22;
  --color-bg-secondary: #064e4a;
  --color-bg-tertiary: #0f766e;
  --color-bg-card: rgba(16, 185, 129, 0.08);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #a7f3d0;
  --color-text-muted: #7ee8c9;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-dark: #047857;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

p, li, span {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

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

header {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  font-size: 1.5em;
}

nav.navbar {
  display: none;
}

nav.navbar.active {
  display: flex;
}

@media (min-width: 768px) {
  nav.navbar {
    display: flex;
  }
}

.navbar {
  flex-direction: column;
  gap: 2rem;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--color-bg-secondary);
  padding: 2rem;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

@media (min-width: 768px) {
  .navbar {
    position: static;
    flex-direction: row;
    gap: 3rem;
    background: transparent;
    padding: 0;
    border-top: none;
  }
}

.navbar a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

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

.header-mobile-toggle {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0.5rem;
}

.header-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}

.header-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.header-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

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

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

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

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
  justify-content: center;
  min-height: clamp(400px, 60vh, 600px);
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  color: var(--color-text-primary);
  max-width: 600px;
}

.hero-section p {
  color: var(--color-text-secondary);
  max-width: 500px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-cta-group {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  margin-top: 1rem;
}

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

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

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

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

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

.features-section h2 {
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.5rem, 6vw, 5rem);
  height: clamp(3.5rem, 6vw, 5rem);
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-lg);
}

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

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

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

.about-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.about-text p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.about-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: var(--space-lg) 0;
}

.about-text li {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  color: var(--color-text-secondary);
}

.about-text li i {
  color: var(--color-primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.about-image {
  position: relative;
  height: clamp(300px, 50vh, 500px);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image i {
  font-size: 6rem;
  color: rgba(16, 185, 129, 0.3);
}

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

.stats-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
}

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

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.testimonials-section h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.testimonials-header p {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  max-width: 500px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  background: rgba(16, 185, 129, 0.05);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}

.testimonial-stars i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--color-text-secondary);
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  padding-top: 1rem;
}

.author-name {
  color: var(--color-text-primary);
  font-weight: 600;
}

.author-role {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

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

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--color-text-primary);
  max-width: 600px;
}

.cta-section p {
  color: var(--color-text-secondary);
  max-width: 500px;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-section h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

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

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

.contact-item i {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
}

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

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

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

.contact-form label {
  color: var(--color-text-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--color-text-primary);
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(16, 185, 129, 0.1);
}

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

.form-submit-btn {
  background: var(--color-primary);
  color: #000000;
  border: none;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.form-submit-btn:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-section h4 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.footer-section p,
.footer-section a {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.8;
}

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

.footer-divider {
  height: 1px;
  background: rgba(16, 185, 129, 0.2);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-socials {
    justify-content: flex-end;
  }
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--color-primary);
  color: #000000;
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-primary);
  border-top: 1px solid rgba(16, 185, 129, 0.3);
  padding: clamp(1rem, 2vw, 1.5rem);
  display: none;
  z-index: 1000;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
  display: flex;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    gap: 2rem;
  }
}

.cookie-text {
  flex: 1;
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--color-primary);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

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

@media (min-width: 768px) {
  .cookie-buttons {
    justify-content: flex-end;
  }
}

.cookie-accept {
  background: var(--color-primary);
  color: #000000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.cookie-accept:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.cookie-decline {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.cookie-decline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

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

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

.hidden {
  display: none;
}

.visible {
  display: block;
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

.header-resilience-vault {
  position: static;
  width: 100%;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  z-index: 100;
  top: 0;
}

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

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

.header-resilience-vault-brand:hover {
  opacity: 0.85;
}

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

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

.header-resilience-vault-desktop-nav {
  display: none;
  flex-direction: row;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  align-items: center;
  flex-grow: 1;
  margin-left: 2rem;
}

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

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

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

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

.header-resilience-vault-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #0a3d2e;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}

.header-resilience-vault-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

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

.header-resilience-vault-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 300ms ease;
  padding: 0;
  margin-right: -0.5rem;
}

.header-resilience-vault-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-resilience-vault-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg-secondary);
  border-left: 1px solid rgba(16, 185, 129, 0.1);
  display: flex;
  flex-direction: column;
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  overflow-y: auto;
}

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

.header-resilience-vault-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 4vw, 1.5rem);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.header-resilience-vault-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 300ms ease;
  padding: 0;
}

.header-resilience-vault-mobile-close:hover {
  color: var(--color-primary);
}

.header-resilience-vault-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 3vw, 1.5rem) 0;
  flex-grow: 1;
}

.header-resilience-vault-mobile-link {
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1.25rem, 4vw, 1.75rem);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 2vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 185, 129, 0.05);
  transition: all 300ms ease;
  display: block;
}

.header-resilience-vault-mobile-link:hover {
  background: rgba(16, 185, 129, 0.08);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 5vw, 2rem);
}

.header-resilience-vault-mobile-cta {
  margin: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  background: var(--color-primary);
  color: #0a3d2e;
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 2vw, 1rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: all 300ms ease;
  display: block;
}

.header-resilience-vault-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

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

  .header-resilience-vault-mobile-menu {
    display: none;
  }

  .header-resilience-vault-desktop-nav {
    display: flex;
  }

  .header-resilience-vault-cta-button {
    display: inline-flex;
  }

  .header-resilience-vault-container {
    padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(1.5rem, 5vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .header-resilience-vault-logo-text {
    font-size: 1.375rem;
  }

  .header-resilience-vault-nav-link {
    font-size: 0.9375rem;
  }

  .header-resilience-vault-cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

    .resilience-hub {
  width: 100%;
}

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

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

.hero-section-index {
  background: linear-gradient(135deg, #022c22 0%, #064e4a 100%);
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
}

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

.hero-deco-glow-2 {
  position: absolute;
  bottom: 15%;
  left: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-organic {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 200px;
  height: 240px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-float-panel {
  position: absolute;
  bottom: 25%;
  right: 15%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

.hero-deco-accent-line {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-deco-mesh-gradient {
  position: absolute;
  top: -20%;
  left: 10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(34, 211, 153, 0.08) 0%, transparent 65%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-index {
  color: #a7f3d0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 500px;
}

.hero-cta-group-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  margin-top: 1rem;
}

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

.btn-primary-index {
  background: #10b981;
  color: #000000;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary-index:hover {
  background: #059669;
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
  transform: translateY(-3px);
}

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

.btn-secondary-index:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: #34d399;
  color: #34d399;
  transform: translateY(-3px);
}

.hero-stats-block-index {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1rem, 2vw, 2rem);
  flex-wrap: wrap;
}

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

.hero-stat-number-index {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #10b981;
  line-height: 1;
}

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

.journey-section-index {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.journey-deco-accent-1 {
  position: absolute;
  top: 5%;
  left: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.journey-deco-accent-2 {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.journey-deco-shape-blob {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 220px;
  height: 220px;
  background: rgba(34, 211, 153, 0.06);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.journey-deco-glow-soft {
  position: absolute;
  bottom: 20%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.journey-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.journey-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  text-align: center;
}

.journey-subtitle-index {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}

.journey-steps-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.journey-step-index {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.journey-step-index::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #34d399);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-step-index:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: #10b981;
}

.journey-step-index:hover::before {
  transform: scaleX(1);
}

.journey-step-number-index {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

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

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

.journey-step-text-index {
  color: #a7f3d0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.features-section-index {
  background: #022c22;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.features-deco-glow-1 {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 300px;
  height: 300px;
  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;
}

.features-deco-glow-2 {
  position: absolute;
  bottom: 5%;
  left: -90px;
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.features-deco-shape-1 {
  position: absolute;
  top: 35%;
  right: 8%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 55% 45% 50% 50% / 50% 50% 45% 55%;
  z-index: 1;
  pointer-events: none;
}

.features-deco-mesh {
  position: absolute;
  top: 0;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 211, 153, 0.08) 0%, transparent 65%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

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

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

.features-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  text-align: center;
}

.features-subtitle-index {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}

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

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

.features-card-index:hover {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.06);
  transform: translateY(-6px);
}

.features-card-icon-index {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.5rem;
}

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

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

.featured-section-index {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.featured-deco-accent-1 {
  position: absolute;
  top: 8%;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-deco-accent-2 {
  position: absolute;
  bottom: 12%;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

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

.featured-deco-line {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.featured-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.featured-subtitle-index {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card-index:hover {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  transform: translateY(-6px);
}

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

.featured-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.featured-card-link-index {
  color: #34d399;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 300ms ease;
}

.featured-card-link-index:hover {
  color: #ffffff;
}

.featured-cta-index {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.about-section-index {
  background: #022c22;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.about-deco-glow-1 {
  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;
}

.about-deco-shape-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 240px;
  height: 240px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50% 60% 40% 50% / 60% 50% 50% 40%;
  z-index: 1;
  pointer-events: none;
}

.about-deco-glow-2 {
  position: absolute;
  bottom: 15%;
  left: -70px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.about-deco-accent {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-content-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .about-content-index {
    grid-template-columns: 1fr 1fr;
  }
}

.about-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-lg);
}

.about-description-index {
  color: #a7f3d0;
  font-size: clamp(0.9375rem, 1vw + 0.25rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-list-index {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: var(--space-lg) 0;
}

.about-list-item-index {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  color: #a7f3d0;
}

.about-list-item-index i {
  color: #10b981;
  margin-top: 0.25rem;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.about-list-text-index {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.about-image-index {
  position: relative;
  height: clamp(300px, 50vh, 500px);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.08));
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-index i {
  font-size: 5rem;
  color: rgba(16, 185, 129, 0.25);
}

.values-section-index {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.values-deco-mesh-1 {
  position: absolute;
  top: -10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 65%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.values-deco-glow-1 {
  position: absolute;
  bottom: 5%;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.values-deco-shape-1 {
  position: absolute;
  top: 30%;
  right: 8%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.values-deco-accent-line {
  position: absolute;
  top: 45%;
  left: 10%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.values-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.values-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  text-align: center;
}

.values-subtitle-index {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}

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

.values-item-index {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.values-item-number-index {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #10b981;
}

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

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

.testimonials-section-index {
  background: #022c22;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.testimonials-deco-glow-1 {
  position: absolute;
  top: 10%;
  right: -90px;
  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;
}

.testimonials-deco-glow-2 {
  position: absolute;
  bottom: 8%;
  left: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-deco-shape {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 180px;
  height: 180px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 55% 45% 50% 50% / 50% 50% 45% 55%;
  z-index: 1;
  pointer-events: none;
}

.testimonials-deco-accent {
  position: absolute;
  bottom: 35%;
  left: 8%;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.testimonials-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.testimonials-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  text-align: center;
}

.testimonials-subtitle-index {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}

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

.testimonials-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-card-index:hover {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.06);
  transform: translateY(-6px);
}

.testimonials-stars-index {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}

.testimonials-stars-index i {
  color: #10b981;
  font-size: 0.9rem;
}

.testimonials-text-index {
  color: #a7f3d0;
  font-style: italic;
  line-height: 1.7;
  font-size: 0.9375rem;
}

.testimonials-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  padding-top: 1rem;
}

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

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

.cta-section-index {
  background: linear-gradient(135deg, #064e4a 0%, #0f766e 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.cta-deco-glow-1 {
  position: absolute;
  top: 5%;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-shape {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 220px;
  height: 220px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.cta-deco-accent-1 {
  position: absolute;
  top: 45%;
  left: 8%;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.cta-deco-accent-2 {
  position: absolute;
  bottom: 25%;
  right: 12%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.cta-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  max-width: 600px;
}

.cta-description-index {
  color: #a7f3d0;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  max-width: 500px;
}

.contact-section-index {
  background: #022c22;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.contact-deco-glow-1 {
  position: absolute;
  top: 15%;
  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;
}

.contact-deco-shape-1 {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 240px;
  height: 240px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 50% 60% 40% 50% / 60% 50% 50% 40%;
  z-index: 1;
  pointer-events: none;
}

.contact-deco-accent {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-content-index {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .contact-content-index {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

.contact-form-intro-index {
  color: #a7f3d0;
  font-size: 0.9375rem;
}

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

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

.contact-form-label-index {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-form-input-index,
.contact-form-textarea-index {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #ffffff;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 300ms ease;
}

.contact-form-input-index::placeholder,
.contact-form-textarea-index::placeholder {
  color: #7ee8c9;
}

.contact-form-input-index:focus,
.contact-form-textarea-index:focus {
  outline: none;
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.08);
}

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

.contact-form-submit-index {
  background: #10b981;
  color: #000000;
  border: none;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.contact-form-submit-index:hover {
  background: #059669;
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

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

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

.contact-faq-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

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

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

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

.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

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

.cookie-banner-text-index {
  flex: 1;
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.5;
}

.cookie-banner-link-index {
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
}

.cookie-banner-link-index:hover {
  text-decoration: underline;
}

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

.cookie-btn-accept-index {
  background: #10b981;
  color: #000000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
}

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

.cookie-btn-decline-index {
  background: transparent;
  color: #a7f3d0;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms ease;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
}

.cookie-btn-decline-index:hover {
  border-color: #10b981;
  color: #10b981;
}

@media (min-width: 768px) {
  .hero-content-index {
    min-height: clamp(400px, 60vh, 600px);
    justify-content: center;
  }

  .about-content-index {
    grid-template-columns: 1fr 1fr;
  }

  .contact-content-index {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner-buttons-index {
    justify-content: flex-end;
  }
}

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

  .contact-content-index {
    grid-template-columns: 1fr;
  }
}

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

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

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

  .footer-content {
    display: block;
  }

  .footer-about {
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  }

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

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

  .footer-sections {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 4rem);
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
  }

  .footer-column {
    flex: 1 1 200px;
    min-width: 180px;
  }

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

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

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

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

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

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

  .footer-nav-link:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 3px;
    border-radius: 2px;
  }

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

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

  .footer-contact-label {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .footer-contact-value {
    color: var(--color-text-secondary);
    font-weight: 400;
  }

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

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

  .footer-legal-link:hover {
    color: var(--color-text-primary);
    padding-left: 4px;
  }

  .footer-legal-link:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 3px;
    border-radius: 2px;
  }

  .footer-bottom {
    padding-top: clamp(2rem, 5vw, 3rem);
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    text-align: center;
  }

  .footer-copyright {
    font-family: var(--font-primary);
    font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
    color: var(--color-text-muted);
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .footer-sections {
      gap: clamp(2.5rem, 5vw, 5rem);
    }

    .footer-column {
      flex: 1 1 220px;
    }
  }

  @media (max-width: 767px) {
    .footer-sections {
      flex-direction: column;
    }

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

    .footer-contact-item {
      flex-direction: row;
      align-items: baseline;
      gap: 0.5rem;
    }

    .footer-contact-label {
      white-space: nowrap;
    }

    .footer-contact-value {
      word-break: break-word;
    }
  }

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

.category-page-resilience-strength {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.hero-glow-2-resilience-strength {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.hero-shape-resilience-strength {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 300px;
  height: 350px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  pointer-events: none;
  z-index: 1;
}

.hero-content-resilience-strength {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-title-resilience-strength {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-resilience-strength {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  line-height: 1.7;
  max-width: 600px;
}

.hero-cta-group-resilience-strength {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-primary-resilience-strength {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #000000;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary-resilience-strength:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

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

.btn-outline-resilience-strength:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.hero-stats-resilience-strength {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

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

.stat-number-resilience-strength {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-resilience-strength {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

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

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

.posts-accent-resilience-strength {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.posts-content-resilience-strength {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.posts-header-resilience-strength {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.posts-title-resilience-strength {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.posts-subtitle-resilience-strength {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.card-resilience-strength {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-resilience-strength::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card-resilience-strength:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.card-resilience-strength:hover::before {
  transform: scaleX(1);
}

.card-resilience-strength img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0;
}

.card-title-resilience-strength {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.card-meta-resilience-strength {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.5rem 0;
}

.meta-badge-resilience-strength {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-text-secondary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
}

.meta-badge-resilience-strength i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.card-link-resilience-strength {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #000000;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.card-link-resilience-strength:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

.process-shape-1-resilience-strength {
  position: absolute;
  top: 5%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
  pointer-events: none;
  z-index: 0;
}

.process-shape-2-resilience-strength {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(52, 211, 153, 0.05);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  pointer-events: none;
  z-index: 0;
}

.process-content-resilience-strength {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.process-header-resilience-strength {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.process-title-resilience-strength {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.process-subtitle-resilience-strength {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps-resilience-strength {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-resilience-strength {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: all 0.3s ease;
}

.process-step-resilience-strength:hover {
  border-color: var(--color-primary);
  background: rgba(16, 185, 129, 0.05);
}

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

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

.process-step-title-resilience-strength {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
}

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

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

.benefits-glow-resilience-strength {
  position: absolute;
  top: 20%;
  left: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.benefits-content-resilience-strength {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.benefits-header-resilience-strength {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.benefits-title-resilience-strength {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.benefits-intro-resilience-strength {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.benefit-item-resilience-strength {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-item-resilience-strength:hover {
  border-color: var(--color-primary);
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-4px);
}

.benefit-icon-resilience-strength {
  font-size: clamp(2.5rem, 5vw, 3rem);
  color: var(--color-primary);
}

.benefit-title-resilience-strength {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
}

.benefit-text-resilience-strength {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

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

  .process-step-resilience-strength {
    gap: 1rem;
  }

  .benefit-item-resilience-strength {
    flex: 1 1 100%;
    max-width: none;
  }
}

.main-mindfulness-innerlijke-rust {
  width: 100%;
  background: #022c22;
}

.hero-section-mindfulness-innerlijke-rust {
  background: linear-gradient(135deg, #022c22 0%, #064e4a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-section-mindfulness-innerlijke-rust::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-mindfulness-innerlijke-rust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.breadcrumbs-mindfulness-innerlijke-rust a {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-mindfulness-innerlijke-rust a:hover {
  color: #34d399;
}

.breadcrumbs-mindfulness-innerlijke-rust span {
  color: #7ee8c9;
}

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

.hero-title-mindfulness-innerlijke-rust {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.hero-description-mindfulness-innerlijke-rust {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #a7f3d0;
  max-width: 600px;
  line-height: 1.6;
}

.hero-meta-mindfulness-innerlijke-rust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-mindfulness-innerlijke-rust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #34d399;
}

.meta-badge-mindfulness-innerlijke-rust i {
  color: #10b981;
}

.hero-image-wrapper-mindfulness-innerlijke-rust {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-mindfulness-innerlijke-rust {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.intro-section-mindfulness-innerlijke-rust {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-mindfulness-innerlijke-rust {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .intro-content-mindfulness-innerlijke-rust {
    flex-direction: row;
  }
}

.intro-text-mindfulness-innerlijke-rust {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .intro-text-mindfulness-innerlijke-rust {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-title-mindfulness-innerlijke-rust {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.intro-paragraph-mindfulness-innerlijke-rust {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-mindfulness-innerlijke-rust {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .intro-image-mindfulness-innerlijke-rust {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-visual-mindfulness-innerlijke-rust {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.benefits-section-mindfulness-innerlijke-rust {
  background: #0f766e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.benefits-header-mindfulness-innerlijke-rust {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.benefits-title-mindfulness-innerlijke-rust {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.benefits-subtitle-mindfulness-innerlijke-rust {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #a7f3d0;
  max-width: 500px;
  margin: 0 auto;
}

.benefits-grid-mindfulness-innerlijke-rust {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.benefit-card-mindfulness-innerlijke-rust {
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-card-mindfulness-innerlijke-rust:hover {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  transform: translateY(-4px);
}

.benefit-icon-mindfulness-innerlijke-rust {
  font-size: 2.5rem;
  color: #34d399;
  display: flex;
  align-items: center;
}

.benefit-card-title-mindfulness-innerlijke-rust {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.benefit-card-text-mindfulness-innerlijke-rust {
  font-size: 0.9375rem;
  color: #a7f3d0;
  line-height: 1.6;
}

.practice-section-mindfulness-innerlijke-rust {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-wrapper-mindfulness-innerlijke-rust {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .practice-wrapper-mindfulness-innerlijke-rust {
    flex-direction: row-reverse;
  }
}

.practice-text-mindfulness-innerlijke-rust {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .practice-text-mindfulness-innerlijke-rust {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.practice-title-mindfulness-innerlijke-rust {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.practice-paragraph-mindfulness-innerlijke-rust {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.practice-steps-mindfulness-innerlijke-rust {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-mindfulness-innerlijke-rust {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.step-number-mindfulness-innerlijke-rust {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

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

.step-title-mindfulness-innerlijke-rust {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.step-text-mindfulness-innerlijke-rust {
  font-size: 0.9375rem;
  color: #a7f3d0;
  line-height: 1.6;
}

.practice-image-mindfulness-innerlijke-rust {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .practice-image-mindfulness-innerlijke-rust {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.practice-visual-mindfulness-innerlijke-rust {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.techniques-section-mindfulness-innerlijke-rust {
  background: #0f766e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-header-mindfulness-innerlijke-rust {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.techniques-title-mindfulness-innerlijke-rust {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.techniques-subtitle-mindfulness-innerlijke-rust {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #a7f3d0;
  max-width: 500px;
  margin: 0 auto;
}

.techniques-content-mindfulness-innerlijke-rust {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .techniques-content-mindfulness-innerlijke-rust {
    flex-direction: row;
  }
}

.techniques-text-mindfulness-innerlijke-rust {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .techniques-text-mindfulness-innerlijke-rust {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.techniques-subheading-mindfulness-innerlijke-rust {
  font-size: 1.125rem;
  font-weight: 600;
  color: #34d399;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.techniques-subheading-mindfulness-innerlijke-rust:first-of-type {
  margin-top: 0;
}

.techniques-paragraph-mindfulness-innerlijke-rust {
  font-size: 0.9375rem;
  color: #a7f3d0;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.techniques-image-mindfulness-innerlijke-rust {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .techniques-image-mindfulness-innerlijke-rust {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.techniques-visual-mindfulness-innerlijke-rust {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.quote-section-mindfulness-innerlijke-rust {
  background: #064e4a;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-mindfulness-innerlijke-rust {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
}

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

.quote-author-mindfulness-innerlijke-rust {
  font-size: 0.9375rem;
  color: #a7f3d0;
  font-style: normal;
  display: block;
}

.integration-section-mindfulness-innerlijke-rust {
  background: #0f766e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.integration-wrapper-mindfulness-innerlijke-rust {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 768px) {
  .integration-wrapper-mindfulness-innerlijke-rust {
    flex-direction: row;
  }
}

.integration-text-mindfulness-innerlijke-rust {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .integration-text-mindfulness-innerlijke-rust {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.integration-title-mindfulness-innerlijke-rust {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.integration-paragraph-mindfulness-innerlijke-rust {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.integration-tips-mindfulness-innerlijke-rust {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tip-item-mindfulness-innerlijke-rust {
  padding: 1.25rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border-top: 3px solid #10b981;
}

.tip-title-mindfulness-innerlijke-rust {
  font-size: 1rem;
  font-weight: 600;
  color: #34d399;
  margin-bottom: 0.5rem;
}

.tip-text-mindfulness-innerlijke-rust {
  font-size: 0.9375rem;
  color: #a7f3d0;
  line-height: 1.6;
}

.integration-image-mindfulness-innerlijke-rust {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .integration-image-mindfulness-innerlijke-rust {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.integration-visual-mindfulness-innerlijke-rust {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.conclusion-section-mindfulness-innerlijke-rust {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-mindfulness-innerlijke-rust {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.conclusion-paragraph-mindfulness-innerlijke-rust {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: justify;
}

.conclusion-cta-mindfulness-innerlijke-rust {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.cta-button-mindfulness-innerlijke-rust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  background: #10b981;
  color: #000000;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-button-mindfulness-innerlijke-rust:hover {
  background: #059669;
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

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

.related-header-mindfulness-innerlijke-rust {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-mindfulness-innerlijke-rust {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.related-subtitle-mindfulness-innerlijke-rust {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #a7f3d0;
  max-width: 500px;
  margin: 0 auto;
}

.related-grid-mindfulness-innerlijke-rust {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-mindfulness-innerlijke-rust {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.related-card-mindfulness-innerlijke-rust:hover {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  transform: translateY(-4px);
}

.related-card-image-mindfulness-innerlijke-rust {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}

.related-image-mindfulness-innerlijke-rust {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-mindfulness-innerlijke-rust {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-mindfulness-innerlijke-rust {
  font-size: 0.875rem;
  color: #a7f3d0;
  line-height: 1.6;
}

.related-card-link-mindfulness-innerlijke-rust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #34d399;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-card-link-mindfulness-innerlijke-rust:hover {
  color: #10b981;
  gap: 0.75rem;
}

.disclaimer-section-mindfulness-innerlijke-rust {
  background: #064e4a;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-box-mindfulness-innerlijke-rust {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-left: 4px solid #10b981;
  border-radius: 12px;
}

.disclaimer-title-mindfulness-innerlijke-rust {
  font-size: 1.125rem;
  font-weight: 600;
  color: #34d399;
  margin-bottom: 1rem;
}

.disclaimer-text-mindfulness-innerlijke-rust {
  font-size: 0.9375rem;
  color: #a7f3d0;
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  .intro-content-mindfulness-innerlijke-rust,
  .practice-wrapper-mindfulness-innerlijke-rust,
  .techniques-content-mindfulness-innerlijke-rust,
  .integration-wrapper-mindfulness-innerlijke-rust {
    flex-direction: column;
  }

  .intro-text-mindfulness-innerlijke-rust,
  .intro-image-mindfulness-innerlijke-rust,
  .practice-text-mindfulness-innerlijke-rust,
  .practice-image-mindfulness-innerlijke-rust,
  .techniques-text-mindfulness-innerlijke-rust,
  .techniques-image-mindfulness-innerlijke-rust,
  .integration-text-mindfulness-innerlijke-rust,
  .integration-image-mindfulness-innerlijke-rust {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practice-wrapper-mindfulness-innerlijke-rust {
    flex-direction: column-reverse;
  }
}

.main-omgaan-tegenslagen-uitdagingen {
  width: 100%;
}

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

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

.hero-section-omgaan-tegenslagen-uitdagingen::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hero-text-block-omgaan-tegenslagen-uitdagingen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-image-omgaan-tegenslagen-uitdagingen {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-omgaan-tegenslagen-uitdagingen {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.hero-title-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.hero-meta-omgaan-tegenslagen-uitdagingen {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  margin: var(--space-md) 0;
}

.meta-badge-omgaan-tegenslagen-uitdagingen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-text-secondary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

.meta-badge-omgaan-tegenslagen-uitdagingen i {
  color: var(--color-primary);
}

.hero-cta-omgaan-tegenslagen-uitdagingen {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.btn-primary-omgaan-tegenslagen-uitdagingen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary-omgaan-tegenslagen-uitdagingen:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.breadcrumbs-omgaan-tegenslagen-uitdagingen {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.breadcrumbs-omgaan-tegenslagen-uitdagingen a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-omgaan-tegenslagen-uitdagingen a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.breadcrumbs-omgaan-tegenslagen-uitdagingen span {
  color: var(--color-text-muted);
}

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

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

@media (max-width: 768px) {
  .intro-content-omgaan-tegenslagen-uitdagingen {
    flex-direction: column;
  }
}

.intro-text-omgaan-tegenslagen-uitdagingen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-omgaan-tegenslagen-uitdagingen {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image-omgaan-tegenslagen-uitdagingen img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.intro-title-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-description-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.intro-text-omgaan-tegenslagen-uitdagingen p {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.strategies-section-omgaan-tegenslagen-uitdagingen {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.strategies-section-omgaan-tegenslagen-uitdagingen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.strategies-header-omgaan-tegenslagen-uitdagingen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-omgaan-tegenslagen-uitdagingen {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.strategies-title-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.strategies-steps-omgaan-tegenslagen-uitdagingen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.strategy-step-omgaan-tegenslagen-uitdagingen {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.strategy-step-omgaan-tegenslagen-uitdagingen:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.strategy-number-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.strategy-content-omgaan-tegenslagen-uitdagingen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.strategy-title-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.strategy-text-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.psychology-wrapper-omgaan-tegenslagen-uitdagingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .psychology-wrapper-omgaan-tegenslagen-uitdagingen {
    flex-direction: column;
  }
}

.psychology-text-omgaan-tegenslagen-uitdagingen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.psychology-image-omgaan-tegenslagen-uitdagingen {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.psychology-image-omgaan-tegenslagen-uitdagingen img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.psychology-title-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.psychology-description-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.psychology-insight-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  line-height: 1.7;
}

.featured-quote-omgaan-tegenslagen-uitdagingen {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(16, 185, 129, 0.08);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: var(--radius-md);
}

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

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

.practices-section-omgaan-tegenslagen-uitdagingen {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.practices-section-omgaan-tegenslagen-uitdagingen::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.practices-header-omgaan-tegenslagen-uitdagingen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.practices-title-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.practices-grid-omgaan-tegenslagen-uitdagingen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  position: relative;
  z-index: 1;
}

.practice-card-omgaan-tegenslagen-uitdagingen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: all 0.3s ease;
}

.practice-card-omgaan-tegenslagen-uitdagingen:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  background: rgba(16, 185, 129, 0.05);
}

.practice-icon-omgaan-tegenslagen-uitdagingen {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.75rem;
}

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

.practice-card-text-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

.transformation-wrapper-omgaan-tegenslagen-uitdagingen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .transformation-wrapper-omgaan-tegenslagen-uitdagingen {
    flex-direction: column;
  }
}

.transformation-image-omgaan-tegenslagen-uitdagingen {
  flex: 1 1 50%;
  order: -1;
}

@media (max-width: 768px) {
  .transformation-image-omgaan-tegenslagen-uitdagingen {
    order: 0;
  }
}

.transformation-image-omgaan-tegenslagen-uitdagingen img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.transformation-text-omgaan-tegenslagen-uitdagingen {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.transformation-title-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.transformation-description-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.transformation-insight-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  line-height: 1.7;
}

.transformation-closing-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  line-height: 1.7;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.cta-section-omgaan-tegenslagen-uitdagingen {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section-omgaan-tegenslagen-uitdagingen::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content-omgaan-tegenslagen-uitdagingen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  max-width: 600px;
}

.cta-description-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 500px;
}

.cta-button-omgaan-tegenslagen-uitdagingen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  background: var(--color-primary);
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  margin-top: var(--space-md);
}

.cta-button-omgaan-tegenslagen-uitdagingen:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.disclaimer-section-omgaan-tegenslagen-uitdagingen {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-omgaan-tegenslagen-uitdagingen {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
}

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

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

.related-section-omgaan-tegenslagen-uitdagingen {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.related-title-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.related-subtitle-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
}

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

.related-card-omgaan-tegenslagen-uitdagingen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-omgaan-tegenslagen-uitdagingen:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.related-image-omgaan-tegenslagen-uitdagingen {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-image-omgaan-tegenslagen-uitdagingen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-omgaan-tegenslagen-uitdagingen:hover .related-image-omgaan-tegenslagen-uitdagingen img {
  transform: scale(1.05);
}

.related-content-omgaan-tegenslagen-uitdagingen {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.related-card-text-omgaan-tegenslagen-uitdagingen {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-link-omgaan-tegenslagen-uitdagingen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
}

.related-link-omgaan-tegenslagen-uitdagingen:hover {
  color: var(--color-secondary);
  gap: 0.75rem;
}

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

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

  .intro-section-omgaan-tegenslagen-uitdagingen {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .strategies-section-omgaan-tegenslagen-uitdagingen {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .psychology-section-omgaan-tegenslagen-uitdagingen {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .practices-section-omgaan-tegenslagen-uitdagingen {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .transformation-section-omgaan-tegenslagen-uitdagingen {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }

  .cta-section-omgaan-tegenslagen-uitdagingen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .disclaimer-section-omgaan-tegenslagen-uitdagingen {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-omgaan-tegenslagen-uitdagingen {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-content-omgaan-tegenslagen-uitdagingen {
    min-height: 500px;
  }
}

.main-lichaamsgezondheid-mentaal-welzijn {
  width: 100%;
}

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

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

.breadcrumbs-lichaamsgezondheid-mentaal-welzijn {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-lichaamsgezondheid-mentaal-welzijn a {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-lichaamsgezondheid-mentaal-welzijn a:hover {
  color: #10b981;
}

.breadcrumbs-lichaamsgezondheid-mentaal-welzijn span {
  color: #7ee8c9;
}

.hero-section-lichaamsgezondheid-mentaal-welzijn {
  background: linear-gradient(135deg, #022c22 0%, #064e4a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-section-lichaamsgezondheid-mentaal-welzijn::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

@media (min-width: 768px) {
  .hero-content-lichaamsgezondheid-mentaal-welzijn {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text-block-lichaamsgezondheid-mentaal-welzijn {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.hero-subtitle-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.hero-meta-lichaamsgezondheid-mentaal-welzijn {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.meta-badge-lichaamsgezondheid-mentaal-welzijn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #a7f3d0;
}

.meta-badge-lichaamsgezondheid-mentaal-welzijn i {
  color: #10b981;
}

.hero-image-block-lichaamsgezondheid-mentaal-welzijn {
  flex: 1;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-lichaamsgezondheid-mentaal-welzijn {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

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

.introduction-content-lichaamsgezondheid-mentaal-welzijn {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 768px) {
  .introduction-content-lichaamsgezondheid-mentaal-welzijn {
    flex-direction: row;
    align-items: center;
  }
}

.introduction-text-lichaamsgezondheid-mentaal-welzijn {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-heading-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
}

.introduction-paragraph-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.introduction-image-lichaamsgezondheid-mentaal-welzijn {
  flex: 1;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.introduction-image-img-lichaamsgezondheid-mentaal-welzijn {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

.movement-section-lichaamsgezondheid-mentaal-welzijn {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.movement-section-lichaamsgezondheid-mentaal-welzijn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

@media (min-width: 768px) {
  .movement-content-lichaamsgezondheid-mentaal-welzijn {
    flex-direction: row;
    align-items: center;
  }
}

.movement-text-lichaamsgezondheid-mentaal-welzijn {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.movement-heading-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.movement-paragraph-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
}

.movement-list-lichaamsgezondheid-mentaal-welzijn {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.movement-list-item-lichaamsgezondheid-mentaal-welzijn {
  padding-left: 1.5rem;
  position: relative;
  color: #a7f3d0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.movement-list-item-lichaamsgezondheid-mentaal-welzijn::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 1.25rem;
}

.movement-image-lichaamsgezondheid-mentaal-welzijn {
  flex: 1;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.movement-image-img-lichaamsgezondheid-mentaal-welzijn {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
}

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

.nutrition-content-lichaamsgezondheid-mentaal-welzijn {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 768px) {
  .nutrition-content-lichaamsgezondheid-mentaal-welzijn {
    flex-direction: row;
    align-items: center;
  }
}

.nutrition-image-lichaamsgezondheid-mentaal-welzijn {
  flex: 1;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nutrition-image-img-lichaamsgezondheid-mentaal-welzijn {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

.nutrition-text-lichaamsgezondheid-mentaal-welzijn {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nutrition-heading-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
}

.nutrition-paragraph-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.sleep-section-lichaamsgezondheid-mentaal-welzijn {
  background: #0f766e;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.sleep-header-lichaamsgezondheid-mentaal-welzijn {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.sleep-heading-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.sleep-subheading-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.sleep-cards-lichaamsgezondheid-mentaal-welzijn {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.sleep-card-lichaamsgezondheid-mentaal-welzijn {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.sleep-card-lichaamsgezondheid-mentaal-welzijn:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10b981;
  transform: translateY(-4px);
}

.sleep-card-number-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.sleep-card-title-lichaamsgezondheid-mentaal-welzijn {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.sleep-card-text-lichaamsgezondheid-mentaal-welzijn {
  font-size: 0.9375rem;
  color: #a7f3d0;
  line-height: 1.6;
}

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

.habits-content-lichaamsgezondheid-mentaal-welzijn {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.habits-heading-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
}

.habits-intro-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
  max-width: 700px;
}

.habits-steps-lichaamsgezondheid-mentaal-welzijn {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.habits-step-lichaamsgezondheid-mentaal-welzijn {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #f8fafc;
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.habits-step-number-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.habits-step-content-lichaamsgezondheid-mentaal-welzijn {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.habits-step-title-lichaamsgezondheid-mentaal-welzijn {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.habits-step-text-lichaamsgezondheid-mentaal-welzijn {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.habits-image-lichaamsgezondheid-mentaal-welzijn {
  margin-top: clamp(1rem, 2vw, 2rem);
}

.habits-image-img-lichaamsgezondheid-mentaal-welzijn {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

.quote-section-lichaamsgezondheid-mentaal-welzijn {
  background: #022c22;
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-lichaamsgezondheid-mentaal-welzijn {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 8px;
  margin: 0;
}

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

.quote-author-lichaamsgezondheid-mentaal-welzijn {
  font-size: 0.875rem;
  color: #a7f3d0;
  font-style: normal;
}

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

.conclusion-content-lichaamsgezondheid-mentaal-welzijn {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-heading-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
}

.conclusion-paragraph-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.conclusion-cta-lichaamsgezondheid-mentaal-welzijn {
  margin-top: 1rem;
}

.cta-button-lichaamsgezondheid-mentaal-welzijn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #10b981;
  color: #000000;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-button-lichaamsgezondheid-mentaal-welzijn:hover {
  background: #059669;
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.disclaimer-section-lichaamsgezondheid-mentaal-welzijn {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-box-lichaamsgezondheid-mentaal-welzijn {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #fbbf24;
  border-radius: 8px;
  max-width: 700px;
}

.disclaimer-title-lichaamsgezondheid-mentaal-welzijn {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-lichaamsgezondheid-mentaal-welzijn {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
}

.related-section-lichaamsgezondheid-mentaal-welzijn {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.related-heading-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.related-subheading-lichaamsgezondheid-mentaal-welzijn {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #a7f3d0;
}

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

.related-card-lichaamsgezondheid-mentaal-welzijn {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-lichaamsgezondheid-mentaal-welzijn:hover {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-4px);
}

.related-card-image-lichaamsgezondheid-mentaal-welzijn {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(16, 185, 129, 0.1);
}

.related-card-img-lichaamsgezondheid-mentaal-welzijn {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.related-card-title-lichaamsgezondheid-mentaal-welzijn {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-lichaamsgezondheid-mentaal-welzijn {
  font-size: 0.875rem;
  color: #a7f3d0;
  line-height: 1.6;
}

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

  .introduction-content-lichaamsgezondheid-mentaal-welzijn {
    flex-direction: column;
  }

  .movement-content-lichaamsgezondheid-mentaal-welzijn {
    flex-direction: column;
  }

  .nutrition-content-lichaamsgezondheid-mentaal-welzijn {
    flex-direction: column;
  }

  .related-card-lichaamsgezondheid-mentaal-welzijn {
    flex: 1 1 100%;
    max-width: none;
  }
}

.main-sociale-steun-relaties-versterken {
  width: 100%;
  overflow: hidden;
}

.hero-section-sociale-steun-relaties-versterken {
  background: linear-gradient(135deg, #022c22 0%, #064e4a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-sociale-steun-relaties-versterken::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-section-sociale-steun-relaties-versterken::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

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

.breadcrumbs-sociale-steun-relaties-versterken {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.breadcrumbs-sociale-steun-relaties-versterken a {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-sociale-steun-relaties-versterken a:hover {
  color: #10b981;
}

.breadcrumbs-sociale-steun-relaties-versterken span {
  color: #7ee8c9;
}

.breadcrumbs-sociale-steun-relaties-versterken > span:last-child {
  color: #ffffff;
  font-weight: 500;
}

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

.hero-title-sociale-steun-relaties-versterken {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-sociale-steun-relaties-versterken {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #a7f3d0;
  max-width: 600px;
  line-height: 1.7;
}

.hero-meta-sociale-steun-relaties-versterken {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-sociale-steun-relaties-versterken {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #a7f3d0;
}

.meta-badge-sociale-steun-relaties-versterken i {
  color: #10b981;
}

.hero-image-sociale-steun-relaties-versterken {
  margin-top: clamp(1rem, 3vw, 2rem);
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
}

.hero-img-sociale-steun-relaties-versterken {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.introduction-section-sociale-steun-relaties-versterken {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.introduction-section-sociale-steun-relaties-versterken::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  pointer-events: none;
}

.introduction-content-sociale-steun-relaties-versterken {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .introduction-content-sociale-steun-relaties-versterken {
    flex-direction: column;
  }
}

.intro-text-sociale-steun-relaties-versterken {
  flex: 1 1 300px;
  min-width: 300px;
}

.intro-title-sociale-steun-relaties-versterken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.intro-paragraph-sociale-steun-relaties-versterken {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-sociale-steun-relaties-versterken {
  flex: 1 1 300px;
  min-width: 300px;
  height: clamp(300px, 50vh, 450px);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image-sociale-steun-relaties-versterken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section-one-sociale-steun-relaties-versterken {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.content-wrapper-sociale-steun-relaties-versterken {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .content-wrapper-sociale-steun-relaties-versterken {
    flex-direction: column;
  }
}

.content-text-sociale-steun-relaties-versterken {
  flex: 1 1 300px;
  min-width: 300px;
}

.content-title-sociale-steun-relaties-versterken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.content-paragraph-sociale-steun-relaties-versterken {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.support-types-sociale-steun-relaties-versterken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.support-type-sociale-steun-relaties-versterken {
  background: rgba(16, 185, 129, 0.1);
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 3px solid #10b981;
}

.support-type-title-sociale-steun-relaties-versterken {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.support-type-text-sociale-steun-relaties-versterken {
  font-size: 0.95rem;
  color: #a7f3d0;
  line-height: 1.6;
}

.content-image-sociale-steun-relaties-versterken {
  flex: 1 1 300px;
  min-width: 300px;
  height: clamp(300px, 50vh, 450px);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.08));
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image-sociale-steun-relaties-versterken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-section-sociale-steun-relaties-versterken {
  background: #0f766e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-sociale-steun-relaties-versterken {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 8px;
  font-style: italic;
}

.quote-text-sociale-steun-relaties-versterken {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.quote-author-sociale-steun-relaties-versterken {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #a7f3d0;
  font-style: normal;
  display: block;
}

.content-section-two-sociale-steun-relaties-versterken {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.strategy-list-sociale-steun-relaties-versterken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.strategy-item-sociale-steun-relaties-versterken {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border-top: 3px solid #10b981;
}

.strategy-title-sociale-steun-relaties-versterken {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.strategy-text-sociale-steun-relaties-versterken {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

.content-section-three-sociale-steun-relaties-versterken {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.network-layers-sociale-steun-relaties-versterken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.layer-sociale-steun-relaties-versterken {
  background: rgba(16, 185, 129, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid #10b981;
}

.layer-label-sociale-steun-relaties-versterken {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
}

.layer-text-sociale-steun-relaties-versterken {
  font-size: 0.95rem;
  color: #a7f3d0;
  line-height: 1.6;
}

.steps-section-sociale-steun-relaties-versterken {
  background: #022c22;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.steps-title-sociale-steun-relaties-versterken {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.steps-content-sociale-steun-relaties-versterken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-sociale-steun-relaties-versterken {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  background: rgba(16, 185, 129, 0.08);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 3px solid #10b981;
}

.step-number-sociale-steun-relaties-versterken {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}

.step-content-sociale-steun-relaties-versterken {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-sociale-steun-relaties-versterken {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.step-text-sociale-steun-relaties-versterken {
  font-size: 0.95rem;
  color: #a7f3d0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-item-sociale-steun-relaties-versterken {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-sociale-steun-relaties-versterken {
    text-align: left;
  }
}

.conclusion-section-sociale-steun-relaties-versterken {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-sociale-steun-relaties-versterken {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-sociale-steun-relaties-versterken {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
}

.conclusion-text-sociale-steun-relaties-versterken {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-highlight-sociale-steun-relaties-versterken {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.08));
  border-left: 4px solid #10b981;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin-top: 2rem;
}

.highlight-text-sociale-steun-relaties-versterken {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #0f172a;
  line-height: 1.7;
}

.disclaimer-section-sociale-steun-relaties-versterken {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-section-sociale-steun-relaties-versterken::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  pointer-events: none;
}

.disclaimer-box-sociale-steun-relaties-versterken {
  background: #ffffff;
  border-left: 4px solid #0f766e;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-sociale-steun-relaties-versterken {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-sociale-steun-relaties-versterken {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
}

.related-section-sociale-steun-relaties-versterken {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.related-section-sociale-steun-relaties-versterken::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  pointer-events: none;
}

.related-title-sociale-steun-relaties-versterken {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

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

.related-card-sociale-steun-relaties-versterken {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-sociale-steun-relaties-versterken:hover {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  transform: translateY(-4px);
}

.related-card-image-sociale-steun-relaties-versterken {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(16, 185, 129, 0.1);
}

.related-card-image-sociale-steun-relaties-versterken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-sociale-steun-relaties-versterken:hover .related-card-image-sociale-steun-relaties-versterken img {
  transform: scale(1.05);
}

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

.related-card-title-sociale-steun-relaties-versterken {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-sociale-steun-relaties-versterken {
  font-size: 0.9rem;
  color: #a7f3d0;
  line-height: 1.6;
}

.related-card-link-sociale-steun-relaties-versterken {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.related-card-link-sociale-steun-relaties-versterken:hover {
  color: #34d399;
}

@media (max-width: 768px) {
  .related-card-sociale-steun-relaties-versterken {
    flex: 1 1 100%;
    max-width: none;
  }
}

.main-doelstellingen-voortgang-meten {
  width: 100%;
}

.hero-section-doelstellingen-voortgang-meten {
  background: linear-gradient(135deg, #022c22 0%, #064e4a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-section-doelstellingen-voortgang-meten::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-doelstellingen-voortgang-meten {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.breadcrumbs-doelstellingen-voortgang-meten a {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-doelstellingen-voortgang-meten a:hover {
  color: #10b981;
}

.breadcrumbs-doelstellingen-voortgang-meten span {
  color: #7ee8c9;
}

.breadcrumbs-doelstellingen-voortgang-meten span:last-child {
  color: #ffffff;
  font-weight: 500;
}

.hero-content-doelstellingen-voortgang-meten {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 700px;
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-title-doelstellingen-voortgang-meten {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.hero-description-doelstellingen-voortgang-meten {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.hero-meta-doelstellingen-voortgang-meten {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-doelstellingen-voortgang-meten {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #7ee8c9;
}

.meta-badge-doelstellingen-voortgang-meten i {
  color: #10b981;
}

.hero-image-doelstellingen-voortgang-meten {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-img-doelstellingen-voortgang-meten {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-doelstellingen-voortgang-meten {
    margin-bottom: 1.5rem;
  }
}

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

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

@media (max-width: 768px) {
  .intro-content-doelstellingen-voortgang-meten {
    flex-direction: column;
  }
}

.intro-text-doelstellingen-voortgang-meten {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-heading-doelstellingen-voortgang-meten {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-paragraph-doelstellingen-voortgang-meten {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.intro-image-doelstellingen-voortgang-meten {
  flex: 1 1 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-img-doelstellingen-voortgang-meten {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .intro-text-doelstellingen-voortgang-meten,
  .intro-image-doelstellingen-voortgang-meten {
    flex: 1 1 100%;
  }
}

.steps-section-doelstellingen-voortgang-meten {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.steps-section-doelstellingen-voortgang-meten::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.steps-header-doelstellingen-voortgang-meten {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.steps-title-doelstellingen-voortgang-meten {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.steps-subtitle-doelstellingen-voortgang-meten {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #a7f3d0;
  max-width: 500px;
  margin: 0 auto;
}

.steps-list-doelstellingen-voortgang-meten {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-item-doelstellingen-voortgang-meten {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.step-item-doelstellingen-voortgang-meten::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #34d399);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.step-item-doelstellingen-voortgang-meten:hover::before {
  transform: scaleX(1);
}

.step-number-doelstellingen-voortgang-meten {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.step-content-doelstellingen-voortgang-meten {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-doelstellingen-voortgang-meten {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.step-text-doelstellingen-voortgang-meten {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #a7f3d0;
  line-height: 1.7;
}

.tracking-section-doelstellingen-voortgang-meten {
  background: #022c22;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.tracking-wrapper-doelstellingen-voortgang-meten {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .tracking-wrapper-doelstellingen-voortgang-meten {
    flex-direction: column;
  }
}

.tracking-text-doelstellingen-voortgang-meten {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tracking-heading-doelstellingen-voortgang-meten {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.tracking-paragraph-doelstellingen-voortgang-meten {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
}

.tracking-methods-doelstellingen-voortgang-meten {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.method-item-doelstellingen-voortgang-meten {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  border-radius: var(--radius-md);
}

.method-title-doelstellingen-voortgang-meten {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.method-text-doelstellingen-voortgang-meten {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #7ee8c9;
  line-height: 1.6;
}

.tracking-image-doelstellingen-voortgang-meten {
  flex: 1 1 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tracking-img-doelstellingen-voortgang-meten {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .tracking-text-doelstellingen-voortgang-meten,
  .tracking-image-doelstellingen-voortgang-meten {
    flex: 1 1 100%;
  }
}

.celebration-section-doelstellingen-voortgang-meten {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.celebration-wrapper-doelstellingen-voortgang-meten {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (max-width: 768px) {
  .celebration-wrapper-doelstellingen-voortgang-meten {
    flex-direction: column;
  }
}

.celebration-image-doelstellingen-voortgang-meten {
  flex: 1 1 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.celebration-img-doelstellingen-voortgang-meten {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.celebration-text-doelstellingen-voortgang-meten {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.celebration-heading-doelstellingen-voortgang-meten {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.celebration-paragraph-doelstellingen-voortgang-meten {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.celebration-quote-doelstellingen-voortgang-meten {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.1);
  margin: 1rem 0;
  border-radius: var(--radius-md);
}

.quote-text-doelstellingen-voortgang-meten {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #1e293b;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.celebration-closing-doelstellingen-voortgang-meten {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .celebration-image-doelstellingen-voortgang-meten,
  .celebration-text-doelstellingen-voortgang-meten {
    flex: 1 1 100%;
  }
}

.practical-section-doelstellingen-voortgang-meten {
  background: #064e4a;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.practical-header-doelstellingen-voortgang-meten {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.practical-title-doelstellingen-voortgang-meten {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.practical-subtitle-doelstellingen-voortgang-meten {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #a7f3d0;
  max-width: 500px;
  margin: 0 auto;
}

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

.tip-card-doelstellingen-voortgang-meten {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tip-card-doelstellingen-voortgang-meten:hover {
  transform: translateY(-4px);
  border-color: #10b981;
}

.tip-icon-doelstellingen-voortgang-meten {
  width: clamp(3rem, 5vw, 4rem);
  height: clamp(3rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  color: #10b981;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.tip-title-doelstellingen-voortgang-meten {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.tip-text-doelstellingen-voortgang-meten {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #a7f3d0;
  line-height: 1.7;
}

.conclusion-section-doelstellingen-voortgang-meten {
  background: #022c22;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-doelstellingen-voortgang-meten {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-heading-doelstellingen-voortgang-meten {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.conclusion-text-doelstellingen-voortgang-meten {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #a7f3d0;
  line-height: 1.8;
}

.conclusion-cta-doelstellingen-voortgang-meten {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-primary-doelstellingen-voortgang-meten {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #10b981;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary-doelstellingen-voortgang-meten:hover {
  background: #059669;
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.disclaimer-section-doelstellingen-voortgang-meten {
  background: #0f766e;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-doelstellingen-voortgang-meten {
  max-width: 750px;
  margin: 0 auto;
}

.disclaimer-title-doelstellingen-voortgang-meten {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-doelstellingen-voortgang-meten {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #a7f3d0;
  line-height: 1.7;
}

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

.related-title-doelstellingen-voortgang-meten {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.related-card-doelstellingen-voortgang-meten {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-doelstellingen-voortgang-meten:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-image-doelstellingen-voortgang-meten {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-img-doelstellingen-voortgang-meten {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-content-doelstellingen-voortgang-meten {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

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

.related-card-text-doelstellingen-voortgang-meten {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

.related-link-doelstellingen-voortgang-meten {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-doelstellingen-voortgang-meten:hover {
  color: #059669;
}

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

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

@media (min-width: 768px) {
  .intro-content-doelstellingen-voortgang-meten,
  .tracking-wrapper-doelstellingen-voortgang-meten,
  .celebration-wrapper-doelstellingen-voortgang-meten {
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .step-number-doelstellingen-voortgang-meten {
    font-size: 3rem;
    min-width: 100px;
  }
}

:root {
  --color-bg-primary: #022c22;
  --color-bg-secondary: #064e4a;
  --color-bg-tertiary: #0f766e;
  --color-bg-card: rgba(16, 185, 129, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #a7f3d0;
  --color-text-muted: #7ee8c9;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-dark: #047857;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

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

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

.resilience-academy-about {
  width: 100%;
  overflow: hidden;
}

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

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

.resilience-hero-title-about {
  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;
}

.resilience-hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

.resilience-hero-image-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
}

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

.resilience-stat-item-about {
  flex: 0 1 auto;
  text-align: center;
}

.resilience-stat-number-about {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.resilience-stat-label-about {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
  opacity: 0.9;
}

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

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

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

.resilience-foundation-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.resilience-foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
}

.resilience-foundation-intro-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.resilience-pillars-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.resilience-pillar-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resilience-pillar-card-about:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.resilience-pillar-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.resilience-pillar-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #022c22;
}

.resilience-pillar-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

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

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

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

.resilience-journey-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(52, 211, 153, 0.2);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.resilience-journey-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.resilience-journey-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.resilience-timeline-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.resilience-timeline-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.resilience-step-number-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-secondary);
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

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

.resilience-step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.resilience-step-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.resilience-journey-image-about {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 1rem auto 0;
}

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

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

.resilience-philosophy-intro-about {
  max-width: 750px;
  margin: 0 auto;
}

.resilience-philosophy-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.resilience-philosophy-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
}

.resilience-philosophy-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: #475569;
}

.resilience-philosophy-quote-about {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

.resilience-quote-text-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #022c22;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.resilience-quote-author-about {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

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

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

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

.resilience-approach-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.resilience-approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 0.5rem;
}

.resilience-approach-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 650px;
  margin: 0 auto;
}

.resilience-methods-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.resilience-method-card-about {
  flex: 1 1 260px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.resilience-method-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.resilience-method-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #022c22;
}

.resilience-method-description-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

.resilience-approach-image-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 1rem auto 0;
}

.resilience-disclaimer-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.resilience-disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 750px;
  margin: 0 auto;
}

.resilience-disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.resilience-disclaimer-icon-about {
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.resilience-disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.resilience-disclaimer-text-about {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

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

  .resilience-foundation-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .resilience-journey-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .resilience-philosophy-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .resilience-approach-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .resilience-method-card-about {
    flex: 1 1 280px;
  }

  .resilience-pillar-card-about {
    flex: 1 1 300px;
  }
}

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

  .resilience-method-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .resilience-stats-about {
    gap: 1rem;
  }

  .resilience-stat-number-about {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
}

.resilience-docs {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

.privacy-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.privacy-hero-section h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-hero-section .updated-date {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

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

.privacy-content-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.privacy-content-section ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1.5rem;
}

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

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

.privacy-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.privacy-contact-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.contact-detail strong {
  color: #ffffff;
  font-weight: 600;
}

@media (min-width: 768px) {
  .privacy-hero-section {
    padding: 5rem 0;
  }

  .privacy-content-section {
    padding: 5rem 0;
  }

  .privacy-contact-section {
    padding: 5rem 0;
  }

  .privacy-content {
    gap: 3rem;
  }
}

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

  .privacy-content-section {
    padding: 6rem 0;
  }

  .privacy-contact-section {
    padding: 6rem 0;
  }

  .privacy-content {
    gap: 3.5rem;
  }
}

.thank-you-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1rem, 4vw, 2rem);
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(4rem, 12vw, 6rem);
  color: var(--color-primary);
  animation: pulse-scale 0.8s ease-out;
}

@keyframes pulse-scale {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.thank-lead {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  font-weight: 500;
}

.thank-description {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-muted);
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.7;
}

.thank-highlights {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.highlight-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.highlight-item i {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-secondary);
  flex-shrink: 0;
  min-width: clamp(1.25rem, 3vw, 1.5rem);
}

.thank-closing {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.25rem);
  border: 2px solid transparent;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

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

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

  .thank-highlights {
    gap: 1.5rem;
    padding: 2.5rem;
  }

  .highlight-item {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .thank-content {
    max-width: 700px;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    max-width: 750px;
  }
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

  .error-illustration {
    margin-bottom: clamp(2rem, 5vw, 3rem);
  }

  .error-code-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin: 0;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
  }

  .error-icon {
    margin-top: clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-secondary);
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  .error-title {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
    color: var(--color-text-primary);
    margin: clamp(1.5rem, 3vw, 2rem) 0 clamp(0.75rem, 2vw, 1rem);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
  }

  .error-subtitle {
    font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto clamp(1.5rem, 3vw, 2rem);
    line-height: 1.6;
  }

  .error-message {
    background: rgba(16, 185, 129, 0.08);
    border-left: 4px solid var(--color-primary);
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--radius-md);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: 500px;
  }

  .error-message p {
    color: var(--color-text-muted);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    margin: 0;
    line-height: 1.6;
  }

  .error-features {
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 3vw, 2rem);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    max-width: 600px;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(0.75rem, 1.5vw, 1rem);
  }

  .feature-item i {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-secondary);
  }

  .feature-item span {
    font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
    color: var(--color-text-muted);
    font-weight: 500;
  }

  .btn {
    display: inline-block;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    background: var(--color-primary);
    color: #000000;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    font-family: var(--font-primary);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  }

  .btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
  }

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

  .error-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .decoration-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
  }

  .decoration-1 {
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    background: var(--color-primary);
    top: -50px;
    right: -100px;
    animation: pulse 4s ease-in-out infinite;
  }

  .decoration-2 {
    width: clamp(150px, 25vw, 300px);
    height: clamp(150px, 25vw, 300px);
    background: var(--color-secondary);
    bottom: -50px;
    left: -75px;
    animation: pulse 5s ease-in-out infinite 1s;
  }

  .decoration-3 {
    width: clamp(100px, 20vw, 250px);
    height: clamp(100px, 20vw, 250px);
    background: var(--color-accent-dark);
    top: 50%;
    right: 10%;
    animation: pulse 6s ease-in-out infinite 2s;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }

  
  @media (max-width: 767px) {
    .error-section {
      min-height: auto;
      padding: clamp(3rem, 8vw, 4rem) 0;
    }

    .error-features {
      gap: clamp(0.75rem, 2vw, 1rem);
    }

    .feature-item span {
      display: none;
    }
  }

  
  @media (min-width: 768px) {
    .error-section {
      min-height: 100vh;
      padding: 4rem 0;
    }

    .error-code-wrapper {
      transform: perspective(1000px) rotateX(0deg);
    }
  }

  
  @media (min-width: 1024px) {
    .error-section {
      min-height: 100vh;
    }

    .btn:hover {
      transform: translateY(-4px);
    }
  }

  
  @media (min-width: 1440px) {
    .error-code {
      font-size: 8rem;
    }

    .error-title {
      font-size: 2.5rem;
    }
  }

  
  @media (prefers-reduced-motion: reduce) {
    .error-icon,
    .decoration-element {
      animation: none;
    }

    .btn {
      transition: background-color 0.2s ease;
    }

    .btn:hover {
      transform: none;
    }
  }