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

:root {
  
  
  
  
  
  --color-bg-dark-primary: #022c22;
  --color-bg-dark-secondary: #064e3b;
  --color-bg-dark-tertiary: #065f46;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  
  
  --color-bg-card-dark: rgba(16, 185, 129, 0.08);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #6ee7b7;
  
  
  --color-text-light-primary: #1e293b;
  --color-text-light-secondary: #64748b;
  --color-text-light-muted: #94a3b8;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #34d399;
  --color-secondary: #0d9488;
  --color-accent-warm: #f59e0b;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

* {
  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;
}

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  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: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 600px;
}

.hero-section .hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  max-width: 500px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.hero-section .btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.hero-section .btn-primary {
  background: var(--color-primary);
  color: #000000;
}

.hero-section .btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

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

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

.hero-stats {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary-light);
}

.hero-stat-label {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark-muted);
  font-weight: 500;
}

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

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

.features-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
  max-width: 600px;
}

.features-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.features-section .features-description {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  max-width: 500px;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

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

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  font-size: 24px;
  color: var(--color-primary);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
}

.feature-card p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  margin: 0;
}

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

.about-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.about-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.about-highlight {
  padding: var(--space-lg);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin-top: var(--space-md);
}

.about-highlight p {
  margin: 0;
  color: var(--color-text-dark-primary);
  font-weight: 500;
}

.about-image {
  position: relative;
  min-height: 350px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(13, 148, 136, 0.1) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image i {
  font-size: clamp(80px, 10vw, 120px);
  color: rgba(16, 185, 129, 0.3);
}

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

.programs-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 10vw, 8rem) 0;
}

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

.programs-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.programs-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.programs-section .programs-subtitle {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

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

.program-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

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

.program-level {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.program-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
  margin: 0;
}

.program-card p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.program-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid #e2e8f0;
}

.program-benefit {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: flex-start;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-light-secondary);
}

.program-benefit i {
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.program-cta {
  display: inline-block;
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-align: center;
}

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

.testimonials-section {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
}

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

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

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonials-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testimonials-section .testimonials-subtitle {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

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

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

.testimonial-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--color-accent-warm);
  font-size: 14px;
}

.testimonial-quote {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  margin-top: var(--space-md);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin: 0;
}

.testimonial-role {
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-dark-muted);
  margin: 0;
}

.cta-section {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 10vw, 8rem) 0;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-section p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin: 0;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.cta-section .btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.cta-section .btn-primary {
  background: var(--color-primary);
  color: #000000;
}

.cta-section .btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

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

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

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

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

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-section p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-item-label {
  font-family: var(--font-heading);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.contact-item-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
}

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

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

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

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

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

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

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

.form-submit-btn {
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.footer-section {
  background: var(--color-bg-light-tertiary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

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

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
}

.footer-column p {
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-light-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-light-secondary);
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

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

@media (max-width: 768px) {
  .hero-content {
    gap: var(--space-xl);
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .hero-cta-group a {
    width: 100%;
  }
  
  .hero-stats {
    gap: var(--space-lg);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

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

.mt-small {
  margin-top: var(--space-sm);
}

.mt-medium {
  margin-top: var(--space-md);
}

.mt-large {
  margin-top: var(--space-lg);
}

.mb-small {
  margin-bottom: var(--space-sm);
}

.mb-medium {
  margin-bottom: var(--space-md);
}

.mb-large {
  margin-bottom: var(--space-lg);
}

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

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

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

.header-growth-forge {
  position: static;
  background: var(--color-bg-light-primary);
  border-bottom: 1px solid #e2e8f0;
  width: 100%;
  z-index: 100;
}

.header-growth-forge-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(4rem, 8vh, 5.5rem);
  gap: 1rem;
}

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

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

.header-growth-forge-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  white-space: nowrap;
}

.header-growth-forge-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  margin-left: auto;
}

.header-growth-forge-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-light-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.header-growth-forge-nav-link:hover {
  color: var(--color-primary);
}

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

.header-growth-forge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.header-growth-forge-cta-button:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.header-growth-forge-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-light-primary);
  font-size: 1.5rem;
  transition: color 300ms ease;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.header-growth-forge-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-growth-forge-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-growth-forge-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-light-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  overflow-y: auto;
}

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

.header-growth-forge-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 4vw, 1.5rem);
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}

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

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

.header-growth-forge-mobile-close:hover {
  color: var(--color-primary);
}

.header-growth-forge-mobile-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.header-growth-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1rem, 4vw, 1.5rem);
  flex-grow: 1;
}

.header-growth-forge-mobile-link {
  display: block;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1rem, 3vw, 1.5rem);
  color: var(--color-text-light-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-growth-forge-mobile-link:hover {
  background: #f1f5f9;
  color: var(--color-primary);
}

.header-growth-forge-mobile-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

.header-growth-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.header-growth-forge-mobile-cta:active {
  transform: translateY(0);
}

.header-growth-forge-mobile-cta:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

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

  .header-growth-forge-mobile-toggle {
    display: none;
  }

  .header-growth-forge-mobile-menu {
    display: none !important;
  }

  .header-growth-forge-container {
    height: 5rem;
  }
}

@media (min-width: 1024px) {
  .header-growth-forge-nav-link {
    font-size: 1rem;
  }

  .header-growth-forge-cta-button {
    padding: 0.875rem 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-growth-forge-mobile-menu,
  .header-growth-forge-nav-link,
  .header-growth-forge-cta-button,
  .header-growth-forge-mobile-link {
    transition: none;
  }

  .header-growth-forge-cta-button:hover,
  .header-growth-forge-mobile-cta:hover {
    transform: none;
  }
}

    .motivation-hub {
  width: 100%;
}

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

.hero-accent-glow-1 {
  position: absolute;
  top: -20%;
  right: 10%;
  width: 300px;
  height: 300px;
  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-accent-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-floating-shape-1 {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.hero-floating-shape-2 {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 180px;
  height: 220px;
  background: rgba(13, 148, 136, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
  animation: float 8s ease-in-out infinite reverse;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

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

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: flex-start;
}

.hero-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 600px;
}

.hero-section-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  max-width: 500px;
  font-weight: 400;
}

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

.hero-section .btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 2px solid transparent;
}

.hero-section .btn-primary {
  background: var(--color-primary);
  color: #000000;
}

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

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

.hero-section .btn-secondary:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--color-primary-light);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary-light);
}

.hero-stat-label {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark-muted);
  font-weight: 500;
}

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

.about-glow-1 {
  position: absolute;
  top: 10%;
  left: -50px;
  width: 280px;
  height: 280px;
  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;
}

.about-glow-2 {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.about-shape-accent {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 200px;
  height: 240px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.about-line-element {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.about-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.about-section-description {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.about-highlight {
  padding: var(--space-lg);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin-top: var(--space-md);
}

.about-highlight-text {
  margin: 0;
  color: var(--color-text-light-primary);
  font-weight: 500;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
}

.about-image {
  position: relative;
  min-height: 350px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(13, 148, 136, 0.08) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

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

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

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

.principles-glow-bottom {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.principles-accent-shape {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 220px;
  height: 220px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

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

.principles-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.principles-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-section-subtitle {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

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

.principle-card {
  flex: 1 1 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.principle-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.12);
  transform: translateY(-6px);
}

.principle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary-light);
  font-size: 1.5rem;
}

.principle-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
}

.principle-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin: 0;
}

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

.programs-shape-1 {
  position: absolute;
  top: 10%;
  left: -60px;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 70% 30% 66% 34% / 43% 33% 67% 57%;
  z-index: 1;
  pointer-events: none;
}

.programs-shape-2 {
  position: absolute;
  bottom: 5%;
  right: -40px;
  width: 250px;
  height: 250px;
  background: rgba(13, 148, 136, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

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

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

.programs-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.programs-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.programs-section-subtitle {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

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

.program-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}

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

.program-level {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.program-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
  margin: 0;
}

.program-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.program-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid #e2e8f0;
}

.program-benefit {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: flex-start;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-light-secondary);
}

.program-benefit i {
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.program-cta {
  display: inline-block;
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-align: center;
}

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

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

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

.featured-glow-2 {
  position: absolute;
  bottom: 15%;
  left: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.featured-accent {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

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

.featured-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.featured-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.featured-section-subtitle {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

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

.featured-card {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.15);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.12);
  transform: translateY(-6px);
}

.featured-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(16, 185, 129, 0.1);
}

.featured-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.featured-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.featured-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
  margin: 0;
}

.featured-card-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin: 0;
}

.featured-card-link {
  display: inline-block;
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: var(--space-sm);
}

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

.featured-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

.featured-cta-link {
  display: inline-block;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(2rem, 4vw, 2.75rem);
  background: var(--color-primary);
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-cta-link:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

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

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

.testimonials-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-shape {
  position: absolute;
  top: 50%;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

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

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonials-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.testimonials-section-subtitle {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

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

.testimonial-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--color-accent-warm);
  font-size: 14px;
}

.testimonial-quote {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  border-top: 1px solid #e2e8f0;
  margin-top: var(--space-md);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  margin: 0;
}

.testimonial-role {
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-light-secondary);
  margin: 0;
}

.learning-path-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.learning-path-glow {
  position: absolute;
  top: 20%;
  right: -100px;
  width: 350px;
  height: 350px;
  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;
}

.learning-path-shape-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.learning-path-shape-2 {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 180px;
  height: 220px;
  background: rgba(13, 148, 136, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

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

.learning-path-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.learning-path-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.learning-path-section-subtitle {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

.learning-path-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.learning-path-step {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.learning-path-step:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.12);
  transform: translateX(8px);
}

.learning-path-step-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary-light);
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}

.learning-path-step-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.learning-path-step-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
}

.learning-path-step-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .learning-path-step {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .learning-path-step-number {
    min-width: auto;
    text-align: left;
  }
}

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

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

.cta-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-section-description {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin: 0;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.cta-section .btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 2px solid transparent;
}

.cta-section .btn-primary {
  background: var(--color-primary);
  color: #000000;
}

.cta-section .btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

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

.cta-section .btn-secondary:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--color-primary-hover);
  transform: translateY(-3px);
}

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

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

