
    @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-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  
  
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #10b981;
  --color-secondary: #0891b2;
  --color-secondary-light: #06b6d4;
  
  
  --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.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-light {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-bg-tertiary);
}

.btn-light:hover {
  background: var(--color-bg-tertiary);
  box-shadow: var(--shadow-md);
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.card-title {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.card-description {
  color: var(--color-text-secondary);
  flex-grow: 1;
}

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

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

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

input, textarea, select {
  font-family: var(--font-primary);
  padding: clamp(0.625rem, 1vw, 0.875rem) var(--space-md);
  border: 1px solid var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
  font-weight: 600;
}

.badge-secondary {
  background: rgba(8, 145, 178, 0.1);
  color: var(--color-secondary);
}

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

.feature-item {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-item-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.feature-item-content {
  flex: 1;
}

.feature-item-title {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

.stats-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
}

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

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

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

.stat-number {
  color: var(--color-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

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

.testimonial-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
}

.testimonial-text {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-style: italic;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

.testimonial-author {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
}

.decoration-blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.05;
  pointer-events: none;
}

.decoration-line {
  position: absolute;
  height: 2px;
  background: var(--color-primary);
  opacity: 0.2;
}

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

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

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

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

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

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

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

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

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

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

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

li {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

code {
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
}

pre {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin: var(--space-md) 0;
}

pre code {
  background: none;
  color: inherit;
  padding: 0;
}

.divider {
  height: 1px;
  background: var(--color-bg-tertiary);
  margin: var(--space-lg) 0;
}

@media (min-width: 320px) and (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  p {
    font-size: 0.9375rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.25rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  p {
    font-size: 1.0625rem;
  }
}
:root {
    --color-bg-primary: #f9fafb;
    --color-bg-secondary: #ffffff;
    --color-bg-tertiary: #f3f4f6;
    --color-bg-card: #ffffff;
    --color-text-primary: #111827;
    --color-text-secondary: #4b5563;
    --color-text-muted: #9ca3af;
    --color-primary: #059669;
    --color-primary-hover: #047857;
    --color-primary-light: #10b981;
    --color-secondary: #0891b2;
    --color-secondary-light: #06b6d4;
    --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.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --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;
  }

  .header-discipline-forge {
    background: var(--color-bg-secondary);
    border-bottom: 1px solid #e5e7eb;
    position: static;
    width: 100%;
    z-index: 100;
  }

  .header-discipline-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(60px, 12vw, 80px);
    gap: var(--space-md);
  }

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

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

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

  .header-discipline-forge-desktop-nav {
    display: none;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    flex: 1;
    justify-content: center;
  }

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

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

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

  .header-discipline-forge-nav-link:hover::after {
    width: 100%;
  }

  .header-discipline-forge-cta-button {
    display: none;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1.5vw, 0.95rem);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 300ms ease;
    flex-shrink: 0;
  }

  .header-discipline-forge-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .header-discipline-forge-cta-button:active {
    transform: translateY(0);
  }

  .header-discipline-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-primary);
    font-size: 1.5rem;
    transition: color 300ms ease;
    flex-shrink: 0;
  }

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

  .header-discipline-forge-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-secondary);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 300ms ease;
    overflow-y: auto;
    padding-top: clamp(60px, 12vw, 80px);
  }

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

  .header-discipline-forge-mobile-header {
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #e5e7eb;
  }

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

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

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

  .header-discipline-forge-mobile-link {
    padding: 1rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 300ms ease;
    border-left: 3px solid transparent;
  }

  .header-discipline-forge-mobile-link:hover {
    background: var(--color-bg-primary);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    padding-left: 1.75rem;
  }

  .header-discipline-forge-mobile-cta {
    display: block;
    margin: 2rem 1.5rem 1rem;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    text-align: center;
    transition: all 300ms ease;
  }

  .header-discipline-forge-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

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

    .header-discipline-forge-cta-button {
      display: inline-flex;
    }

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

    .header-discipline-forge-mobile-menu {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .header-discipline-forge-mobile-menu {
      width: 100%;
      right: 0;
    }
  }

    .discipline-hub {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

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

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

.hero-shape-accent-index {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 280px;
  height: 320px;
  background: rgba(5, 150, 105, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-element-index {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

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

.hero-corner-blur-index {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 300px;
  height: 300px;
  background: rgba(10, 185, 100, 0.08);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-text-block-index {
  max-width: 700px;
}

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

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

.hero-cta-group-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(5, 150, 105, 0.2);
}

.hero-stat-item-index {
  flex: 1 1 auto;
  min-width: 150px;
}

.hero-stat-number-index {
  display: block;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #059669;
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

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

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

.foundations-mesh-gradient-index {
  position: absolute;
  top: 10%;
  right: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(ellipse at 30% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.foundations-accent-glow-index {
  position: absolute;
  bottom: 15%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.foundations-shape-left-index {
  position: absolute;
  top: 25%;
  left: 2%;
  width: 250px;
  height: 280px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

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

.foundations-text-block-index {
  flex: 1 1 400px;
  min-width: 300px;
}

.foundations-header-index {
  margin-bottom: var(--space-xl);
}

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

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

.foundations-subtitle-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.foundations-features-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.foundations-feature-index {
  display: flex;
  gap: var(--space-md);
}

.foundations-feature-icon-index {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 10px;
  color: #059669;
  font-size: 1.25rem;
}

.foundations-feature-content-index {
  flex: 1;
}

.foundations-feature-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: var(--space-sm);
}

.foundations-feature-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.foundations-image-block-index {
  flex: 1 1 400px;
  min-width: 300px;
}

.foundations-image-index {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

.learning-path-shape-accent-index {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 300px;
  height: 350px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.learning-path-line-element-index {
  position: absolute;
  top: 30%;
  left: 0;
  width: 250px;
  height: 3px;
  background: linear-gradient(90deg, rgba(5, 150, 105, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.learning-path-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.learning-path-subtitle-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.learning-path-steps-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.learning-path-step-index {
  display: flex;
  gap: var(--space-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f3f4f6;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.learning-path-step-number-index {
  flex-shrink: 0;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  font-family: var(--font-heading);
  line-height: 1;
  min-width: 60px;
}

.learning-path-step-content-index {
  flex: 1;
}

.learning-path-step-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: var(--space-sm);
}

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

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

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

.featured-content-shape-2-index {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 250px;
  height: 280px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 70% 30% 40% 60% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.featured-content-glow-index {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.featured-content-header-index {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

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

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

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

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

.featured-content-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-2xl);
}

.featured-content-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-content-card-index:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.featured-content-card-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

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

.featured-content-card-link-index {
  color: #059669;
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: color 300ms ease;
}

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

.featured-content-cta-index {
  text-align: center;
}

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

.principles-gradient-field-index {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at 50% 30%, rgba(5, 150, 105, 0.1) 0%, transparent 60%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.principles-intro-index {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.principles-header-index {
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

.principles-card-index {
  flex: 1 1 280px;
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid rgba(5, 150, 105, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.principles-card-index:hover {
  border-color: rgba(5, 150, 105, 0.3);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.08);
}

.principles-card-icon-index {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 10px;
  color: #059669;
  font-size: 1.25rem;
}

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

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

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

.transformation-glow-primary-index {
  position: absolute;
  top: 10%;
  left: -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.11) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.transformation-text-block-index {
  flex: 1 1 400px;
  min-width: 300px;
}

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

.transformation-description-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.transformation-quote-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #059669;
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
  padding: var(--space-md) 0;
}

.transformation-image-block-index {
  flex: 1 1 400px;
  min-width: 300px;
}

.transformation-image-index {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.engagement-mesh-index {
  position: absolute;
  top: -5%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(ellipse at 30% 50%, rgba(5, 150, 105, 0.1) 0%, transparent 60%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

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

.engagement-content-index {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.engagement-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.engagement-subtitle-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  line-height: 1.6;
}

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

.engagement-feature-index {
  flex: 1 1 250px;
  text-align: center;
}

.engagement-feature-index i {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #059669;
  margin-bottom: var(--space-md);
  display: block;
}

.engagement-feature-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: var(--space-sm);
}

.engagement-feature-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

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

.contact-shape-index {
  position: absolute;
  bottom: 5%;
  left: -8%;
  width: 280px;
  height: 320px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

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

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

.contact-form-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.contact-form-subtitle-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

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

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

.contact-label-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 500;
  color: #e2e8f0;
}

.contact-input-index,
.contact-textarea-index {
  padding: clamp(0.75rem, 1.5vw, 1rem) var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 300ms ease;
}

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

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

.contact-submit-btn-index {
  padding: clamp(0.75rem, 1.5vw, 1rem) var(--space-lg);
  background: #059669;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
}

.contact-submit-btn-index:hover {
  background: #047857;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

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

.contact-info-title-index {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.contact-faq-item-index {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-faq-question-index {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: var(--space-sm);
}

.contact-faq-answer-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

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

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

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
  cursor: pointer;
  transition: all 300ms ease;
}

.cookie-btn-accept-index {
  background: #059669;
  color: #000000;
  box-shadow: var(--shadow-md);
}

.cookie-btn-accept-index:hover {
  background: #047857;
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

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

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

@media (min-width: 768px) {
  .hero-section-index {
    padding: 6rem 0;
  }
  
  .foundations-section-index,
  .learning-path-section-index,
  .featured-content-section-index,
  .principles-section-index,
  .transformation-section-index,
  .engagement-section-index,
  .contact-section-index {
    padding: 6rem 0;
  }
  
  .hero-stats-index {
    gap: 3rem;
  }
  
  .featured-content-cards-index {
    gap: 2rem;
  }
  
  .contact-content-index {
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-index {
    padding: 8rem 0;
  }
  
  .foundations-section-index,
  .learning-path-section-index,
  .featured-content-section-index,
  .principles-section-index,
  .transformation-section-index,
  .engagement-section-index,
  .contact-section-index {
    padding: 8rem 0;
  }
  
  .featured-content-card-index {
    flex: 1 1 350px;
    max-width: 100%;
  }
  
  .contact-content-index {
    gap: 4rem;
  }
}

@media (max-width: 767px) {
  .featured-content-cards-index {
    flex-direction: column;
  }
  
  .featured-content-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .learning-path-step-index {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .engagement-features-index {
    flex-direction: column;
  }
  
  .contact-content-index {
    flex-direction: column;
  }
  
  .contact-form-wrapper-index,
  .contact-info-wrapper-index {
    flex: 1 1 100%;
  }
}

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

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

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

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

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

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

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

.footer-nav-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

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

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

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

.footer-contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

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

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

.footer-contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

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

.footer-legal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

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

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

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

.footer-copyright {
  flex: 1 1 100%;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--color-bg-tertiary);
  text-align: center;
}

.footer-copyright-text {
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .footer-section {
    flex: 1 1 200px;
  }

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

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

@media (max-width: 767px) {
  .footer-content {
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

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

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

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

  .footer-nav-links,
  .footer-legal-links {
    gap: 0.625rem;
  }
}

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

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

.category-page-zelfdiscipline {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

.hero-content-zelfdiscipline {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

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

.hero-title-zelfdiscipline {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero-subtitle-zelfdiscipline {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #64748b;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-stats-zelfdiscipline {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--space-xl);
}

.stat-item-zelfdiscipline {
  flex: 0 1 auto;
}

.stat-number-zelfdiscipline {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

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

.hero-buttons-zelfdiscipline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

.hero-decoration-zelfdiscipline {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.posts-title-zelfdiscipline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-md);
}

.posts-subtitle-zelfdiscipline {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.posts-grid-zelfdiscipline {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  position: relative;
  z-index: 10;
  margin-bottom: 2rem;
}

.card-zelfdiscipline {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.card-zelfdiscipline:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-image-zelfdiscipline {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: -1rem -1rem 0 -1rem;
}

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

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

.card-meta-zelfdiscipline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.meta-badge-zelfdiscipline {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(5, 150, 105, 0.08);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-zelfdiscipline i {
  font-size: 0.75rem;
}

.card-link-zelfdiscipline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  padding-top: 1rem;
}

.card-link-zelfdiscipline:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.posts-decoration-1-zelfdiscipline {
  position: absolute;
  top: 20%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-decoration-2-zelfdiscipline {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.learning-path-title-zelfdiscipline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: var(--space-md);
}

.learning-path-subtitle-zelfdiscipline {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.step-item-zelfdiscipline {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.step-item-zelfdiscipline:hover {
  background: rgba(5, 150, 105, 0.05);
}

.step-number-zelfdiscipline {
  flex-shrink: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: 70px;
  text-align: center;
}

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

.step-title-zelfdiscipline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #111827;
}

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

.path-decoration-zelfdiscipline {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

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

.principles-header-zelfdiscipline {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.principles-title-zelfdiscipline {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
}

.featured-quote-zelfdiscipline {
  background: #ffffff;
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: clamp(1.5rem, 4vw, 3rem) 0;
  position: relative;
  z-index: 10;
}

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

.quote-cite-zelfdiscipline {
  display: block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.principles-content-zelfdiscipline {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.principles-description-zelfdiscipline {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.principles-subheading-zelfdiscipline {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.principles-items-zelfdiscipline {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.principle-item-zelfdiscipline {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

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

.principle-icon-zelfdiscipline {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
}

.principle-name-zelfdiscipline {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #111827;
}

.principle-details-zelfdiscipline {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.principles-decoration-1-zelfdiscipline {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.principles-decoration-2-zelfdiscipline {
  position: absolute;
  bottom: -80px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

  .step-item-zelfdiscipline {
    gap: 1rem;
    padding: 1rem;
  }

  .principle-item-zelfdiscipline {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-decoration-zelfdiscipline,
  .hero-glow-zelfdiscipline,
  .posts-decoration-1-zelfdiscipline,
  .posts-decoration-2-zelfdiscipline,
  .path-decoration-zelfdiscipline,
  .principles-decoration-1-zelfdiscipline,
  .principles-decoration-2-zelfdiscipline {
    display: none;
  }
}

@media (min-width: 768px) {
  .card-zelfdiscipline {
    flex: 1 1 350px;
  }

  .hero-buttons-zelfdiscipline {
    gap: 1rem;
  }

  .step-item-zelfdiscipline {
    padding: 2rem;
    gap: 2rem;
  }

  .principle-item-zelfdiscipline {
    flex: 1 1 280px;
  }
}

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

  .card-zelfdiscipline {
    flex: 1 1 300px;
    max-width: 420px;
  }

  .posts-grid-zelfdiscipline {
    gap: 2rem;
  }

  .principle-item-zelfdiscipline {
    flex: 1 1 300px;
    max-width: 350px;
  }
}

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

.main-atomaire-gewoonten-klein-beginnen {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.hero-text-block-atomaire-gewoonten-klein-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-atomaire-gewoonten-klein-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.hero-subtitle-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-meta-atomaire-gewoonten-klein-beginnen {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.meta-badge-atomaire-gewoonten-klein-beginnen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
  font-weight: 600;
}

.hero-image-atomaire-gewoonten-klein-beginnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.breadcrumbs-atomaire-gewoonten-klein-beginnen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
}

.breadcrumbs-atomaire-gewoonten-klein-beginnen a {
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-atomaire-gewoonten-klein-beginnen a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-atomaire-gewoonten-klein-beginnen span {
  color: #9ca3af;
}

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

.introduction-section-atomaire-gewoonten-klein-beginnen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.introduction-wrapper-atomaire-gewoonten-klein-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-atomaire-gewoonten-klein-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-atomaire-gewoonten-klein-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-lead-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  font-weight: 500;
}

.introduction-body-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.introduction-image-img-atomaire-gewoonten-klein-beginnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .introduction-wrapper-atomaire-gewoonten-klein-beginnen {
    flex-direction: column;
  }
  
  .introduction-text-atomaire-gewoonten-klein-beginnen,
  .introduction-image-atomaire-gewoonten-klein-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principles-section-atomaire-gewoonten-klein-beginnen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-header-atomaire-gewoonten-klein-beginnen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.principles-title-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  margin-bottom: var(--space-md);
}

.principles-subtitle-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-atomaire-gewoonten-klein-beginnen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.principles-step-atomaire-gewoonten-klein-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border-left: 4px solid #059669;
}

.principles-step-number-atomaire-gewoonten-klein-beginnen {
  color: #059669;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principles-step-content-atomaire-gewoonten-klein-beginnen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.principles-step-title-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.principles-step-text-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.implementation-section-atomaire-gewoonten-klein-beginnen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-text-atomaire-gewoonten-klein-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-atomaire-gewoonten-klein-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  margin-bottom: var(--space-md);
}

.implementation-intro-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.implementation-list-atomaire-gewoonten-klein-beginnen {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.implementation-list-item-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.implementation-list-item-atomaire-gewoonten-klein-beginnen::before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
  font-size: 1.125rem;
}

.list-label-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  font-weight: 600;
}

.implementation-image-img-atomaire-gewoonten-klein-beginnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

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

.psychology-section-atomaire-gewoonten-klein-beginnen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.psychology-wrapper-atomaire-gewoonten-klein-beginnen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.psychology-image-atomaire-gewoonten-klein-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.psychology-text-atomaire-gewoonten-klein-beginnen {
  flex: 1 1 50%;
  max-width: 50%;
}

.psychology-image-img-atomaire-gewoonten-klein-beginnen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.psychology-title-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  margin-bottom: var(--space-md);
}

.psychology-body-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.psychology-quote-atomaire-gewoonten-klein-beginnen {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
}

.psychology-quote-text-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.psychology-quote-cite-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
  font-style: normal;
}

@media (max-width: 768px) {
  .psychology-wrapper-atomaire-gewoonten-klein-beginnen {
    flex-direction: column;
  }
  
  .psychology-image-atomaire-gewoonten-klein-beginnen,
  .psychology-text-atomaire-gewoonten-klein-beginnen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.obstacles-section-atomaire-gewoonten-klein-beginnen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.obstacles-header-atomaire-gewoonten-klein-beginnen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.obstacles-title-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  margin-bottom: var(--space-md);
}

.obstacles-subtitle-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

.obstacles-cards-atomaire-gewoonten-klein-beginnen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.obstacles-card-atomaire-gewoonten-klein-beginnen {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.obstacles-card-atomaire-gewoonten-klein-beginnen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.obstacles-card-icon-atomaire-gewoonten-klein-beginnen {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
}

.obstacles-card-title-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
}

.obstacles-card-text-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .obstacles-card-atomaire-gewoonten-klein-beginnen {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-atomaire-gewoonten-klein-beginnen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-atomaire-gewoonten-klein-beginnen {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  margin-bottom: var(--space-lg);
}

.conclusion-text-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.conclusion-cta-atomaire-gewoonten-klein-beginnen {
  margin-top: var(--space-xl);
}

.cta-button-atomaire-gewoonten-klein-beginnen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.cta-button-atomaire-gewoonten-klein-beginnen:hover {
  background: #047857;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.4);
  transform: translateY(-2px);
}

.related-section-atomaire-gewoonten-klein-beginnen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-atomaire-gewoonten-klein-beginnen {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.related-title-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  margin-bottom: var(--space-md);
}

.related-subtitle-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-atomaire-gewoonten-klein-beginnen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.25rem, 3vw, 1.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.related-card-atomaire-gewoonten-klein-beginnen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.related-card-image-atomaire-gewoonten-klein-beginnen {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.related-card-img-atomaire-gewoonten-klein-beginnen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-atomaire-gewoonten-klein-beginnen:hover .related-card-img-atomaire-gewoonten-klein-beginnen {
  transform: scale(1.05);
}

.related-card-content-atomaire-gewoonten-klein-beginnen {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.related-card-title-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
}

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

.disclaimer-section-atomaire-gewoonten-klein-beginnen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-box-atomaire-gewoonten-klein-beginnen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f9fafb;
  border-radius: var(--radius-lg);
  border-left: 4px solid #6b7280;
}

.disclaimer-title-atomaire-gewoonten-klein-beginnen {
  color: #111827;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.disclaimer-text-atomaire-gewoonten-klein-beginnen {
  color: #4b5563;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-meta-atomaire-gewoonten-klein-beginnen {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .meta-badge-atomaire-gewoonten-klein-beginnen {
    width: fit-content;
  }
}

@media (min-width: 768px) {
  .hero-section-atomaire-gewoonten-klein-beginnen {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }
  
  .introduction-section-atomaire-gewoonten-klein-beginnen,
  .principles-section-atomaire-gewoonten-klein-beginnen,
  .implementation-section-atomaire-gewoonten-klein-beginnen,
  .psychology-section-atomaire-gewoonten-klein-beginnen,
  .obstacles-section-atomaire-gewoonten-klein-beginnen,
  .conclusion-section-atomaire-gewoonten-klein-beginnen,
  .related-section-atomaire-gewoonten-klein-beginnen,
  .disclaimer-section-atomaire-gewoonten-klein-beginnen {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-atomaire-gewoonten-klein-beginnen {
    padding: 6rem 0;
  }
  
  .introduction-section-atomaire-gewoonten-klein-beginnen,
  .principles-section-atomaire-gewoonten-klein-beginnen,
  .implementation-section-atomaire-gewoonten-klein-beginnen,
  .psychology-section-atomaire-gewoonten-klein-beginnen,
  .obstacles-section-atomaire-gewoonten-klein-beginnen,
  .conclusion-section-atomaire-gewoonten-klein-beginnen,
  .related-section-atomaire-gewoonten-klein-beginnen,
  .disclaimer-section-atomaire-gewoonten-klein-beginnen {
    padding: 6rem 0;
  }
}

.main-wetenschap-achter-gewoontevorming {
  width: 100%;
}

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

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

.hero-text-wetenschap-achter-gewoontevorming {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.article-meta-wetenschap-achter-gewoontevorming {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-wetenschap-achter-gewoontevorming i {
  font-size: 0.875rem;
}

.hero-image-wetenschap-achter-gewoontevorming {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-wetenschap-achter-gewoontevorming {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.breadcrumbs-wetenschap-achter-gewoontevorming {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-wetenschap-achter-gewoontevorming a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-wetenschap-achter-gewoontevorming a:hover {
  color: #047857;
}

.breadcrumbs-wetenschap-achter-gewoontevorming span {
  color: #9ca3af;
}

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

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

.intro-text-wetenschap-achter-gewoontevorming {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.intro-image-wetenschap-achter-gewoontevorming {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-wetenschap-achter-gewoontevorming {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content-section-1-wetenschap-achter-gewoontevorming {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-1-wetenschap-achter-gewoontevorming {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.content-text-1-wetenschap-achter-gewoontevorming {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.habit-loop-wetenschap-achter-gewoontevorming {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.loop-step-wetenschap-achter-gewoontevorming {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.loop-number-wetenschap-achter-gewoontevorming {
  color: #059669;
  font-size: 2rem;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
  min-width: 50px;
}

.loop-content-wetenschap-achter-gewoontevorming {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.loop-title-wetenschap-achter-gewoontevorming {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.loop-text-wetenschap-achter-gewoontevorming {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.content-image-1-wetenschap-achter-gewoontevorming {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-1-wetenschap-achter-gewoontevorming {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content-section-2-wetenschap-achter-gewoontevorming {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-2-wetenschap-achter-gewoontevorming {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-2-wetenschap-achter-gewoontevorming {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-img-2-wetenschap-achter-gewoontevorming {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content-text-2-wetenschap-achter-gewoontevorming {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.content-desc-2-wetenschap-achter-gewoontevorming {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.highlight-box-wetenschap-achter-gewoontevorming {
  padding: 1.5rem;
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-wetenschap-achter-gewoontevorming {
  color: #0c4a6e;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.content-section-3-wetenschap-achter-gewoontevorming {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-3-wetenschap-achter-gewoontevorming {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.content-text-3-wetenschap-achter-gewoontevorming {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.principles-list-wetenschap-achter-gewoontevorming {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principle-item-wetenschap-achter-gewoontevorming {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.principle-icon-wetenschap-achter-gewoontevorming {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 12px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.principle-content-wetenschap-achter-gewoontevorming {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principle-title-wetenschap-achter-gewoontevorming {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.principle-text-wetenschap-achter-gewoontevorming {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.content-image-3-wetenschap-achter-gewoontevorming {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-3-wetenschap-achter-gewoontevorming {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.quote-section-wetenschap-achter-gewoontevorming {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-wetenschap-achter-gewoontevorming {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  text-align: center;
  font-style: italic;
}

.quote-text-wetenschap-achter-gewoontevorming {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quote-author-wetenschap-achter-gewoontevorming {
  color: #cbd5e1;
  font-size: 0.9375rem;
  font-style: normal;
}

.content-section-4-wetenschap-achter-gewoontevorming {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-4-wetenschap-achter-gewoontevorming {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-4-wetenschap-achter-gewoontevorming {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-4-wetenschap-achter-gewoontevorming {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.content-text-4-wetenschap-achter-gewoontevorming {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.content-desc-4-wetenschap-achter-gewoontevorming {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tip-box-wetenschap-achter-gewoontevorming {
  padding: 1.5rem;
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.tip-title-wetenschap-achter-gewoontevorming {
  color: #065f46;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.tip-text-wetenschap-achter-gewoontevorming {
  color: #047857;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.conclusion-section-wetenschap-achter-gewoontevorming {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-wetenschap-achter-gewoontevorming {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-wetenschap-achter-gewoontevorming {
  color: #111827;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

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

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

.cta-title-wetenschap-achter-gewoontevorming {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.cta-text-wetenschap-achter-gewoontevorming {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.cta-button-wetenschap-achter-gewoontevorming {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #ffffff;
  color: #059669;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-button-wetenschap-achter-gewoontevorming:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-wetenschap-achter-gewoontevorming {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-wetenschap-achter-gewoontevorming {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #f8fafc;
  border-left: 4px solid #0891b2;
  border-radius: 8px;
}

.disclaimer-title-wetenschap-achter-gewoontevorming {
  color: #0c4a6e;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.disclaimer-text-wetenschap-achter-gewoontevorming {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.related-section-wetenschap-achter-gewoontevorming {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-wetenschap-achter-gewoontevorming {
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-subtitle-wetenschap-achter-gewoontevorming {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

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

.related-card-wetenschap-achter-gewoontevorming {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.related-card-wetenschap-achter-gewoontevorming:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-img-wetenschap-achter-gewoontevorming {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-wetenschap-achter-gewoontevorming {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-wetenschap-achter-gewoontevorming {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-wetenschap-achter-gewoontevorming {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-wetenschap-achter-gewoontevorming {
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.related-card-link-wetenschap-achter-gewoontevorming:hover {
  color: #047857;
}

@media (max-width: 768px) {
  .hero-content-wetenschap-achter-gewoontevorming,
  .intro-wrapper-wetenschap-achter-gewoontevorming,
  .content-wrapper-1-wetenschap-achter-gewoontevorming,
  .content-wrapper-2-wetenschap-achter-gewoontevorming,
  .content-wrapper-3-wetenschap-achter-gewoontevorming,
  .content-wrapper-4-wetenschap-achter-gewoontevorming {
    flex-direction: column;
  }

  .hero-text-wetenschap-achter-gewoontevorming,
  .hero-image-wetenschap-achter-gewoontevorming,
  .intro-text-wetenschap-achter-gewoontevorming,
  .intro-image-wetenschap-achter-gewoontevorming,
  .content-text-1-wetenschap-achter-gewoontevorming,
  .content-image-1-wetenschap-achter-gewoontevorming,
  .content-image-2-wetenschap-achter-gewoontevorming,
  .content-text-2-wetenschap-achter-gewoontevorming,
  .content-text-3-wetenschap-achter-gewoontevorming,
  .content-image-3-wetenschap-achter-gewoontevorming,
  .content-image-4-wetenschap-achter-gewoontevorming,
  .content-text-4-wetenschap-achter-gewoontevorming {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-wrapper-2-wetenschap-achter-gewoontevorming {
    order: 0;
  }

  .content-image-2-wetenschap-achter-gewoontevorming {
    order: 0;
  }

  .related-card-wetenschap-achter-gewoontevorming {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-section-wetenschap-achter-gewoontevorming {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .intro-section-wetenschap-achter-gewoontevorming {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .content-section-1-wetenschap-achter-gewoontevorming {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .content-section-2-wetenschap-achter-gewoontevorming {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .content-section-3-wetenschap-achter-gewoontevorming {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .content-section-4-wetenschap-achter-gewoontevorming {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .quote-section-wetenschap-achter-gewoontevorming {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .conclusion-section-wetenschap-achter-gewoontevorming {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .disclaimer-section-wetenschap-achter-gewoontevorming {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .related-section-wetenschap-achter-gewoontevorming {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-wetenschap-achter-gewoontevorming {
    padding: clamp(5rem, 10vw, 6rem) 0;
  }

  .related-cards-wetenschap-achter-gewoontevorming {
    justify-content: center;
  }
}

.main-motivatie-versus-discipline {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.breadcrumbs-motivatie-versus-discipline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
}

.breadcrumbs-motivatie-versus-discipline a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-motivatie-versus-discipline a:hover {
  color: var(--color-primary-hover);
}

.breadcrumbs-motivatie-versus-discipline span {
  color: var(--color-text-muted);
}

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

.hero-text-wrapper-motivatie-versus-discipline {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-motivatie-versus-discipline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-motivatie-versus-discipline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.875rem);
  font-weight: 600;
}

.hero-image-wrapper-motivatie-versus-discipline {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-motivatie-versus-discipline {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
}

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

  .hero-text-wrapper-motivatie-versus-discipline,
  .hero-image-wrapper-motivatie-versus-discipline {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.intro-text-motivatie-versus-discipline {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-motivatie-versus-discipline {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.intro-description-motivatie-versus-discipline {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-image-motivatie-versus-discipline {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-motivatie-versus-discipline {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-motivatie-versus-discipline {
    flex-direction: column;
  }

  .intro-text-motivatie-versus-discipline,
  .intro-image-motivatie-versus-discipline {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.comparison-section-motivatie-versus-discipline {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.comparison-header-motivatie-versus-discipline {
  text-align: center;
  margin-bottom: 3rem;
}

.comparison-title-motivatie-versus-discipline {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.comparison-subtitle-motivatie-versus-discipline {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.comparison-card-motivatie-versus-discipline {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.comparison-card-icon-motivatie-versus-discipline {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.comparison-card-title-motivatie-versus-discipline {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.comparison-list-motivatie-versus-discipline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comparison-list-item-motivatie-versus-discipline {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.comparison-list-item-motivatie-versus-discipline::before {
  content: "";
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

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

.benefits-section-motivatie-versus-discipline {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.benefits-wrapper-motivatie-versus-discipline {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.benefits-text-motivatie-versus-discipline {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-title-motivatie-versus-discipline {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.benefits-description-motivatie-versus-discipline {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.benefits-highlight-motivatie-versus-discipline {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

.highlight-text-motivatie-versus-discipline {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

.benefits-image-motivatie-versus-discipline {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-motivatie-versus-discipline {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .benefits-wrapper-motivatie-versus-discipline {
    flex-direction: column;
  }

  .benefits-text-motivatie-versus-discipline,
  .benefits-image-motivatie-versus-discipline {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practical-section-motivatie-versus-discipline {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.practical-header-motivatie-versus-discipline {
  text-align: center;
  margin-bottom: 3rem;
}

.practical-title-motivatie-versus-discipline {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.practical-subtitle-motivatie-versus-discipline {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.practical-steps-motivatie-versus-discipline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practical-step-motivatie-versus-discipline {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

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

.practical-step-content-motivatie-versus-discipline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practical-step-title-motivatie-versus-discipline {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin: 0;
}

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

.practical-step-text-discriminatie-versus-discipline {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .practical-step-motivatie-versus-discipline {
    flex-direction: column;
  }

  .practical-step-number-motivatie-versus-discipline {
    min-width: auto;
  }
}

.integration-section-motivatie-versus-discipline {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.integration-wrapper-motivatie-versus-discipline {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.integration-image-motivatie-versus-discipline {
  flex: 1 1 50%;
  max-width: 50%;
}

.integration-image-motivatie-versus-discipline {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
}

.integration-text-motivatie-versus-discipline {
  flex: 1 1 50%;
  max-width: 50%;
}

.integration-title-motivatie-versus-discipline {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.integration-description-motivatie-versus-discipline {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.integration-key-points-motivatie-versus-discipline {
  margin-top: 2rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

.key-points-title-motivatie-versus-discipline {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.key-points-list-motivatie-versus-discipline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.key-point-item-motivatie-versus-discipline {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
}

.key-point-icon-motivatie-versus-discipline {
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.key-point-text-motivatie-versus-discipline {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .integration-wrapper-motivatie-versus-discipline {
    flex-direction: column;
  }

  .integration-image-motivatie-versus-discipline,
  .integration-text-motivatie-versus-discipline {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-content-motivatie-versus-discipline {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-motivatie-versus-discipline {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.conclusion-cta-motivatie-versus-discipline {
  margin-top: 2rem;
}

.cta-button-motivatie-versus-discipline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #ffffff;
  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;
  box-shadow: var(--shadow-md);
}

.cta-button-motivatie-versus-discipline:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.disclaimer-section-motivatie-versus-discipline {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

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

.disclaimer-content-motivatie-versus-discipline {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid #ef4444;
  border-radius: var(--radius-md);
}

.disclaimer-title-motivatie-versus-discipline {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

.related-header-motivatie-versus-discipline {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-motivatie-versus-discipline {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.related-subtitle-motivatie-versus-discipline {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-motivatie-versus-discipline {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.related-card-image-motivatie-versus-discipline {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.related-card-image-motivatie-versus-discipline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-motivatie-versus-discipline {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

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

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

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title-motivatie-versus-discipline {
    font-size: 2.5rem;
  }

  .comparison-title-motivatie-versus-discipline,
  .practical-title-motivatie-versus-discipline,
  .integration-title-motivatie-versus-discipline,
  .related-title-motivatie-versus-discipline {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-title-motivatie-versus-discipline {
    font-size: 3.25rem;
  }

  .comparison-title-motivatie-versus-discipline,
  .practical-title-motivatie-versus-discipline,
  .integration-title-motivatie-versus-discipline,
  .related-title-motivatie-versus-discipline {
    font-size: 2.5rem;
  }
}

.main-implementatie-intenties-programmeren {
  width: 100%;
}

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

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

.hero-text-block-implementatie-intenties-programmeren {
  flex: 1 1 300px;
  max-width: 50%;
}

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

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

.hero-meta-implementatie-intenties-programmeren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.hero-image-block-implementatie-intenties-programmeren {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-image-implementatie-intenties-programmeren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.breadcrumbs-implementatie-intenties-programmeren {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
}

.breadcrumbs-implementatie-intenties-programmeren a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-implementatie-intenties-programmeren a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-implementatie-intenties-programmeren span {
  color: #9ca3af;
  margin: 0 0.25rem;
}

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

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

.intro-text-implementatie-intenties-programmeren {
  flex: 1 1 300px;
  max-width: 50%;
}

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

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

.intro-text-implementatie-intenties-programmeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

.intro-image-implementatie-intenties-programmeren {
  flex: 1 1 300px;
  max-width: 50%;
}

.intro-image-img-implementatie-intenties-programmeren {
  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-text-implementatie-intenties-programmeren,
  .intro-image-implementatie-intenties-programmeren {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .intro-content-implementatie-intenties-programmeren {
    flex-direction: column;
  }
}

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

.concept-header-implementatie-intenties-programmeren {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.concept-tag-implementatie-intenties-programmeren {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.concept-title-implementatie-intenties-programmeren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.concept-content-implementatie-intenties-programmeren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.concept-text-implementatie-intenties-programmeren {
  flex: 1 1 300px;
  max-width: 50%;
}

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

.concept-highlight-implementatie-intenties-programmeren {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-left: 4px solid #059669;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.highlight-text-implementatie-intenties-programmeren {
  color: #111827;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

.concept-image-implementatie-intenties-programmeren {
  flex: 1 1 300px;
  max-width: 50%;
}

.concept-image-img-implementatie-intenties-programmeren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.implementation-header-implementatie-intenties-programmeren {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.implementation-subtitle-implementatie-intenties-programmeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.implementation-steps-implementatie-intenties-programmeren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.implementation-step-implementatie-intenties-programmeren {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
}

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

.step-content-implementatie-intenties-programmeren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-implementatie-intenties-programmeren {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #111827;
}

.step-text-implementatie-intenties-programmeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .implementation-step-implementatie-intenties-programmeren {
    flex-direction: column;
  }
  
  .step-number-implementatie-intenties-programmeren {
    margin-bottom: 0.5rem;
  }
}

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

.examples-header-implementatie-intenties-programmeren {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.examples-title-implementatie-intenties-programmeren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.examples-content-implementatie-intenties-programmeren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.examples-text-implementatie-intenties-programmeren {
  flex: 1 1 300px;
  max-width: 50%;
}

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

.examples-list-implementatie-intenties-programmeren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.example-item-implementatie-intenties-programmeren {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-radius: 8px;
  border-left: 3px solid #059669;
}

.example-title-implementatie-intenties-programmeren {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.example-text-implementatie-intenties-programmeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.example-detail-implementatie-intenties-programmeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  font-style: italic;
}

.examples-image-implementatie-intenties-programmeren {
  flex: 1 1 300px;
  max-width: 50%;
}

.examples-image-img-implementatie-intenties-programmeren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.science-content-implementatie-intenties-programmeren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.science-text-implementatie-intenties-programmeren {
  flex: 1 1 300px;
  max-width: 50%;
}

.science-title-implementatie-intenties-programmeren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.science-text-implementatie-intenties-programmeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.science-quote-implementatie-intenties-programmeren {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f9fafb;
  border-left: 4px solid #059669;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.quote-text-implementatie-intenties-programmeren {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #111827;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.quote-author-implementatie-intenties-programmeren {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #64748b;
  font-style: normal;
}

.science-image-implementatie-intenties-programmeren {
  flex: 1 1 300px;
  max-width: 50%;
}

.science-image-img-implementatie-intenties-programmeren {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.conclusion-content-implementatie-intenties-programmeren {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-implementatie-intenties-programmeren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.conclusion-action-implementatie-intenties-programmeren {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-button-implementatie-intenties-programmeren {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(5, 150, 105, 0.1);
}

.cta-button-implementatie-intenties-programmeren:hover {
  background: #047857;
  box-shadow: 0 10px 15px rgba(5, 150, 105, 0.2);
  transform: translateY(-2px);
}

.disclaimer-section-implementatie-intenties-programmeren {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-implementatie-intenties-programmeren {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: #f9fafb;
  border-radius: 8px;
  border-left: 4px solid #059669;
}

.disclaimer-title-implementatie-intenties-programmeren {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

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

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

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

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

.related-subtitle-implementatie-intenties-programmeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-implementatie-intenties-programmeren {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-card-implementatie-intenties-programmeren:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.related-card-image-implementatie-intenties-programmeren {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  background: #e5e7eb;
}

.related-card-img-implementatie-intenties-programmeren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-implementatie-intenties-programmeren {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.related-card-description-implementatie-intenties-programmeren {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-implementatie-intenties-programmeren {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-implementatie-intenties-programmeren:hover {
  color: #047857;
  gap: 0.75rem;
}

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

@media (min-width: 768px) {
  .implementation-step-implementatie-intenties-programmeren {
    flex-direction: row;
  }
  
  .related-card-implementatie-intenties-programmeren {
    flex: 1 1 320px;
  }
}

@media (min-width: 1024px) {
  .related-cards-implementatie-intenties-programmeren {
    justify-content: space-between;
  }
  
  .related-card-implementatie-intenties-programmeren {
    flex: 1 1 calc(33.333% - 1.67rem);
    max-width: none;
  }
}

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

.main-omgaan-met-terugval-en-herstel {
  width: 100%;
  background: #f9fafb;
}

section, [class*="-section-omgaan-met-terugval-en-herstel"] {
  width: 100%;
  overflow: hidden;
}

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

.hero-section-omgaan-met-terugval-en-herstel {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.hero-section-omgaan-met-terugval-en-herstel .container {
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
}

.breadcrumbs-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-omgaan-met-terugval-en-herstel a {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-omgaan-met-terugval-en-herstel a:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumbs-omgaan-met-terugval-en-herstel span {
  color: #9ca3af;
}

.hero-content-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-block-omgaan-met-terugval-en-herstel {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-omgaan-met-terugval-en-herstel {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-omgaan-met-terugval-en-herstel {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

.meta-badge-omgaan-met-terugval-en-herstel i {
  font-size: 0.875rem;
}

.hero-stats-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.stat-item-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-omgaan-met-terugval-en-herstel {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1.1;
}

.stat-label-omgaan-met-terugval-en-herstel {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  font-weight: 500;
}

.hero-image-omgaan-met-terugval-en-herstel {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-omgaan-met-terugval-en-herstel {
    flex-direction: column;
  }

  .hero-text-block-omgaan-met-terugval-en-herstel,
  .hero-image-block-omgaan-met-terugval-en-herstel {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-omgaan-met-terugval-en-herstel {
    gap: 1.5rem;
  }
}

.intro-section-omgaan-met-terugval-en-herstel {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.intro-text-block-omgaan-met-terugval-en-herstel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-block-omgaan-met-terugval-en-herstel {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-omgaan-met-terugval-en-herstel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-text-omgaan-met-terugval-en-herstel {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-block-omgaan-met-terugval-en-herstel img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-omgaan-met-terugval-en-herstel {
    flex-direction: column;
  }

  .intro-text-block-omgaan-met-terugval-en-herstel,
  .intro-image-block-omgaan-met-terugval-en-herstel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.understand-section-omgaan-met-terugval-en-herstel {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.understand-header-omgaan-met-terugval-en-herstel {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.understand-title-omgaan-met-terugval-en-herstel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.understand-subtitle-omgaan-met-terugval-en-herstel {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.understand-steps-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.understand-step-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

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

.understand-step-content-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.understand-step-title-omgaan-met-terugval-en-herstel {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
}

.understand-step-text-omgaan-met-terugval-en-herstel {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.strategies-section-omgaan-met-terugval-en-herstel {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.strategies-content-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.strategies-text-block-omgaan-met-terugval-en-herstel {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-image-block-omgaan-met-terugval-en-herstel {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-omgaan-met-terugval-en-herstel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.strategies-list-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.strategy-item-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.strategy-icon-omgaan-met-terugval-en-herstel {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.25rem;
  margin-top: 2px;
}

.strategy-content-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.strategy-title-omgaan-met-terugval-en-herstel {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #111827;
}

.strategy-text-omgaan-met-terugval-en-herstel {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.strategies-image-block-omgaan-met-terugval-en-herstel img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .strategies-content-omgaan-met-terugval-en-herstel {
    flex-direction: column;
  }

  .strategies-text-block-omgaan-met-terugval-en-herstel,
  .strategies-image-block-omgaan-met-terugval-en-herstel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mindset-section-omgaan-met-terugval-en-herstel {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.mindset-header-omgaan-met-terugval-en-herstel {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.mindset-title-omgaan-met-terugval-en-herstel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.mindset-subtitle-omgaan-met-terugval-en-herstel {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.mindset-content-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mindset-text-block-omgaan-met-terugval-en-herstel {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-image-block-omgaan-met-terugval-en-herstel {
  flex: 1 1 50%;
  max-width: 50%;
}

.featured-quote-omgaan-met-terugval-en-herstel {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #059669;
  background: #f8fafc;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  border-radius: 4px;
}

.quote-text-omgaan-met-terugval-en-herstel {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #111827;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.mindset-text-omgaan-met-terugval-en-herstel {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mindset-image-block-omgaan-met-terugval-en-herstel img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .mindset-content-omgaan-met-terugval-en-herstel {
    flex-direction: column;
  }

  .mindset-text-block-omgaan-met-terugval-en-herstel,
  .mindset-image-block-omgaan-met-terugval-en-herstel {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.recovery-cards-section-omgaan-met-terugval-en-herstel {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.recovery-cards-header-omgaan-met-terugval-en-herstel {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.recovery-cards-title-omgaan-met-terugval-en-herstel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.recovery-cards-subtitle-omgaan-met-terugval-en-herstel {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.recovery-cards-grid-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.recovery-card-omgaan-met-terugval-en-herstel {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.recovery-card-omgaan-met-terugval-en-herstel:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.recovery-card-icon-omgaan-met-terugval-en-herstel {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 10px;
  color: #059669;
  font-size: 1.5rem;
  margin: 0 auto;
}

.recovery-card-title-omgaan-met-terugval-en-herstel {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #111827;
}

.recovery-card-text-omgaan-met-terugval-en-herstel {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .recovery-card-omgaan-met-terugval-en-herstel {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-omgaan-met-terugval-en-herstel {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-omgaan-met-terugval-en-herstel {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-omgaan-met-terugval-en-herstel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-omgaan-met-terugval-en-herstel {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.conclusion-cta-omgaan-met-terugval-en-herstel {
  text-align: center;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid #e5e7eb;
}

.conclusion-cta-text-omgaan-met-terugval-en-herstel {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #111827;
  font-weight: 500;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

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

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

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

.disclaimer-section-omgaan-met-terugval-en-herstel {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.disclaimer-content-omgaan-met-terugval-en-herstel {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #059669;
  border-radius: 4px;
}

.disclaimer-title-omgaan-met-terugval-en-herstel {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-omgaan-met-terugval-en-herstel {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.related-section-omgaan-met-terugval-en-herstel {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e5e7eb;
}

.related-header-omgaan-met-terugval-en-herstel {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.related-title-omgaan-met-terugval-en-herstel {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.related-subtitle-omgaan-met-terugval-en-herstel {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.6;
}

.related-cards-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-omgaan-met-terugval-en-herstel {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-omgaan-met-terugval-en-herstel:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.related-card-image-omgaan-met-terugval-en-herstel {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-omgaan-met-terugval-en-herstel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-omgaan-met-terugval-en-herstel {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #111827;
}

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

.related-card-link-omgaan-met-terugval-en-herstel {
  display: inline-block;
  margin-top: 0.5rem;
  color: #059669;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: color 0.3s ease;
}

.related-card-link-omgaan-met-terugval-en-herstel:hover {
  color: #047857;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-omgaan-met-terugval-en-herstel {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-stats-omgaan-met-terugval-en-herstel {
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .stat-item-omgaan-met-terugval-en-herstel {
    gap: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .understand-steps-omgaan-met-terugval-en-herstel {
    gap: 1.5rem;
  }
}

:root {
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-primary-light: #10b981;
  --color-secondary: #0891b2;
  --color-secondary-light: #06b6d4;
  --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.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

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

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

.discipline-journey-about {
  width: 100%;
}

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

.hero-discipline-about .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.hero-discipline-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
}

.hero-discipline-title-about {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #111827;
  font-family: var(--font-heading);
}

.hero-discipline-subtitle-about {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #4b5563;
  line-height: 1.6;
  font-weight: 500;
}

.hero-discipline-visual-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.stats-discipline-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
}

.stat-item-about {
  flex: 1 1 150px;
}

.stat-number-about {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  font-family: var(--font-heading);
}

.stat-label-about {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: #4b5563;
  margin-top: 0.5rem;
  font-weight: 500;
}

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

.foundation-section-about .container {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.foundation-content-about {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.foundation-section-about h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.foundation-section-about p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
}

.foundation-image-about {
  flex: 1 1 350px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

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

.approach-header-about {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.approach-header-about h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.approach-header-about p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.process-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

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

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

.step-content-about h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  font-family: var(--font-heading);
}

.step-content-about p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.values-header-about {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.values-header-about h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.values-header-about p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.value-card-about {
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  text-align: center;
}

.value-icon-about {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.value-card-about h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  font-family: var(--font-heading);
}

.value-card-about p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(5, 150, 105, 0.05);
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: var(--radius-md);
}

.featured-quote-about p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.featured-quote-about cite {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #4b5563;
  font-style: normal;
  font-weight: 500;
}

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

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

.commitment-text-about {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.commitment-section-about h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.commitment-section-about p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
}

.commitment-image-about {
  flex: 1 1 350px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.disclaimer-section-about {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}

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

.disclaimer-content-about h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #111827;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-content-about i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.disclaimer-content-about p {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-discipline-about .container {
    gap: 1.5rem;
  }

  .foundation-section-about .container {
    flex-direction: column;
  }

  .foundation-image-about {
    flex: 1 1 100%;
  }

  .commitment-content-about {
    flex-direction: column;
  }

  .commitment-image-about {
    flex: 1 1 100%;
  }

  .stats-discipline-about {
    gap: 1.5rem;
  }

  .stat-item-about {
    flex: 1 1 120px;
  }

  .process-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    min-width: auto;
  }

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

.legal-guide {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.legal-guide section {
  width: 100%;
  overflow: hidden;
}

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

.legal-guide-hero {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-bottom: 1px solid #e5e7eb;
}

.legal-guide-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-guide-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-guide-hero-meta {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-guide-content {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.legal-guide-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-guide-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.legal-guide-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-guide-content li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.legal-guide-content li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-guide-contact {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  margin-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid #e5e7eb;
}

.legal-guide-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-guide-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.legal-guide-contact-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.legal-guide-contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  display: inline;
}

@media (min-width: 768px) {
  .legal-guide-hero {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .legal-guide-content {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .legal-guide-contact {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .legal-guide-content-wrapper {
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

@media (min-width: 1024px) {
  .legal-guide-hero {
    padding: 6rem 0;
  }

  .legal-guide-content {
    padding: 6rem 0;
  }

  .legal-guide-contact {
    padding: 6rem 0;
  }
}

.thank-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.thank-icon {
  width: clamp(80px, 20vw, 120px);
  height: clamp(80px, 20vw, 120px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(40px, 10vw, 60px);
  color: #ffffff;
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  line-height: 1.15;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.5;
  font-family: var(--font-primary);
  font-weight: 600;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-message {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  font-family: var(--font-primary);
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  font-family: var(--font-primary);
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
    padding: clamp(2rem, 5vw, 4rem);
  }

  .thank-icon {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .thank-content {
    gap: clamp(2.5rem, 5vw, 3.5rem);
    padding: clamp(3rem, 6vw, 5rem);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    gap: 3.5rem;
    padding: 5rem;
  }

  .thank-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
  }

  .thank-icon i {
    font-size: 60px;
  }

  .thank-section h1 {
    font-size: 3rem;
  }

  .thank-lead {
    font-size: 1.25rem;
  }

  .thank-message,
  .thank-next-steps {
    font-size: 1.0625rem;
  }
}

.main.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.error-illustration {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.error-code-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(5, 150, 105, 0.15);
}

.error-code-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

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

.error-code {
  font-size: clamp(4rem, 12vw + 1rem, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.error-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-section .error-subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 1.5rem);
  max-width: 450px;
  margin: clamp(0.5rem, 2vw, 1rem) auto 0;
}

.error-message i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
}

.error-message p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1rem);
  margin: 0;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.error-habits {
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  max-width: 450px;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0;
}

.error-habits h3 {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 0.75rem 0;
}

.error-habits p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.3rem, 1rem);
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    min-height: 100vh;
  }

  .error-illustration {
    max-width: 320px;
  }

  .error-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .error-message {
    flex-direction: row;
    padding: clamp(1.25rem, 3vw, 2rem);
  }

  .error-message i {
    flex-shrink: 0;
  }

  .error-message p {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .error-illustration {
    max-width: 360px;
  }

  .error-content {
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }

  .error-habits {
    padding: clamp(1.5rem, 4vw, 2.5rem);
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 8rem 0;
  }

  .error-illustration {
    max-width: 400px;
  }

  .error-content {
    gap: 3.5rem;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(5, 150, 105, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(5, 150, 105, 0.5));
  }
}

.error-code {
  animation: pulse-glow 3s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .error-code-wrapper::before {
    animation: none;
  }

  .error-code {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}