.contact-glow-2 {
  position: absolute;
  bottom: 20%;
  left: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 220px;
  height: 220px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

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

.contact-form-wrapper {
width: 100%;

}

.contact-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: var(--space-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

.contact-submit-btn {
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-submit-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

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

.contact-info {
  flex: 1 1 400px;
  max-width: 500px;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-lg);
}

.contact-faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-faq-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-faq-question {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin: 0;
}

.contact-faq-answer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-privacy-notice {
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
  margin-top: var(--space-lg);
}

.contact-privacy-link {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-privacy-link:hover {
  color: var(--color-primary);
}

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

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

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

.cookie-banner-text {
  color: #e2e8f0;
  margin: 0;
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.95rem);
  line-height: 1.5;
  max-width: 400px;
}

.cookie-banner-buttons {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

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

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

@media (max-width: 768px) {
  .hero-cta-group {
    flex-direction: column;
  }
  
  .hero-cta-group a {
    width: 100%;
  }
  
  .hero-stats {
    gap: var(--space-lg);
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@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;
  }
}

    :root {
  --color-bg-dark-primary: #022c22;
  --color-bg-dark-secondary: #064e3b;
  --color-bg-dark-tertiary: #065f46;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(16, 185, 129, 0.08);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #a7f3d0;
  --color-text-dark-muted: #6ee7b7;
  --color-text-light-primary: #1e293b;
  --color-text-light-secondary: #64748b;
  --color-text-light-muted: #94a3b8;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #34d399;
  --color-secondary: #0d9488;
  --color-accent-warm: #f59e0b;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --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;
}

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

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

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

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

.footer-section {
  flex: 1 1 250px;
  background-color: #3d5034;
  padding: 20px;
  border-radius: 16px;
}

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

}

.footer-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.3px;
}

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

.footer-nav-title,
.footer-contact-title,
.footer-legal-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
}

.footer-nav-list,
.footer-legal-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.footer-nav-link:focus-visible,
.footer-legal-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-contact-item {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.6;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  color: var(--color-text-dark-primary);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

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

.footer-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.footer-deco-glow-1 {
  top: -10%;
  right: -15%;
  width: clamp(250px, 35vw, 400px);
  height: clamp(250px, 35vw, 400px);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
}

.footer-deco-glow-2 {
  bottom: -20%;
  left: -10%;
  width: clamp(200px, 30vw, 350px);
  height: clamp(200px, 30vw, 350px);
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  border-radius: 50%;
}

.footer-deco-accent {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  opacity: 0.5;
}

@media (max-width: 767px) {
  .footer-section {
    flex: 1 1 100%;
  }

  .footer-nav-list,
  .footer-legal-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

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

.category-page-motivatie-ontwikkeling {
  background: var(--color-bg-light-primary);
}

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

.hero-glow-motivatie-ontwikkeling {
  position: absolute;
  top: -30%;
  right: -10%;
  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: 1;
}

.hero-shape-motivatie-ontwikkeling {
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-accent-motivatie-ontwikkeling {
  position: absolute;
  top: 20%;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  pointer-events: none;
  z-index: 2;
}

.hero-content-motivatie-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

.hero-title-motivatie-ontwikkeling {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 600px;
}

.hero-subtitle-motivatie-ontwikkeling {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  max-width: 500px;
  font-weight: 400;
}

.hero-cta-motivatie-ontwikkeling {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.btn-primary-motivatie-ontwikkeling,
.btn-secondary-motivatie-ontwikkeling {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary-motivatie-ontwikkeling {
  background: var(--color-primary);
  color: #000000;
}

.btn-primary-motivatie-ontwikkeling:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

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

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

.hero-stats-motivatie-ontwikkeling {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-stat-motivatie-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-stat-number-motivatie-ontwikkeling {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary-light);
}

.hero-stat-label-motivatie-ontwikkeling {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark-muted);
  font-weight: 500;
}

.posts-section-motivatie-ontwikkeling {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
}

.posts-header-motivatie-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
  max-width: 700px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.posts-tag-motivatie-ontwikkeling {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.posts-title-motivatie-ontwikkeling {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-motivatie-ontwikkeling {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  max-width: 600px;
}

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

.post-card-motivatie-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1 1 300px;
  max-width: 400px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.post-card-motivatie-ontwikkeling::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 1;
}

.post-card-motivatie-ontwikkeling:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-card-motivatie-ontwikkeling:hover::before {
  transform: scaleX(1);
}

.post-card-image-motivatie-ontwikkeling {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: -1.25rem -1.25rem 0 -1.25rem;
  max-width: none;
}

.post-card-title-motivatie-ontwikkeling {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
  margin: 0;
}

.post-card-description-motivatie-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.post-card-meta-motivatie-ontwikkeling {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.post-meta-item-motivatie-ontwikkeling {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-light-secondary);
}

.post-meta-item-motivatie-ontwikkeling i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.post-card-link-motivatie-ontwikkeling {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-align: center;
  margin-top: var(--space-sm);
}

.post-card-link-motivatie-ontwikkeling:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .post-card-motivatie-ontwikkeling {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .post-card-image-motivatie-ontwikkeling {
    margin: -1.25rem -1.25rem 0.5rem -1.25rem;
  }
}

.process-section-motivatie-ontwikkeling {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

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

.process-glow-motivatie-ontwikkeling {
  position: absolute;
  bottom: -20%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.process-header-motivatie-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
  max-width: 600px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 10;
}

.process-title-motivatie-ontwikkeling {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-subtitle-motivatie-ontwikkeling {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

.process-steps-motivatie-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  z-index: 10;
}

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

.process-step-motivatie-ontwikkeling:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

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

.process-step-content-motivatie-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.process-step-title-motivatie-ontwikkeling {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
  margin: 0;
}

.process-step-text-motivatie-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: var(--color-text-dark-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .process-step-motivatie-ontwikkeling {
    flex-direction: column;
    align-items: flex-start;
  }
}

.insights-section-motivatie-ontwikkeling {
  background: var(--color-bg-light-tertiary);
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
}

.insights-content-motivatie-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

.insights-quote-motivatie-ontwikkeling {
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-light-primary);
  margin: 0;
  border-radius: var(--radius-lg);
}

.insights-quote-text-motivatie-ontwikkeling {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
  margin: 0 0 var(--space-md) 0;
  font-style: italic;
  line-height: 1.7;
}

.insights-quote-author-motivatie-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  font-style: normal;
}

.insights-context-motivatie-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.insights-context-title-motivatie-ontwikkeling {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
}

.insights-context-text-motivatie-ontwikkeling {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin: 0;
}

.cta-final-motivatie-ontwikkeling {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-shape-motivatie-ontwikkeling {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.cta-glow-motivatie-ontwikkeling {
  position: absolute;
  bottom: -30%;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.cta-content-motivatie-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  text-align: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-title-motivatie-ontwikkeling {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-description-motivatie-ontwikkeling {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
}

.cta-buttons-motivatie-ontwikkeling {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary-motivatie-ontwikkeling,
.cta-btn-secondary-motivatie-ontwikkeling {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.cta-btn-primary-motivatie-ontwikkeling {
  background: var(--color-primary);
  color: #000000;
}

.cta-btn-primary-motivatie-ontwikkeling:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.cta-btn-secondary-motivatie-ontwikkeling {
  background: transparent;
  color: var(--color-text-dark-secondary);
  border-color: var(--color-primary);
}

.cta-btn-secondary-motivatie-ontwikkeling:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--color-primary-light);
}

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

  .hero-cta-motivatie-ontwikkeling a {
    width: 100%;
  }

  .hero-stats-motivatie-ontwikkeling {
    gap: var(--space-lg);
  }

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

  .post-card-motivatie-ontwikkeling {
    flex: 1 1 100%;
    max-width: none;
  }

  .cta-buttons-motivatie-ontwikkeling {
    flex-direction: column;
  }

  .cta-buttons-motivatie-ontwikkeling a {
    width: 100%;
  }
}

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

.main-doelstelling-strategie-langdurige-motivatie {
  width: 100%;
}

.hero-section-doelstelling-strategie-langdurige-motivatie {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-doelstelling-strategie-langdurige-motivatie::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-section-doelstelling-strategie-langdurige-motivatie::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

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

.hero-title-doelstelling-strategie-langdurige-motivatie {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.hero-subtitle-doelstelling-strategie-langdurige-motivatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  max-width: 550px;
  font-weight: 400;
  margin: 0;
}

.hero-meta-doelstelling-strategie-langdurige-motivatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.meta-badge-doelstelling-strategie-langdurige-motivatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-text-dark-secondary);
  border-radius: var(--radius-md);
  font-size: clamp(0.8125rem, 1vw, 0.95rem);
  font-weight: 500;
}

.meta-badge-doelstelling-strategie-langdurige-motivatie i {
  color: var(--color-primary-light);
  font-size: 0.875rem;
}

.hero-image-wrapper-doelstelling-strategie-langdurige-motivatie {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-doelstelling-strategie-langdurige-motivatie {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.intro-section-doelstelling-strategie-langdurige-motivatie {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.intro-content-doelstelling-strategie-langdurige-motivatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-block-doelstelling-strategie-langdurige-motivatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-doelstelling-strategie-langdurige-motivatie {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light-primary);
  margin: 0 0 1.5rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-doelstelling-strategie-langdurige-motivatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  margin: 0 0 1.5rem 0;
}

.intro-text-doelstelling-strategie-langdurige-motivatie:last-child {
  margin-bottom: 0;
}

.intro-image-wrapper-doelstelling-strategie-langdurige-motivatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-doelstelling-strategie-langdurige-motivatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-doelstelling-strategie-langdurige-motivatie {
    flex-direction: column;
  }
  
  .intro-text-block-doelstelling-strategie-langdurige-motivatie,
  .intro-image-wrapper-doelstelling-strategie-langdurige-motivatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-doelstelling-strategie-langdurige-motivatie {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-section-one-doelstelling-strategie-langdurige-motivatie::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.content-wrapper-one-doelstelling-strategie-langdurige-motivatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.content-text-block-doelstelling-strategie-langdurige-motivatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-doelstelling-strategie-langdurige-motivatie {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark-primary);
  margin: 0 0 1.5rem 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-text-doelstelling-strategie-langdurige-motivatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-dark-secondary);
  margin: 0 0 1.5rem 0;
}

.content-text-doelstelling-strategie-langdurige-motivatie:last-child {
  margin-bottom: 0;
}

.smart-steps-doelstelling-strategie-langdurige-motivatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.smart-step-doelstelling-strategie-langdurige-motivatie {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.smart-step-number-doelstelling-strategie-langdurige-motivatie {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary-light);
  flex-shrink: 0;
  min-width: 50px;
  text-align: center;
}

.smart-step-content-doelstelling-strategie-langdurige-motivatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.smart-step-title-doelstelling-strategie-langdurige-motivatie {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin: 0;
  line-height: 1.3;
}

.smart-step-text-doelstelling-strategie-langdurige-motivatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: var(--color-text-dark-muted);
  margin: 0;
}

.content-image-wrapper-doelstelling-strategie-langdurige-motivatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-doelstelling-strategie-langdurige-motivatie {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .content-wrapper-one-doelstelling-strategie-langdurige-motivatie {
    flex-direction: column;
  }
  
  .content-text-block-doelstelling-strategie-langdurige-motivatie,
  .content-image-wrapper-doelstelling-strategie-langdurige-motivatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .smart-step-doelstelling-strategie-langdurige-motivatie {
    gap: 1rem;
    padding: 1.25rem;
  }
}

.content-section-two-doelstelling-strategie-langdurige-motivatie {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-wrapper-two-doelstelling-strategie-langdurige-motivatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.highlight-box-doelstelling-strategie-langdurige-motivatie {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
}

.highlight-text-doelstelling-strategie-langdurige-motivatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-primary);
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  .content-wrapper-two-doelstelling-strategie-langdurige-motivatie {
    flex-direction: column;
  }
  
  .content-text-block-doelstelling-strategie-langdurige-motivatie,
  .content-image-wrapper-doelstelling-strategie-langdurige-motivatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-three-doelstelling-strategie-langdurige-motivatie {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.content-section-three-doelstelling-strategie-langdurige-motivatie::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.content-wrapper-three-doelstelling-strategie-langdurige-motivatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .content-wrapper-three-doelstelling-strategie-langdurige-motivatie {
    flex-direction: column-reverse;
  }
  
  .content-text-block-doelstelling-strategie-langdurige-motivatie,
  .content-image-wrapper-doelstelling-strategie-langdurige-motivatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-doelstelling-strategie-langdurige-motivatie {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-doelstelling-strategie-langdurige-motivatie {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  border-left: 5px solid var(--color-primary);
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-lg);
}

.quote-text-doelstelling-strategie-langdurige-motivatie {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-light-primary);
  margin: 0 0 1.5rem 0;
  font-weight: 500;
}

.quote-author-doelstelling-strategie-langdurige-motivatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  font-style: normal;
  font-weight: 500;
}

.conclusion-section-doelstelling-strategie-langdurige-motivatie {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-section-doelstelling-strategie-langdurige-motivatie::before {
  content: '';
  position: absolute;
  top: -20%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.conclusion-content-doelstelling-strategie-langdurige-motivatie {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.conclusion-title-doelstelling-strategie-langdurige-motivatie {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
}

.conclusion-text-doelstelling-strategie-langdurige-motivatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-dark-secondary);
  margin: 0;
  text-align: center;
}

.cta-buttons-doelstelling-strategie-langdurige-motivatie {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.btn-primary-doelstelling-strategie-langdurige-motivatie,
.btn-secondary-doelstelling-strategie-langdurige-motivatie {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  font-family: var(--font-primary);
}

.btn-primary-doelstelling-strategie-langdurige-motivatie {
  background: var(--color-primary);
  color: #000000;
}

.btn-primary-doelstelling-strategie-langdurige-motivatie:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.btn-secondary-doelstelling-strategie-langdurige-motivatie {
  background: transparent;
  color: var(--color-text-dark-secondary);
  border-color: var(--color-primary);
}

.btn-secondary-doelstelling-strategie-langdurige-motivatie:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--color-primary-light);
  color: var(--color-text-dark-primary);
}

.disclaimer-section-doelstelling-strategie-langdurige-motivatie {
  background: var(--color-bg-light-secondary);
  padding: clamp(2.5rem, 8vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.disclaimer-content-doelstelling-strategie-langdurige-motivatie {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-doelstelling-strategie-langdurige-motivatie {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  margin: 0;
}

.disclaimer-text-doelstelling-strategie-langdurige-motivatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  margin: 0;
}

.related-section-doelstelling-strategie-langdurige-motivatie {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 10vw, 6rem) 0;
}

.related-content-doelstelling-strategie-langdurige-motivatie {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

.related-title-doelstelling-strategie-langdurige-motivatie {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light-primary);
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-doelstelling-strategie-langdurige-motivatie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  background: var(--color-bg-light-secondary);
  border: 1px solid #e2e8f0;
}

.related-card-doelstelling-strategie-langdurige-motivatie:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.related-card-image-doelstelling-strategie-langdurige-motivatie {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.related-card-content-doelstelling-strategie-langdurige-motivatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-doelstelling-strategie-langdurige-motivatie {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-light-primary);
  margin: 0;
}

.related-card-text-doelstelling-strategie-langdurige-motivatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: var(--color-text-light-secondary);
  margin: 0;
  flex-grow: 1;
}

.related-card-link-doelstelling-strategie-langdurige-motivatie {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 0.5rem;
}

.related-card-link-doelstelling-strategie-langdurige-motivatie:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .related-card-doelstelling-strategie-langdurige-motivatie {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .cta-buttons-doelstelling-strategie-langdurige-motivatie {
    flex-direction: column;
  }
  
  .cta-buttons-doelstelling-strategie-langdurige-motivatie a {
    width: 100%;
  }
}

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

.main-aandrijving-dagelijkse-gewoonten {
  width: 100%;
}

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

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

.hero-section-aandrijving-dagelijkse-gewoonten {
  background: #022c22;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
}

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

.hero-section-aandrijving-dagelijkse-gewoonten::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-aandrijving-dagelijkse-gewoonten {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  position: relative;
  z-index: 2;
}

.breadcrumbs-aandrijving-dagelijkse-gewoonten a {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-aandrijving-dagelijkse-gewoonten a:hover {
  color: #34d399;
}

.breadcrumbs-aandrijving-dagelijkse-gewoonten span {
  color: #6ee7b7;
}

.breadcrumbs-aandrijving-dagelijkse-gewoonten span:last-child {
  color: #ffffff;
}

.hero-content-aandrijving-dagelijkse-gewoonten {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.hero-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 700px;
}

.hero-subtitle-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  line-height: 1.6;
  max-width: 600px;
  font-weight: 400;
  margin: 0;
}

.hero-meta-aandrijving-dagelijkse-gewoonten {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-aandrijving-dagelijkse-gewoonten {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #a7f3d0;
  border-radius: 20px;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  font-weight: 500;
}

.meta-badge-aandrijving-dagelijkse-gewoonten i {
  font-size: 14px;
}

.hero-image-wrapper-aandrijving-dagelijkse-gewoonten {
  margin: 3rem 0 2rem 0;
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  max-height: 450px;
}

.hero-image-aandrijving-dagelijkse-gewoonten {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.hero-stats-aandrijving-dagelijkse-gewoonten {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  position: relative;
  z-index: 2;
}

.hero-stat-aandrijving-dagelijkse-gewoonten {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-stat-number-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #34d399;
}

.hero-stat-label-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #6ee7b7;
  font-weight: 500;
}

.intro-section-aandrijving-dagelijkse-gewoonten {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 8rem) 0;
}

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

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

.intro-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-description-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.intro-image-aandrijving-dagelijkse-gewoonten {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-aandrijving-dagelijkse-gewoonten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

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

.steps-section-aandrijving-dagelijkse-gewoonten {
  background: #f8fafc;
  padding: clamp(3rem, 10vw, 8rem) 0;
}

.steps-header-aandrijving-dagelijkse-gewoonten {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.steps-tag-aandrijving-dagelijkse-gewoonten {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  font-weight: 500;
}

.steps-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.steps-subtitle-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
}

.steps-list-aandrijving-dagelijkse-gewoonten {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-aandrijving-dagelijkse-gewoonten {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.step-number-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.step-content-aandrijving-dagelijkse-gewoonten {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.step-text-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .step-item-aandrijving-dagelijkse-gewoonten {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-number-aandrijving-dagelijkse-gewoonten {
    font-size: clamp(1.5rem, 2vw, 2rem);
  }
}

.principles-section-aandrijving-dagelijkse-gewoonten {
  background: #064e3b;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
}

.principles-section-aandrijving-dagelijkse-gewoonten::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.principles-wrapper-aandrijving-dagelijkse-gewoonten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.principles-text-aandrijving-dagelijkse-gewoonten {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principles-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.principles-description-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin: 0;
}

.principles-highlight-aandrijving-dagelijkse-gewoonten {
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border-left: 4px solid #10b981;
  margin-top: 0.5rem;
}

.quote-block-aandrijving-dagelijkse-gewoonten {
  margin: 0;
  padding: 0;
}

.quote-text-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #ffffff;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 0.5rem 0;
}

.quote-author-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  color: #6ee7b7;
  font-style: normal;
  display: block;
}

.principles-image-aandrijving-dagelijkse-gewoonten {
  border-radius: 12px;
  overflow: hidden;
  max-height: 400px;
}

.principles-img-aandrijving-dagelijkse-gewoonten {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .principles-wrapper-aandrijving-dagelijkse-gewoonten {
    grid-template-columns: 1fr;
  }
}

.habits-section-aandrijving-dagelijkse-gewoonten {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 8rem) 0;
}

.habits-header-aandrijving-dagelijkse-gewoonten {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.habits-tag-aandrijving-dagelijkse-gewoonten {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  font-weight: 500;
}

.habits-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.habits-grid-aandrijving-dagelijkse-gewoonten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

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

.habit-card-aandrijving-dagelijkse-gewoonten:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.habit-icon-aandrijving-dagelijkse-gewoonten {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  color: #10b981;
  font-size: 24px;
}

.habit-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.habit-text-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

.implementation-section-aandrijving-dagelijkse-gewoonten {
  background: #f1f5f9;
  padding: clamp(3rem, 10vw, 8rem) 0;
}

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

.implementation-image-aandrijving-dagelijkse-gewoonten {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
  max-height: 400px;
}

.implementation-img-aandrijving-dagelijkse-gewoonten {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

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

.implementation-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.implementation-description-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.implementation-steps-aandrijving-dagelijkse-gewoonten {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.impl-step-aandrijving-dagelijkse-gewoonten {
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #10b981;
}

.impl-step-num-aandrijving-dagelijkse-gewoonten {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #10b981;
  margin-bottom: 0.5rem;
}

.impl-step-text-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

.challenges-section-aandrijving-dagelijkse-gewoonten {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 8rem) 0;
}

.challenges-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
  margin-bottom: 3rem;
}

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

.challenge-card-aandrijving-dagelijkse-gewoonten {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.challenge-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.challenge-text-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

.conclusion-section-aandrijving-dagelijkse-gewoonten {
  background: #065f46;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
}

.conclusion-section-aandrijving-dagelijkse-gewoonten::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.conclusion-content-aandrijving-dagelijkse-gewoonten {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.conclusion-text-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin: 0;
}

.conclusion-cta-aandrijving-dagelijkse-gewoonten {
  margin-top: 1rem;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.cta-text-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.6;
  margin: 0;
}

.cta-button-aandrijving-dagelijkse-gewoonten {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #10b981;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-align: center;
}

.cta-button-aandrijving-dagelijkse-gewoonten:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.related-section-aandrijving-dagelijkse-gewoonten {
  background: #f8fafc;
  padding: clamp(3rem, 10vw, 8rem) 0;
}

.related-header-aandrijving-dagelijkse-gewoonten {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.related-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
}

.related-grid-aandrijving-dagelijkse-gewoonten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-aandrijving-dagelijkse-gewoonten {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-aandrijving-dagelijkse-gewoonten:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-image-aandrijving-dagelijkse-gewoonten {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-aandrijving-dagelijkse-gewoonten {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-content-aandrijving-dagelijkse-gewoonten {
  padding: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-link-aandrijving-dagelijkse-gewoonten {
  display: inline-block;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  transition: color 0.2s ease;
}

.related-link-aandrijving-dagelijkse-gewoonten:hover {
  color: #059669;
}

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

.disclaimer-section-aandrijving-dagelijkse-gewoonten {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 8rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-box-aandrijving-dagelijkse-gewoonten {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.disclaimer-title-aandrijving-dagelijkse-gewoonten {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 1rem 0;
}

.disclaimer-text-aandrijving-dagelijkse-gewoonten {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-section-aandrijving-dagelijkse-gewoonten {
    padding: clamp(4rem, 12vw, 10rem) 0;
  }
  
  .intro-section-aandrijving-dagelijkse-gewoonten,
  .steps-section-aandrijving-dagelijkse-gewoonten,
  .principles-section-aandrijving-dagelijkse-gewoonten,
  .habits-section-aandrijving-dagelijkse-gewoonten,
  .implementation-section-aandrijving-dagelijkse-gewoonten,
  .challenges-section-aandrijving-dagelijkse-gewoonten,
  .conclusion-section-aandrijving-dagelijkse-gewoonten,
  .related-section-aandrijving-dagelijkse-gewoonten,
  .disclaimer-section-aandrijving-dagelijkse-gewoonten {
    padding: clamp(4rem, 12vw, 10rem) 0;
  }
}

@media (max-width: 320px) {
  .hero-title-aandrijving-dagelijkse-gewoonten {
    font-size: 1.75rem;
  }
  
  .step-item-aandrijving-dagelijkse-gewoonten {
    padding: 1rem;
    gap: 1rem;
  }
  
  .step-number-aandrijving-dagelijkse-gewoonten {
    font-size: 1.5rem;
    min-width: 50px;
  }
}

.main-succesvol-mindset-methodologie {
  width: 100%;
  background: #ffffff;
}

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

.breadcrumbs-succesvol-mindset-methodologie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  color: #64748b;
  margin-bottom: 2rem;
}

.breadcrumbs-succesvol-mindset-methodologie a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-succesvol-mindset-methodologie a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

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

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

.hero-section-succesvol-mindset-methodologie::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-text-block-succesvol-mindset-methodologie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-image-block-succesvol-mindset-methodologie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title-succesvol-mindset-methodologie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-succesvol-mindset-methodologie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  line-height: 1.6;
  max-width: 500px;
  font-weight: 400;
}

.hero-meta-succesvol-mindset-methodologie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

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

.meta-badge-succesvol-mindset-methodologie i {
  color: #10b981;
}

.hero-cta-group-succesvol-mindset-methodologie {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn-primary-succesvol-mindset-methodologie,
.btn-secondary-succesvol-mindset-methodologie {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary-succesvol-mindset-methodologie {
  background: #10b981;
  color: #000000;
}

.btn-primary-succesvol-mindset-methodologie:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.btn-secondary-succesvol-mindset-methodologie {
  background: transparent;
  color: #a7f3d0;
  border-color: #10b981;
}

.btn-secondary-succesvol-mindset-methodologie:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: #34d399;
}

.hero-image-succesvol-mindset-methodologie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-block-succesvol-mindset-methodologie,
  .hero-image-block-succesvol-mindset-methodologie {
    flex: 1 1 100%;
  }

  .hero-cta-group-succesvol-mindset-methodologie {
    flex-direction: column;
  }

  .hero-cta-group-succesvol-mindset-methodologie a {
    width: 100%;
  }
}

.intro-section-succesvol-mindset-methodologie {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
}

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

.intro-text-succesvol-mindset-methodologie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-image-succesvol-mindset-methodologie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-title-succesvol-mindset-methodologie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-description-succesvol-mindset-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.intro-image-img-succesvol-mindset-methodologie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-wrapper-succesvol-mindset-methodologie {
    flex-direction: column;
  }

  .intro-text-succesvol-mindset-methodologie,
  .intro-image-succesvol-mindset-methodologie {
    flex: 1 1 100%;
  }
}

.methodology-section-succesvol-mindset-methodologie {
  background: #064e3b;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.methodology-section-succesvol-mindset-methodologie::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.methodology-header-succesvol-mindset-methodologie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

.methodology-title-succesvol-mindset-methodologie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.methodology-subtitle-succesvol-mindset-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.6;
}

.methodology-steps-succesvol-mindset-methodologie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.methodology-step-succesvol-mindset-methodologie {
  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;
}

.methodology-step-number-succesvol-mindset-methodologie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #34d399;
  flex-shrink: 0;
  min-width: 60px;
}

.methodology-step-content-succesvol-mindset-methodologie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.methodology-step-title-succesvol-mindset-methodologie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.methodology-step-text-succesvol-mindset-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .methodology-step-succesvol-mindset-methodologie {
    flex-direction: column;
  }

  .methodology-step-number-succesvol-mindset-methodologie {
    min-width: auto;
  }
}

.practices-section-succesvol-mindset-methodologie {
  background: #f8fafc;
  padding: clamp(3rem, 10vw, 8rem) 0;
}

.practices-wrapper-succesvol-mindset-methodologie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.practices-text-succesvol-mindset-methodologie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practices-image-succesvol-mindset-methodologie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.practices-title-succesvol-mindset-methodologie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practices-description-succesvol-mindset-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.practices-list-succesvol-mindset-methodologie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.practices-list-item-succesvol-mindset-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.6;
  padding: 0.75rem 0 0.75rem 1.5rem;
  border-left: 3px solid #10b981;
  padding-left: 1.5rem;
}

.practices-list-bold-succesvol-mindset-methodologie {
  color: #1e293b;
  font-weight: 600;
}

.practices-image-img-succesvol-mindset-methodologie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .practices-wrapper-succesvol-mindset-methodologie {
    flex-direction: column;
  }

  .practices-text-succesvol-mindset-methodologie,
  .practices-image-succesvol-mindset-methodologie {
    flex: 1 1 100%;
  }
}

.challenges-section-succesvol-mindset-methodologie {
  background: #065f46;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.challenges-section-succesvol-mindset-methodologie::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.challenges-wrapper-succesvol-mindset-methodologie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.challenges-image-succesvol-mindset-methodologie {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenges-text-succesvol-mindset-methodologie {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.challenges-title-succesvol-mindset-methodologie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.challenges-description-succesvol-mindset-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin: 0;
}

.challenges-items-succesvol-mindset-methodologie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.challenge-item-succesvol-mindset-methodologie {
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border-left: 3px solid #34d399;
}

.challenge-item-title-succesvol-mindset-methodologie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.challenge-item-text-succesvol-mindset-methodologie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
  margin: 0;
}

.challenges-image-img-succesvol-mindset-methodologie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .challenges-wrapper-succesvol-mindset-methodologie {
    flex-direction: column-reverse;
  }

  .challenges-image-succesvol-mindset-methodologie,
  .challenges-text-succesvol-mindset-methodologie {
    flex: 1 1 100%;
  }
}

.quote-section-succesvol-mindset-methodologie {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.featured-quote-succesvol-mindset-methodologie {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  border-left: 4px solid #10b981;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.quote-text-succesvol-mindset-methodologie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #1e293b;
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

.quote-author-succesvol-mindset-methodologie {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  display: block;
  text-align: right;
}

.conclusion-section-succesvol-mindset-methodologie {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 8rem) 0;
}

.conclusion-content-succesvol-mindset-methodologie {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-succesvol-mindset-methodologie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-succesvol-mindset-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.conclusion-highlight-succesvol-mindset-methodologie {
  padding: 1.5rem;
  background: #f0fdf4;
  border-radius: 12px;
  border-left: 4px solid #10b981;
  margin-top: 1rem;
}

.conclusion-highlight-text-succesvol-mindset-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #065f46;
  line-height: 1.7;
  margin: 0;
}

.disclaimer-section-succesvol-mindset-methodologie {
  background: #f8fafc;
  padding: clamp(2rem, 8vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-succesvol-mindset-methodologie {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.disclaimer-title-succesvol-mindset-methodologie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.disclaimer-text-succesvol-mindset-methodologie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.related-section-succesvol-mindset-methodologie {
  background: #0a0f1e;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.related-section-succesvol-mindset-methodologie::before {
  content: '';
  position: absolute;
  top: -30%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.related-header-succesvol-mindset-methodologie {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.related-title-succesvol-mindset-methodologie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-succesvol-mindset-methodologie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
}

.related-cards-succesvol-mindset-methodologie {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.related-card-succesvol-mindset-methodologie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.related-card-succesvol-mindset-methodologie:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.related-card-image-succesvol-mindset-methodologie {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.related-card-img-succesvol-mindset-methodologie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-succesvol-mindset-methodologie:hover .related-card-img-succesvol-mindset-methodologie {
  transform: scale(1.05);
}

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

.related-card-title-succesvol-mindset-methodologie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-succesvol-mindset-methodologie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-succesvol-mindset-methodologie {
  display: inline-block;
  margin-top: 0.5rem;
  color: #34d399;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

.related-card-link-succesvol-mindset-methodologie:hover {
  color: #10b981;
  text-decoration: underline;
}

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

  .related-cards-succesvol-mindset-methodologie {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .hero-section-succesvol-mindset-methodologie {
    padding: clamp(4rem, 12vw, 8rem) 0;
  }

  .intro-section-succesvol-mindset-methodologie {
    padding: clamp(4rem, 12vw, 8rem) 0;
  }

  .methodology-section-succesvol-mindset-methodologie {
    padding: clamp(4rem, 12vw, 8rem) 0;
  }

  .practices-section-succesvol-mindset-methodologie {
    padding: clamp(4rem, 12vw, 8rem) 0;
  }

  .challenges-section-succesvol-mindset-methodologie {
    padding: clamp(4rem, 12vw, 8rem) 0;
  }

  .conclusion-section-succesvol-mindset-methodologie {
    padding: clamp(4rem, 12vw, 8rem) 0;
  }

  .related-section-succesvol-mindset-methodologie {
    padding: clamp(4rem, 12vw, 8rem) 0;
  }
}

@media (max-width: 320px) {
  .breadcrumbs-succesvol-mindset-methodologie {
    font-size: 0.75rem;
    gap: 0.25rem;
  }

  .hero-title-succesvol-mindset-methodologie {
    font-size: 1.5rem;
  }

  .methodology-step-succesvol-mindset-methodologie {
    padding: 1rem;
  }
}

.main-mentale-veerkracht-motivatie {
  width: 100%;
}

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

.hero-section-mentale-veerkracht-motivatie {
  background: #022c22;
  padding: clamp(2rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-mentale-veerkracht-motivatie::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  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;
}

.hero-section-mentale-veerkracht-motivatie::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.breadcrumbs-mentale-veerkracht-motivatie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  position: relative;
  z-index: 2;
}

.breadcrumbs-mentale-veerkracht-motivatie a {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-mentale-veerkracht-motivatie a:hover {
  color: #10b981;
}

.breadcrumbs-mentale-veerkracht-motivatie span {
  color: #6ee7b7;
}

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

.hero-text-block-mentale-veerkracht-motivatie {
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-image-block-mentale-veerkracht-motivatie {
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-title-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.hero-subtitle-mentale-veerkracht-motivatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.hero-image-mentale-veerkracht-motivatie {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-meta-mentale-veerkracht-motivatie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.meta-badge-mentale-veerkracht-motivatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #a7f3d0;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 500;
}

.meta-badge-mentale-veerkracht-motivatie i {
  color: #10b981;
}

.hero-cta-group-mentale-veerkracht-motivatie {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-mentale-veerkracht-motivatie {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary-mentale-veerkracht-motivatie {
  background: #10b981;
  color: #000000;
}

.btn-primary-mentale-veerkracht-motivatie:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.btn-secondary-mentale-veerkracht-motivatie {
  background: transparent;
  color: #a7f3d0;
  border-color: #10b981;
}

.btn-secondary-mentale-veerkracht-motivatie:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: #34d399;
}

.hero-stats-mentale-veerkracht-motivatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  position: relative;
  z-index: 2;
}

.hero-stat-mentale-veerkracht-motivatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-stat-number-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #34d399;
  line-height: 1;
}

.hero-stat-label-mentale-veerkracht-motivatie {
  font-size: clamp(0.8rem, 1vw, 1rem);
  color: #6ee7b7;
  font-weight: 500;
}

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

  .hero-text-block-mentale-veerkracht-motivatie {
    flex: 1 1 100%;
  }

  .hero-image-block-mentale-veerkracht-motivatie {
    flex: 1 1 100%;
  }

  .hero-stats-mentale-veerkracht-motivatie {
    gap: 1.5rem;
  }
}

.introduction-section-mentale-veerkracht-motivatie {
  background: #ffffff;
  padding: clamp(2rem, 8vw, 5rem) 0;
}

.intro-content-mentale-veerkracht-motivatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.intro-text-mentale-veerkracht-motivatie {
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.intro-image-mentale-veerkracht-motivatie {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-title-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.intro-description-mentale-veerkracht-motivatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.intro-img-mentale-veerkracht-motivatie {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-mentale-veerkracht-motivatie {
    flex-direction: column;
  }

  .intro-text-mentale-veerkracht-motivatie {
    flex: 1 1 100%;
  }

  .intro-image-mentale-veerkracht-motivatie {
    flex: 1 1 100%;
  }
}

.foundations-section-mentale-veerkracht-motivatie {
  background: #064e3b;
  padding: clamp(2rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.foundations-section-mentale-veerkracht-motivatie::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  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;
}

.foundations-content-mentale-veerkracht-motivatie {
  position: relative;
  z-index: 2;
}

.foundations-title-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.foundations-grid-mentale-veerkracht-motivatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.foundation-card-mentale-veerkracht-motivatie {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.foundation-card-mentale-veerkracht-motivatie:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
}

.foundation-number-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #34d399;
  line-height: 1;
}

.foundation-card-title-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.foundation-card-text-mentale-veerkracht-motivatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
  margin: 0;
}

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

.strategies-section-mentale-veerkracht-motivatie {
  background: #f8fafc;
  padding: clamp(2rem, 8vw, 5rem) 0;
}

.strategies-content-mentale-veerkracht-motivatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
  flex-wrap: wrap;
}

.strategies-text-mentale-veerkracht-motivatie {
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategies-image-mentale-veerkracht-motivatie {
  flex: 1 1 300px;
  min-width: 280px;
}

.strategies-title-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.strategies-description-mentale-veerkracht-motivatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.strategies-list-mentale-veerkracht-motivatie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-item-mentale-veerkracht-motivatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #10b981;
}

.strategy-item-title-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

.strategy-item-text-mentale-veerkracht-motivatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.strategies-img-mentale-veerkracht-motivatie {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .strategies-content-mentale-veerkracht-motivatie {
    flex-direction: column;
  }

  .strategies-text-mentale-veerkracht-motivatie {
    flex: 1 1 100%;
  }

  .strategies-image-mentale-veerkracht-motivatie {
    flex: 1 1 100%;
  }
}

.motivation-section-mentale-veerkracht-motivatie {
  background: #022c22;
  padding: clamp(2rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.motivation-section-mentale-veerkracht-motivatie::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  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;
}

.motivation-wrapper-mentale-veerkracht-motivatie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.motivation-image-mentale-veerkracht-motivatie {
  flex: 1 1 300px;
  min-width: 280px;
}

.motivation-text-mentale-veerkracht-motivatie {
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.motivation-title-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.motivation-description-mentale-veerkracht-motivatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin: 0;
}

.featured-quote-mentale-veerkracht-motivatie {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.08);
  margin: 1rem 0;
}

.quote-text-mentale-veerkracht-motivatie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #ffffff;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.75rem;
  margin: 0 0 0.75rem 0;
}

.quote-author-mentale-veerkracht-motivatie {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #6ee7b7;
  font-style: normal;
}

.motivation-img-mentale-veerkracht-motivatie {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .motivation-wrapper-mentale-veerkracht-motivatie {
    flex-direction: column;
  }

  .motivation-image-mentale-veerkracht-motivatie {
    flex: 1 1 100%;
  }

  .motivation-text-mentale-veerkracht-motivatie {
    flex: 1 1 100%;
  }
}

.implementation-section-mentale-veerkracht-motivatie {
  background: #ffffff;
  padding: clamp(2rem, 8vw, 5rem) 0;
}

.implementation-content-mentale-veerkracht-motivatie {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.implementation-title-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  margin-bottom: 1rem;
}

.implementation-steps-mentale-veerkracht-motivatie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-step-mentale-veerkracht-motivatie {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.implementation-step-number-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.implementation-step-content-mentale-veerkracht-motivatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.implementation-step-title-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
}

.implementation-step-text-mentale-veerkracht-motivatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

  .implementation-step-number-mentale-veerkracht-motivatie {
    min-width: auto;
  }
}

.conclusion-section-mentale-veerkracht-motivatie {
  background: #064e3b;
  padding: clamp(2rem, 8vw, 5rem) 0;
}

.conclusion-content-mentale-veerkracht-motivatie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.conclusion-text-mentale-veerkracht-motivatie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin: 0;
}

.conclusion-cta-mentale-veerkracht-motivatie {
  margin-top: 1rem;
}

.conclusion-cta-btn-mentale-veerkracht-motivatie {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #10b981;
  color: #000000;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

.conclusion-cta-btn-mentale-veerkracht-motivatie:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.disclaimer-section-mentale-veerkracht-motivatie {
  background: #f1f5f9;
  padding: clamp(2rem, 8vw, 4rem) 0;
}

.disclaimer-content-mentale-veerkracht-motivatie {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  margin: 0 0 1rem 0;
}

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

.related-section-mentale-veerkracht-motivatie {
  background: #022c22;
  padding: clamp(2rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.related-section-mentale-veerkracht-motivatie::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.related-content-mentale-veerkracht-motivatie {
  position: relative;
  z-index: 2;
}

.related-title-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-grid-mentale-veerkracht-motivatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

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

.related-card-mentale-veerkracht-motivatie:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
}

.related-card-image-mentale-veerkracht-motivatie {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}

.related-img-mentale-veerkracht-motivatie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-mentale-veerkracht-motivatie {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.related-card-description-mentale-veerkracht-motivatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-mentale-veerkracht-motivatie {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #10b981;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  transition: all 0.2s ease;
  text-align: center;
  width: fit-content;
}

.related-card-link-mentale-veerkracht-motivatie:hover {
  background: #059669;
  transform: translateY(-2px);
}

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

@media (min-width: 768px) {
  .hero-section-mentale-veerkracht-motivatie {
    padding: clamp(3rem, 10vw, 6rem) 0;
  }

  .introduction-section-mentale-veerkracht-motivatie {
    padding: clamp(3rem, 10vw, 6rem) 0;
  }

  .foundations-section-mentale-veerkracht-motivatie {
    padding: clamp(3rem, 10vw, 6rem) 0;
  }

  .strategies-section-mentale-veerkracht-motivatie {
    padding: clamp(3rem, 10vw, 6rem) 0;
  }

  .motivation-section-mentale-veerkracht-motivatie {
    padding: clamp(3rem, 10vw, 6rem) 0;
  }

  .implementation-section-mentale-veerkracht-motivatie {
    padding: clamp(3rem, 10vw, 6rem) 0;
  }

  .conclusion-section-mentale-veerkracht-motivatie {
    padding: clamp(3rem, 10vw, 6rem) 0;
  }

  .disclaimer-section-mentale-veerkracht-motivatie {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .related-section-mentale-veerkracht-motivatie {
    padding: clamp(3rem, 10vw, 6rem) 0;
  }
}

@media (max-width: 600px) {
  .hero-cta-group-mentale-veerkracht-motivatie {
    flex-direction: column;
  }

  .hero-cta-group-mentale-veerkracht-motivatie .btn-mentale-veerkracht-motivatie {
    width: 100%;
  }

  .implementation-step-mentale-veerkracht-motivatie {
    gap: 1rem;
  }
}

.main-gemeenschapssteun-motivatie-groepen {
  width: 100%;
  background: #ffffff;
}

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

.hero-section-gemeenschapssteun-motivatie-groepen {
  background: #022c22;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-gemeenschapssteun-motivatie-groepen::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  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;
}

.hero-section-gemeenschapssteun-motivatie-groepen::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content-gemeenschapssteun-motivatie-groepen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2rem);
  position: relative;
  z-index: 2;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.breadcrumbs-gemeenschapssteun-motivatie-groepen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs-gemeenschapssteun-motivatie-groepen a {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-gemeenschapssteun-motivatie-groepen a:hover {
  color: #34d399;
  text-decoration: underline;
}

.breadcrumbs-gemeenschapssteun-motivatie-groepen span {
  color: rgba(255, 255, 255, 0.5);
}

.hero-title-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 700px;
}

.hero-subtitle-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  line-height: 1.6;
  max-width: 600px;
  font-weight: 400;
  margin: 0;
}

.hero-meta-gemeenschapssteun-motivatie-groepen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.meta-badge-gemeenschapssteun-motivatie-groepen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-gemeenschapssteun-motivatie-groepen i {
  font-size: 14px;
}

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

.btn-primary-gemeenschapssteun-motivatie-groepen,
.btn-secondary-gemeenschapssteun-motivatie-groepen {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary-gemeenschapssteun-motivatie-groepen {
  background: #10b981;
  color: #000000;
}

.btn-primary-gemeenschapssteun-motivatie-groepen:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.btn-secondary-gemeenschapssteun-motivatie-groepen {
  background: transparent;
  color: #a7f3d0;
  border-color: #10b981;
}

.btn-secondary-gemeenschapssteun-motivatie-groepen:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: #34d399;
}

.hero-image-wrapper-gemeenschapssteun-motivatie-groepen {
  position: relative;
  z-index: 2;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.hero-image-gemeenschapssteun-motivatie-groepen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.intro-section-gemeenschapssteun-motivatie-groepen {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
}

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

.intro-text-gemeenschapssteun-motivatie-groepen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-description-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.intro-image-gemeenschapssteun-motivatie-groepen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-tag-gemeenschapssteun-motivatie-groepen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-gemeenschapssteun-motivatie-groepen {
    flex-direction: column;
  }

  .intro-text-gemeenschapssteun-motivatie-groepen,
  .intro-image-gemeenschapssteun-motivatie-groepen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-1-gemeenschapssteun-motivatie-groepen {
  background: #f8fafc;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
}

.content-wrapper-1-gemeenschapssteun-motivatie-groepen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-1-gemeenschapssteun-motivatie-groepen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-1-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-description-1-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.content-list-1-gemeenschapssteun-motivatie-groepen {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.list-item-1-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.list-item-1-gemeenschapssteun-motivatie-groepen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.content-image-1-gemeenschapssteun-motivatie-groepen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-tag-1-gemeenschapssteun-motivatie-groepen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-1-gemeenschapssteun-motivatie-groepen {
    flex-direction: column;
  }

  .content-text-1-gemeenschapssteun-motivatie-groepen,
  .content-image-1-gemeenschapssteun-motivatie-groepen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-2-gemeenschapssteun-motivatie-groepen {
  background: #064e3b;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.content-section-2-gemeenschapssteun-motivatie-groepen::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.content-wrapper-2-gemeenschapssteun-motivatie-groepen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.content-image-2-gemeenschapssteun-motivatie-groepen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-tag-2-gemeenschapssteun-motivatie-groepen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-text-2-gemeenschapssteun-motivatie-groepen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-2-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.content-description-2-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  line-height: 1.7;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
}

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

.step-item-gemeenschapssteun-motivatie-groepen {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.step-number-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
  color: #34d399;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-gemeenschapssteun-motivatie-groepen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.step-title-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.step-description-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .content-wrapper-2-gemeenschapssteun-motivatie-groepen {
    flex-direction: column;
  }

  .content-image-2-gemeenschapssteun-motivatie-groepen,
  .content-text-2-gemeenschapssteun-motivatie-groepen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-gemeenschapssteun-motivatie-groepen {
  background: #f1f5f9;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
}

.benefits-header-gemeenschapssteun-motivatie-groepen {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 5vw, 4rem) auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.benefits-title-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.benefits-subtitle-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

.benefit-card-gemeenschapssteun-motivatie-groepen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.benefit-card-gemeenschapssteun-motivatie-groepen:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #10b981;
}

.benefit-icon-gemeenschapssteun-motivatie-groepen {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: #10b981;
  font-size: 24px;
}

.benefit-card-title-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.benefit-card-text-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

.quote-section-gemeenschapssteun-motivatie-groepen {
  background: #065f46;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.quote-section-gemeenschapssteun-motivatie-groepen::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.featured-quote-gemeenschapssteun-motivatie-groepen {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 8px;
  position: relative;
  z-index: 2;
}

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

.quote-author-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a7f3d0;
  font-style: normal;
  display: block;
}

.practical-section-gemeenschapssteun-motivatie-groepen {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
}

.practical-wrapper-gemeenschapssteun-motivatie-groepen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.practical-text-gemeenschapssteun-motivatie-groepen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practical-description-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
}

.practical-list-gemeenschapssteun-motivatie-groepen {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.practical-item-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.practical-item-gemeenschapssteun-motivatie-groepen::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.practical-image-gemeenschapssteun-motivatie-groepen {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-tag-gemeenschapssteun-motivatie-groepen {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .practical-wrapper-gemeenschapssteun-motivatie-groepen {
    flex-direction: column;
  }

  .practical-text-gemeenschapssteun-motivatie-groepen,
  .practical-image-gemeenschapssteun-motivatie-groepen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-gemeenschapssteun-motivatie-groepen {
  background: #f8fafc;
  padding: clamp(3rem, 10vw, 8rem) 0;
  position: relative;
}

.conclusion-content-gemeenschapssteun-motivatie-groepen {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-title-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
  margin: 0;
}

.conclusion-text-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.cta-box-gemeenschapssteun-motivatie-groepen {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 16px;
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.cta-title-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 clamp(0.5rem, 1vw, 1rem) 0;
}

.cta-text-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.cta-button-gemeenschapssteun-motivatie-groepen {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #10b981;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  text-align: center;
}

.cta-button-gemeenschapssteun-motivatie-groepen:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.related-section-gemeenschapssteun-motivatie-groepen {
  background: #ffffff;
  padding: clamp(3rem, 10vw, 8rem) 0;
  border-top: 1px solid #e2e8f0;
}

.related-title-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
  margin: 0 0 clamp(2rem, 4vw, 3rem) 0;
}

.related-grid-gemeenschapssteun-motivatie-groepen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-gemeenschapssteun-motivatie-groepen {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.related-card-gemeenschapssteun-motivatie-groepen:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: #10b981;
}

.related-image-gemeenschapssteun-motivatie-groepen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-image-gemeenschapssteun-motivatie-groepen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.related-card-description-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.95rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

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

.disclaimer-section-gemeenschapssteun-motivatie-groepen {
  background: #f1f5f9;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-gemeenschapssteun-motivatie-groepen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #10b981;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-gemeenschapssteun-motivatie-groepen {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.disclaimer-text-gemeenschapssteun-motivatie-groepen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .main-gemeenschapssteun-motivatie-groepen .container {
    padding-left: clamp(1rem, 3vw, 1.5rem);
    padding-right: clamp(1rem, 3vw, 1.5rem);
  }

  .hero-cta-gemeenschapssteun-motivatie-groepen {
    flex-direction: column;
  }

  .btn-primary-gemeenschapssteun-motivatie-groepen,
  .btn-secondary-gemeenschapssteun-motivatie-groepen {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-gemeenschapssteun-motivatie-groepen {
    font-size: 0.7rem;
  }

  .hero-meta-gemeenschapssteun-motivatie-groepen {
    flex-direction: column;
    gap: 0.5rem;
  }

  .meta-badge-gemeenschapssteun-motivatie-groepen {
    width: 100%;
    justify-content: flex-start;
  }
}

.motivation-academy-about {
    font-family: var(--font-primary);
    color: var(--color-text-dark-primary);
  }

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

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

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

  .hero-momentum-title-about {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
  }

  .hero-momentum-subtitle-about {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    color: var(--color-text-dark-secondary);
    max-width: 700px;
    line-height: 1.6;
  }

  .hero-momentum-visual-about {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
  }

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

  .momentum-stat-item-about {
    flex: 0 1 auto;
    text-align: center;
  }

  .momentum-stat-number-about {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    line-height: 1;
  }

  .momentum-stat-label-about {
    font-size: 0.875rem;
    color: var(--color-text-dark-secondary);
    margin-top: 0.5rem;
  }

  .journey-foundation-about {
    background: var(--color-bg-dark-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

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

  .journey-foundation-title-about {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
  }

  .journey-foundation-text-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    color: var(--color-text-dark-secondary);
  }

  .journey-foundation-image-about {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
  }

  .principles-framework-about {
    background: var(--color-bg-dark-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

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

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

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

  .principles-subtitle-about {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--color-text-dark-secondary);
    max-width: 650px;
    margin: 0 auto;
  }

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

  .principles-card-about {
    flex: 1 1 280px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: var(--color-bg-dark-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
  }

  .principles-card-icon-about {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
  }

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

  .principles-card-text-about {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-dark-secondary);
  }

  .approach-methodology-about {
    background: var(--color-bg-dark-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

  .approach-methodology-content-about {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }

  .approach-methodology-heading-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
  }

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

  .approach-step-about {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: clamp(1.25rem, 2vw, 1.75rem);
    background: var(--color-bg-dark-primary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
  }

  .approach-step-number-about {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-primary);
    flex-shrink: 0;
    min-width: 50px;
    line-height: 1;
  }

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

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

  .approach-step-text-about {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-dark-secondary);
  }

  .approach-methodology-image-about {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
  }

  .vision-impact-about {
    background: var(--color-bg-dark-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

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

  .vision-impact-intro-about {
    max-width: 800px;
  }

  .vision-impact-title-about {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
  }

  .vision-impact-text-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    color: var(--color-text-dark-secondary);
    margin-bottom: 1.5rem;
  }

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

  .vision-impact-quote-text-about {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    font-style: italic;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .vision-impact-quote-author-about {
    font-size: 0.875rem;
    color: var(--color-text-dark-secondary);
    font-style: normal;
  }

  .vision-impact-image-about {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: var(--radius-lg);
    margin-top: 1.5rem;
  }

  .disclaimer-section-about {
    background: var(--color-bg-dark-secondary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    position: relative;
    overflow: hidden;
  }

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

  .disclaimer-title-about {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .disclaimer-title-icon-about {
    color: var(--color-primary);
    font-size: 1.25rem;
  }

  .disclaimer-text-about {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-dark-secondary);
  }

  @media (max-width: 768px) {
    .hero-momentum-title-about {
      margin: 0 -1rem;
    }

    .momentum-stats-about {
      margin-top: clamp(1.5rem, 3vw, 2rem);
    }

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

    .approach-step-about {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  }

  @media (min-width: 768px) {
    .hero-momentum-content-about {
      gap: clamp(2rem, 5vw, 3.5rem);
    }

    .journey-foundation-content-about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: clamp(2rem, 5vw, 3.5rem);
    }

    .journey-foundation-image-about {
      grid-column: 2;
      grid-row: 1;
      margin-top: 0;
    }

    .approach-methodology-content-about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: start;
      gap: clamp(2rem, 5vw, 3.5rem);
    }

    .approach-methodology-image-about {
      grid-column: 2;
      grid-row: 1 / 3;
      margin-top: 0;
    }
  }

  @media (min-width: 1024px) {
    .momentum-stats-about {
      gap: 4rem;
    }

    .principles-cards-about {
      gap: 2rem;
    }

    .approach-step-about {
      flex-direction: row;
    }
  }

.growth-portal {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-light-primary);
}

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

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

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

.privacy-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-hero-date {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  font-weight: 500;
}

.privacy-hero-intro {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-dark-secondary);
  max-width: 800px;
}

.privacy-content {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.privacy-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
  max-width: 900px;
}

.privacy-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.privacy-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.privacy-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.5rem;
}

.privacy-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-section strong {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

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

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light-primary);
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-text-light-muted);
}

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

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

.contact-detail-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .privacy-hero {
    padding: 5rem 0;
  }

  .privacy-content {
    padding: 5rem 0;
  }

  .contact-section {
    padding: 5rem 0;
  }

  .privacy-content-wrapper {
    gap: 3rem;
  }
}

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

  .privacy-content {
    padding: 6rem 0;
  }

  .contact-section {
    padding: 6rem 0;
  }

  .privacy-content-wrapper {
    gap: 4rem;
  }
}

.thank-you-page {
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon {
  width: clamp(60px, 12vw, 100px);
  height: clamp(60px, 12vw, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  animation: scaleIn 0.6s ease-out;
}

.thank-icon i {
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--color-primary);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    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-dark-primary);
  line-height: 1.2;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-lead {
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  color: var(--color-primary-light);
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.thank-description {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
  max-width: 600px;
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.highlight-item i {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-primary);
}

.highlight-item p {
  font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.9375rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.5;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-block;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  border-color: var(--color-primary);
}

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

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

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: 100vh;
  }

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

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .thank-icon:hover {
    transform: scale(1.1);
  }

  .thank-icon {
    transition: transform 0.3s ease;
  }
}

@media (max-width: 640px) {
  .thank-highlights {
    grid-template-columns: 1fr;
  }
}

.main.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(13, 148, 136, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.error-visual {
  position: relative;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
}

.error-code {
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  font-family: var(--font-heading);
  animation: floatCode 4s ease-in-out infinite;
}

@keyframes floatCode {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-icon {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-primary);
  animation: spinCompass 6s linear infinite;
}

@keyframes spinCompass {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error-title {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.error-description {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  max-width: 600px;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem) auto;
  line-height: 1.6;
  font-weight: 400;
}

.error-subtitle {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1.0625rem);
  max-width: 550px;
  margin: 0 auto clamp(2rem, 5vw, 3rem) auto;
  line-height: 1.6;
  font-weight: 500;
}

.btn-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  font-size: clamp(0.9375rem, 1.5vw + 0.25rem, 1.125rem);
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--color-primary);
  color: var(--color-bg-dark-primary);
  border: 2px solid var(--color-primary);
}

.btn-large:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-large i {
  font-size: 1.125em;
  transition: transform 0.3s ease;
}

.btn-large:hover i {
  transform: translateX(-4px);
}

.error-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(120px, 25vw, 180px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  width: 100%;
  max-width: 600px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.feature-item i {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-primary-light);
  transition: transform 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.15);
}

.feature-item span {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.9375rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .error-visual {
    margin-bottom: 3rem;
  }

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

  .btn-large {
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .error-section {
    min-height: 100vh;
  }

  .error-content {
    padding: 6rem 0;
  }

  .error-visual {
    margin-bottom: 4rem;
  }

  .error-code {
    animation: floatCode 5s ease-in-out infinite;
  }

  .error-icon {
    animation: spinCompass 8s linear infinite;
  }

  .btn-large:hover {
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.4);
  }

  .feature-item {
    padding: 1.5rem;
  }
}

@media (min-width: 1440px) {
  .error-features {
    gap: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-icon,
  .feature-item,
  .btn-large {
    animation: none;
    transition: none;
  }

  .btn-large:hover i {
    transform: none;
  }

  .feature-item:hover i {
    transform: none;
  }

  .feature-item:hover {
    transform: none;
  }

  .btn-large:hover {
    transform: none;
  }
}
label{
  color: #000 !important;
}
