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

:root {
  
  
  
  
  --color-bg-dark-primary: #0f172a;
  --color-bg-dark-secondary: #1e293b;
  --color-bg-dark-tertiary: #334155;
  
  
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  
  
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #cbd5e1;
  --color-text-dark-muted: #94a3b8;
  
  
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-primary-light: #d1fae5;
  --color-secondary: #3b82f6;
  --color-secondary-hover: #2563eb;
  --color-accent-warm: #f59e0b;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h4 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

h5, h6 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
}

p, li, span {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  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: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  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-secondary {
  background: var(--color-secondary);
  color: #ffffff;
}

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

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

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

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

.btn-ghost:hover {
  color: var(--color-primary-hover);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="phone"],
textarea,
select {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  border: 2px solid var(--color-primary-light);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="phone"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

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

label {
  font-weight: 600;
  font-size: 0.9375rem;
}

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

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

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

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

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

.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }

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

.grid { display: grid; }

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

.hidden { display: none; }
.invisible { visibility: hidden; }

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-sm {
  width: 20px;
  height: 20px;
  font-size: 1rem;
}

.icon-md {
  width: 32px;
  height: 32px;
  font-size: 1.25rem;
}

.icon-lg {
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
}

.icon-xl {
  width: 64px;
  height: 64px;
  font-size: 2rem;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  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-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

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

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

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

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-light-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

@media print {
  body {
    background: #ffffff;
  }
  
  .no-print {
    display: none;
  }
}

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

@media (prefers-color-scheme: dark) {
  
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

.header-growth-hub {
  position: static;
  background: var(--color-bg-dark-primary);
  border-bottom: 1px solid var(--color-bg-dark-secondary);
  padding: 1rem 0;
  z-index: 1000;
}

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

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

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

.header-growth-hub-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.header-growth-hub-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

.header-growth-hub-nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 300ms ease;
  position: relative;
}

.header-growth-hub-nav-link:hover {
  color: #ffffff;
}

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

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

.header-growth-hub-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: #0f172a;
  border: none;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}

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

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

.header-growth-hub-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 300ms ease;
  z-index: 1001;
}

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

.header-growth-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-dark-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms ease;
  z-index: 999;
  overflow-y: auto;
}

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

.header-growth-hub-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-bg-dark-secondary);
  flex-shrink: 0;
}

.header-growth-hub-mobile-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.header-growth-hub-mobile-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #cbd5e1;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 300ms ease;
}

.header-growth-hub-mobile-close:hover {
  color: #ffffff;
}

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

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

.header-growth-hub-mobile-link:hover {
  background: var(--color-bg-dark-secondary);
  color: #ffffff;
  border-left-color: var(--color-primary);
  padding-left: 1.5rem;
}

.header-growth-hub-mobile-cta {
  display: block;
  margin: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: #0f172a;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  transition: all 300ms ease;
}

.header-growth-hub-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .header-growth-hub {
    padding: 1.25rem 0;
  }

  .header-growth-hub-container {
    gap: 2.5rem;
  }

  .header-growth-hub-logo-img {
    width: 44px;
    height: 44px;
  }

  .header-growth-hub-logo-text {
    font-size: 1.5rem;
  }

  .header-growth-hub-desktop-nav {
    display: flex;
  }

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

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

  .header-growth-hub-mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-growth-hub-desktop-nav {
    display: none;
  }

  .header-growth-hub-cta-button {
    display: none;
  }
}

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

    .wellness-hub {
  width: 100%;
  font-family: var(--font-primary);
}

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

.hero-deco-gradient-index {
  position: absolute;
  top: 0;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-glow-top-index {
  position: absolute;
  top: 100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-left-index {
  position: absolute;
  bottom: 50px;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-orb-index {
  position: absolute;
  bottom: 100px;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(168, 85, 247, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 2;
  pointer-events: none;
}

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

.hero-deco-line-index {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.hero-text-block-index {
  flex: 1 1 300px;
  max-width: 550px;
}

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

.hero-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

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

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

.hero-stat-number-index {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

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

.hero-buttons-index .btn {
  flex: 0 1 auto;
}

.hero-image-block-index {
  flex: 1 1 300px;
  max-width: 500px;
}

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

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

.featured-deco-mesh-index {
  position: absolute;
  top: 0;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-deco-glow-left-index {
  position: absolute;
  bottom: -100px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.featured-deco-shape-index {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

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

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

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

.featured-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-subtitle-index {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.featured-card-image-index {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.featured-card-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.featured-card-text-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.6;
  flex-grow: 1;
}

.featured-card-link-index {
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease;
  display: inline-flex;
  width: fit-content;
}

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

.featured-footer-index {
  text-align: center;
}

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

.benefits-deco-circle-index {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 400px;
  height: 400px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.benefits-deco-accent-index {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

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

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

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

.benefits-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

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

.benefits-item-index {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.benefits-item-number-index {
  flex-shrink: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  min-width: 60px;
}

.benefits-item-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefits-item-title-index {
  color: #1e293b;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
}

.benefits-item-text-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.6;
}

.quote-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: #1e293b;
  overflow: hidden;
}

.quote-deco-bg-index {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 800px 400px at 50% 100%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

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

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

.quote-block-index {
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 5vw, 3rem);
  border-left: 4px solid #10b981;
  background: rgba(255, 255, 255, 0.02);
  max-width: 700px;
  margin: 0 auto;
}

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

.quote-cite-index {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 500;
}

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

.process-deco-shape-left-index {
  position: absolute;
  top: 100px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 45% 55% 50% 50% / 50% 50% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.process-deco-glow-index {
  position: absolute;
  bottom: 50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.process-header-index {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

.process-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-subtitle-index {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

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

.process-step-index:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.process-step-number-index {
  flex-shrink: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  min-width: 50px;
}

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

.process-step-title-index {
  color: #1e293b;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
}

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

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

.about-deco-mesh-index {
  position: absolute;
  top: -200px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-deco-glow-right-index {
  position: absolute;
  bottom: 50px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.about-text-block-index {
  flex: 1 1 300px;
  max-width: 550px;
}

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

.about-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-description-index {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

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

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

.about-feature-icon-index {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border-radius: 8px;
  font-size: 1.25rem;
}

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

.about-feature-text-index {
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.about-image-block-index {
  flex: 1 1 300px;
  max-width: 500px;
}

.about-image-index {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-section-index {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: #1e293b;
  overflow: hidden;
}

.cta-deco-gradient-index {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 1000px 500px at 50% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-orb-index {
  position: absolute;
  bottom: -50px;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.cta-description-index {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.btn-cta-index {
  background: #10b981;
  color: #0f172a;
}

.btn-cta-index:hover {
  background: #059669;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
}

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

.contact-deco-shape-index {
  position: absolute;
  top: 50px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.contact-deco-glow-index {
  position: absolute;
  bottom: -100px;
  right: 5%;
  width: 350px;
  height: 350px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.contact-form-wrapper-index {
  flex: 1 1 350px;
  max-width: 500px;
}

.contact-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-description-index {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

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

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

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  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: 1rem;
  transition: all 300ms ease;
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: #10b981;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.contact-submit-index {
  width: 100%;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
  background: #10b981;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
}

.contact-submit-index:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

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

.contact-info-wrapper-index {
  flex: 1 1 350px;
  max-width: 500px;
}

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

.contact-info-item-index {
  display: flex;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 300ms ease;
}

.contact-info-item-index:hover {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
}

.contact-info-icon-index {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 8px;
  font-size: 1.25rem;
}

.contact-info-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-item-title-index {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.contact-info-item-text-index {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-info-link-index {
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease;
}

.contact-info-link-index:hover {
  color: #22c55e;
}

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

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

.cookie-banner-text-index {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.5;
  max-width: 500px;
  margin: 0;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}

.cookie-btn-accept-index {
  background: #10b981;
  color: #0f172a;
}

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

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

.cookie-btn-decline-index:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

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

  .hero-image-block-index,
  .about-image-block-index {
    max-width: 100%;
  }

  .featured-cards-index {
    flex-direction: column;
  }

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

  .contact-content-index {
    flex-direction: column;
  }

  .contact-form-wrapper-index,
  .contact-info-wrapper-index {
    max-width: 100%;
  }

  .cookie-banner-index {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-text-index {
    order: 1;
  }

  .cookie-banner-buttons-index {
    order: 2;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .benefits-item-index {
    flex-direction: column;
  }

  .benefits-item-number-index {
    min-width: auto;
    text-align: center;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 100%;
  }
}

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

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

.footer-content {
  display: block;
}

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

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

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

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

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

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

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

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

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

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

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

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

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

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

.footer-contact-label {
  font-weight: 500;
  color: #ffffff;
  display: block;
  margin-bottom: 0.25rem;
}

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

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

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

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

.footer-legal-link {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-dark-muted);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

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

.footer-copyright {
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

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

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }

  .footer-about {
    grid-column: 1 / 2;
    margin-bottom: 0;
  }

  .footer-navigation {
    grid-column: 2 / 3;
    margin-bottom: 0;
  }

  .footer-contact {
    grid-column: 1 / 2;
    margin-bottom: 0;
  }

  .footer-legal {
    grid-column: 2 / 3;
    margin-bottom: 0;
  }

  .footer-copyright {
    grid-column: 1 / -1;
    padding-top: clamp(2.5rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(3rem, 6vw, 5rem);
    justify-content: space-between;
  }

  .footer-about {
    flex: 0 0 auto;
    max-width: 320px;
    margin-bottom: 0;
  }

  .footer-navigation {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .footer-contact {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .footer-legal {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    padding-top: clamp(3rem, 5vw, 4rem);
  }
}

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

  .footer-nav-link::after {
    transition: none;
  }
}
    

.main.category-page-gezonde-routines {
  background: #ffffff;
}

.hero-section-gezonde-routines {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
}

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

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

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

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

.hero-decorative-accent-line {
  position: absolute;
  top: 25%;
  right: 20%;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-title-gezonde-routines {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-gezonde-routines {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-stats-gezonde-routines {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: 2rem;
}

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

.hero-stat-number-gezonde-routines {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  display: block;
}

.hero-stat-label-gezonde-routines {
  font-size: 0.875rem;
  color: #94a3b8;
  opacity: 0.9;
}

.posts-section-gezonde-routines {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #f8fafc;
}

.posts-header-gezonde-routines {
  text-align: center;
  margin-bottom: 3rem;
}

.posts-tag-gezonde-routines {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.posts-subtitle-gezonde-routines {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.card-gezonde-routines {
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-gezonde-routines:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.card-image-gezonde-routines {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  background: #f1f5f9;
}

.card-title-gezonde-routines {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

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

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

.card-meta-item-gezonde-routines {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.card-meta-item-gezonde-routines i {
  color: #10b981;
  font-size: 0.75rem;
}

.card-link-gezonde-routines {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #10b981;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.2s ease;
}

.card-link-gezonde-routines:hover {
  color: #059669;
  gap: 0.75rem;
}

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

.benefits-section-gezonde-routines::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.benefits-text-gezonde-routines {
  flex: 1 1 350px;
}

.benefits-title-gezonde-routines {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.benefits-description-gezonde-routines {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.benefits-list-gezonde-routines {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-item-gezonde-routines {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon-gezonde-routines {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.benefit-content-gezonde-routines {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.benefit-title-gezonde-routines {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0f172a;
}

.benefit-text-gezonde-routines {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.5;
}

.benefits-image-gezonde-routines {
  flex: 1 1 300px;
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .benefits-content-gezonde-routines {
    flex-direction: column;
  }
  
  .benefits-image-gezonde-routines {
    max-width: 100%;
  }
}

.process-section-gezonde-routines {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

.process-header-gezonde-routines {
  text-align: center;
  margin-bottom: 3rem;
}

.process-title-gezonde-routines {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.process-subtitle-gezonde-routines {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps-gezonde-routines {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.process-step-gezonde-routines {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.process-step-gezonde-routines:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

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

.process-step-content-gezonde-routines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.process-step-title-gezonde-routines {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.process-step-text-gezonde-routines {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-stats-gezonde-routines {
    gap: 1.5rem;
  }
  
  .card-gezonde-routines {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .process-step-gezonde-routines {
    flex-direction: column;
    gap: 1rem;
  }
  
  .process-step-number-gezonde-routines {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .posts-grid-gezonde-routines {
    gap: 1rem;
  }
  
  .card-gezonde-routines {
    padding: 1rem;
  }
  
  .process-step-gezonde-routines {
    padding: 1.25rem;
  }
}

.card-link-gezonde-routines:focus-visible,
a[data-post-link]:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 3px;
  border-radius: 4px;
}

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

.main-meditatie-routines-welzijn {
  width: 100%;
  background: #ffffff;
}

.hero-section-meditatie-routines-welzijn {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-block-meditatie-routines-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-image-block-meditatie-routines-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-meditatie-routines-welzijn {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-meditatie-routines-welzijn {
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.breadcrumb-link-meditatie-routines-welzijn:hover {
  color: #10b981;
}

.breadcrumb-divider-meditatie-routines-welzijn {
  color: #64748b;
}

.breadcrumb-current-meditatie-routines-welzijn {
  color: #94a3b8;
}

.hero-title-meditatie-routines-welzijn {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle-meditatie-routines-welzijn {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.hero-meta-meditatie-routines-welzijn {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

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

.meta-badge-meditatie-routines-welzijn i {
  color: #10b981;
}

.hero-stats-meditatie-routines-welzijn {
  display: flex;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-meditatie-routines-welzijn {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-meditatie-routines-welzijn {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.stat-label-meditatie-routines-welzijn {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-meditatie-routines-welzijn {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

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

  .hero-text-block-meditatie-routines-welzijn,
  .hero-image-block-meditatie-routines-welzijn {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-meditatie-routines-welzijn {
    flex-direction: column;
    gap: 1.5rem;
  }
}

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

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

.intro-text-meditatie-routines-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-image-meditatie-routines-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-meditatie-routines-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-description-meditatie-routines-welzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.intro-image-item-meditatie-routines-welzijn {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-meditatie-routines-welzijn {
    flex-direction: column;
  }

  .intro-text-meditatie-routines-welzijn,
  .intro-image-meditatie-routines-welzijn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.section-header-meditatie-routines-welzijn {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-tag-meditatie-routines-welzijn {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.foundations-title-meditatie-routines-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.steps-container-meditatie-routines-welzijn {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.step-item-meditatie-routines-welzijn {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.step-item-meditatie-routines-welzijn:hover {
  border-color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

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

.step-content-meditatie-routines-welzijn {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-meditatie-routines-welzijn {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
}

.step-description-meditatie-routines-welzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

.foundations-image-meditatie-routines-welzijn {
  margin-top: 2rem;
}

.foundations-image-item-meditatie-routines-welzijn {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

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

.techniques-subtitle-meditatie-routines-welzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.techniques-content-meditatie-routines-welzijn {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.techniques-text-meditatie-routines-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.technique-card-meditatie-routines-welzijn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.technique-card-meditatie-routines-welzijn:hover {
  background: #ffffff;
  border-color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.technique-icon-meditatie-routines-welzijn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 10px;
  font-size: 1.5rem;
}

.technique-card-title-meditatie-routines-welzijn {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.technique-card-text-meditatie-routines-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #475569;
  line-height: 1.6;
}

.techniques-image-meditatie-routines-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-item-meditatie-routines-welzijn {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .techniques-content-meditatie-routines-welzijn {
    flex-direction: column;
  }

  .techniques-text-meditatie-routines-welzijn,
  .techniques-image-meditatie-routines-welzijn {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .techniques-text-meditatie-routines-welzijn {
    grid-template-columns: 1fr;
  }
}

.benefits-section-meditatie-routines-welzijn {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.benefits-image-meditatie-routines-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-item-meditatie-routines-welzijn {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.benefits-text-meditatie-routines-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefits-title-meditatie-routines-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.benefits-highlight-meditatie-routines-welzijn {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.15);
  border-left: 4px solid #10b981;
  border-radius: 8px;
}

.highlight-title-meditatie-routines-welzijn {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #d1fae5;
  margin-bottom: 0.75rem;
}

.highlight-text-meditatie-routines-welzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.benefits-list-meditatie-routines-welzijn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.benefit-item-meditatie-routines-welzijn {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon-meditatie-routines-welzijn {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.benefit-text-meditatie-routines-welzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-wrapper-meditatie-routines-welzijn {
    flex-direction: column;
  }

  .benefits-image-meditatie-routines-welzijn,
  .benefits-text-meditatie-routines-welzijn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-meditatie-routines-welzijn {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-content-meditatie-routines-welzijn {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.implementation-text-meditatie-routines-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.implementation-title-meditatie-routines-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.implementation-description-meditatie-routines-welzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.implementation-tips-meditatie-routines-welzijn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-box-meditatie-routines-welzijn {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.tip-title-meditatie-routines-welzijn {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tip-list-meditatie-routines-welzijn {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.tip-item-meditatie-routines-welzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.tip-item-meditatie-routines-welzijn::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.implementation-image-meditatie-routines-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-item-meditatie-routines-welzijn {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .implementation-content-meditatie-routines-welzijn {
    flex-direction: column;
  }

  .implementation-text-meditatie-routines-welzijn,
  .implementation-image-meditatie-routines-welzijn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-meditatie-routines-welzijn {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-meditatie-routines-welzijn {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-meditatie-routines-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-align: center;
}

.quote-block-meditatie-routines-welzijn {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #10b981;
  background: #f8fafc;
  border-radius: 8px;
  margin: 1rem 0;
}

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

.quote-author-meditatie-routines-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  font-style: normal;
  display: block;
}

.conclusion-text-meditatie-routines-welzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  text-align: center;
}

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

.cta-title-meditatie-routines-welzijn {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-meditatie-routines-welzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #d1fae5;
  margin-bottom: 1.5rem;
}

.btn-primary-meditatie-routines-welzijn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #10b981;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary-meditatie-routines-welzijn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-meditatie-routines-welzijn {
  background: #f1f5f9;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-meditatie-routines-welzijn {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-meditatie-routines-welzijn {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-meditatie-routines-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #475569;
  line-height: 1.7;
}

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

.related-header-meditatie-routines-welzijn {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.related-title-meditatie-routines-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.related-subtitle-meditatie-routines-welzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

.related-card-meditatie-routines-welzijn {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-meditatie-routines-welzijn:hover {
  border-color: #10b981;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
  transform: translateY(-4px);
}

.related-card-image-meditatie-routines-welzijn {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-meditatie-routines-welzijn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-meditatie-routines-welzijn:hover .related-card-image-meditatie-routines-welzijn img {
  transform: scale(1.05);
}

.related-card-content-meditatie-routines-welzijn {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-meditatie-routines-welzijn {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.related-card-text-meditatie-routines-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-meditatie-routines-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #10b981;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.related-card-link-meditatie-routines-welzijn i {
  transition: transform 0.3s ease;
}

.related-card-meditatie-routines-welzijn:hover .related-card-link-meditatie-routines-welzijn i {
  transform: translateX(4px);
}

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

@media (min-width: 768px) {
  .hero-section-meditatie-routines-welzijn {
    padding: 5rem 0;
  }

  .intro-section-meditatie-routines-welzijn,
  .foundations-section-meditatie-routines-welzijn,
  .techniques-section-meditatie-routines-welzijn,
  .benefits-section-meditatie-routines-welzijn,
  .implementation-section-meditatie-routines-welzijn,
  .conclusion-section-meditatie-routines-welzijn {
    padding: 5rem 0;
  }
}

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

  .intro-section-meditatie-routines-welzijn,
  .foundations-section-meditatie-routines-welzijn,
  .techniques-section-meditatie-routines-welzijn,
  .benefits-section-meditatie-routines-welzijn,
  .implementation-section-meditatie-routines-welzijn,
  .conclusion-section-meditatie-routines-welzijn {
    padding: 6rem 0;
  }
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-fitnessroutines-beginners {
  width: 100%;
}

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

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

.breadcrumbs-fitnessroutines-beginners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-fitnessroutines-beginners {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.breadcrumb-link-fitnessroutines-beginners:hover {
  color: #10b981;
}

.breadcrumb-separator-fitnessroutines-beginners {
  color: #475569;
}

.breadcrumb-current-fitnessroutines-beginners {
  color: #10b981;
  font-weight: 600;
}

.hero-content-fitnessroutines-beginners {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-wrapper-fitnessroutines-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-fitnessroutines-beginners {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.meta-badge-fitnessroutines-beginners i {
  color: #10b981;
}

.hero-image-fitnessroutines-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-featured-image-fitnessroutines-beginners {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.hero-stats-fitnessroutines-beginners {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-fitnessroutines-beginners {
  flex: 0 1 auto;
  text-align: center;
}

.stat-number-fitnessroutines-beginners {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-fitnessroutines-beginners {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

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

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

  .hero-stats-fitnessroutines-beginners {
    justify-content: space-around;
  }
}

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

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

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

.intro-text-fitnessroutines-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-fitnessroutines-beginners {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-image-fitnessroutines-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-item-fitnessroutines-beginners {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

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

.steps-section-fitnessroutines-beginners {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.section-header-fitnessroutines-beginners {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-title-fitnessroutines-beginners {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle-fitnessroutines-beginners {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.steps-content-fitnessroutines-beginners {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-fitnessroutines-beginners {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.step-item-fitnessroutines-beginners:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: translateX(4px);
}

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

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

.step-title-fitnessroutines-beginners {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.step-text-fitnessroutines-beginners {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-item-fitnessroutines-beginners {
    padding: 1rem;
  }

  .step-number-fitnessroutines-beginners {
    min-width: 50px;
  }
}

.exercises-section-fitnessroutines-beginners {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.exercises-text-fitnessroutines-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.exercises-intro-fitnessroutines-beginners {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.exercises-list-fitnessroutines-beginners {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exercise-card-fitnessroutines-beginners {
  padding: 1rem;
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.exercise-card-fitnessroutines-beginners:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.exercise-name-fitnessroutines-beginners {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.exercise-description-fitnessroutines-beginners {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.exercises-image-fitnessroutines-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.exercises-demo-image-fitnessroutines-beginners {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .exercises-wrapper-fitnessroutines-beginners {
    flex-direction: column;
  }

  .exercises-text-fitnessroutines-beginners,
  .exercises-image-fitnessroutines-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-fitnessroutines-beginners {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.tips-content-fitnessroutines-beginners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
  .tips-content-fitnessroutines-beginners {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.tip-item-fitnessroutines-beginners {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.tip-item-fitnessroutines-beginners:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-4px);
}

.tip-icon-fitnessroutines-beginners {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  color: #10b981;
  font-size: 1.5rem;
}

.tip-text-fitnessroutines-beginners {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tip-title-fitnessroutines-beginners {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.tip-description-fitnessroutines-beginners {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.tip-image-section-fitnessroutines-beginners {
  margin-top: 2rem;
}

.tips-supporting-image-fitnessroutines-beginners {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.motivation-section-fitnessroutines-beginners {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.motivation-content-fitnessroutines-beginners {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.featured-quote-fitnessroutines-beginners {
  padding: 2rem 2.5rem;
  border-left: 4px solid #10b981;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

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

.quote-author-fitnessroutines-beginners {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.motivation-message-fitnessroutines-beginners {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.conclusion-section-fitnessroutines-beginners {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-wrapper-fitnessroutines-beginners {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.conclusion-text-fitnessroutines-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.conclusion-description-fitnessroutines-beginners {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.conclusion-highlights-fitnessroutines-beginners {
  margin-top: 2rem;
}

.highlight-box-fitnessroutines-beginners {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #10b981;
  border-radius: var(--radius-md);
}

.highlight-title-fitnessroutines-beginners {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.highlight-list-fitnessroutines-beginners {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item-fitnessroutines-beginners {
  font-size: 0.9375rem;
  color: #475569;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-fitnessroutines-beginners::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.conclusion-image-fitnessroutines-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-item-fitnessroutines-beginners {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .conclusion-wrapper-fitnessroutines-beginners {
    flex-direction: column;
  }

  .conclusion-text-fitnessroutines-beginners,
  .conclusion-image-fitnessroutines-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cta-box-fitnessroutines-beginners {
  background: linear-gradient(135deg, #10b981, #059669);
  padding: 3rem;
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-fitnessroutines-beginners {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text-fitnessroutines-beginners {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.cta-button-fitnessroutines-beginners {
  background: #ffffff;
  color: #10b981;
  font-weight: 600;
}

.cta-button-fitnessroutines-beginners:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
}

.disclaimer-section-fitnessroutines-beginners {
  background: #0f172a;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-content-fitnessroutines-beginners {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #10b981;
  border-radius: var(--radius-md);
}

.disclaimer-title-fitnessroutines-beginners {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-fitnessroutines-beginners {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
}

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

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

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

.related-subtitle-fitnessroutines-beginners {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.related-card-fitnessroutines-beginners {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-card-fitnessroutines-beginners:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.related-card-image-fitnessroutines-beginners {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-image-fitnessroutines-beginners img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-fitnessroutines-beginners:hover .related-card-image-fitnessroutines-beginners img {
  transform: scale(1.05);
}

.related-card-content-fitnessroutines-beginners {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-fitnessroutines-beginners {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-fitnessroutines-beginners {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-fitnessroutines-beginners {
  display: inline-flex;
  align-items: center;
  color: #10b981;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.related-link-fitnessroutines-beginners:hover {
  color: #059669;
  transform: translateX(4px);
}

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

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

@media (min-width: 1024px) {
  .tips-content-fitnessroutines-beginners {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-stats-fitnessroutines-beginners {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.main-gezonde-voedingsroutines {
  width: 100%;
}

.breadcrumbs-gezonde-voedingsroutines {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-link-gezonde-voedingsroutines {
  color: #60a5fa;
  transition: color 0.2s ease;
}

.breadcrumbs-link-gezonde-voedingsroutines:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumbs-separator-gezonde-voedingsroutines {
  color: #cbd5e1;
}

.breadcrumbs-current-gezonde-voedingsroutines {
  color: #94a3b8;
}

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

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

@media (min-width: 1024px) {
  .hero-content-gezonde-voedingsroutines {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text-wrapper-gezonde-voedingsroutines {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-text-wrapper-gezonde-voedingsroutines {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.hero-title-gezonde-voedingsroutines {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-gezonde-voedingsroutines {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

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

.meta-badge-gezonde-voedingsroutines i {
  color: #10b981;
  font-size: 0.875rem;
}

.hero-image-wrapper-gezonde-voedingsroutines {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-image-wrapper-gezonde-voedingsroutines {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

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

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

.introduction-content-gezonde-voedingsroutines {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .introduction-content-gezonde-voedingsroutines {
    flex-direction: row;
    align-items: center;
  }
}

.introduction-text-gezonde-voedingsroutines {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .introduction-text-gezonde-voedingsroutines {
    flex: 1 1 50%;
    max-width: 50%;
    padding-right: 2rem;
  }
}

.introduction-title-gezonde-voedingsroutines {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.introduction-description-gezonde-voedingsroutines {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.introduction-highlight-gezonde-voedingsroutines {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .introduction-highlight-gezonde-voedingsroutines {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
  }
}

.featured-quote-gezonde-voedingsroutines {
  padding: 2rem 2.5rem;
  border-left: 4px solid #10b981;
  background: #f8fafc;
  margin: 0;
  border-radius: 8px;
}

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

.quote-author-gezonde-voedingsroutines {
  color: #64748b;
  font-size: 0.875rem;
  font-style: normal;
  display: block;
}

.foundation-section-gezonde-voedingsroutines {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.foundation-wrapper-gezonde-voedingsroutines {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .foundation-wrapper-gezonde-voedingsroutines {
    flex-direction: row;
    align-items: center;
  }
}

.foundation-text-gezonde-voedingsroutines {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .foundation-text-gezonde-voedingsroutines {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.foundation-title-gezonde-voedingsroutines {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.foundation-description-gezonde-voedingsroutines {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.foundation-list-gezonde-voedingsroutines {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

.foundation-list-item-gezonde-voedingsroutines {
  color: #94a3b8;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.foundation-list-item-gezonde-voedingsroutines::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.foundation-image-gezonde-voedingsroutines {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .foundation-image-gezonde-voedingsroutines {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.foundation-img-gezonde-voedingsroutines {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.steps-header-gezonde-voedingsroutines {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-gezonde-voedingsroutines {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.steps-title-gezonde-voedingsroutines {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.steps-list-gezonde-voedingsroutines {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-gezonde-voedingsroutines {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-item-gezonde-voedingsroutines:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.step-content-gezonde-voedingsroutines {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-gezonde-voedingsroutines {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.step-description-gezonde-voedingsroutines {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

.practical-wrapper-gezonde-voedingsroutines {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .practical-wrapper-gezonde-voedingsroutines {
    flex-direction: row;
    align-items: center;
  }
}

.practical-image-gezonde-voedingsroutines {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .practical-image-gezonde-voedingsroutines {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.practical-img-gezonde-voedingsroutines {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.practical-text-gezonde-voedingsroutines {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .practical-text-gezonde-voedingsroutines {
    flex: 1 1 50%;
    max-width: 50%;
    padding-left: 2rem;
  }
}

.practical-title-gezonde-voedingsroutines {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.practical-description-gezonde-voedingsroutines {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.tips-grid-gezonde-voedingsroutines {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.tip-card-gezonde-voedingsroutines {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.tip-card-gezonde-voedingsroutines:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

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

.tip-card-title-gezonde-voedingsroutines {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.tip-card-text-gezonde-voedingsroutines {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

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

.habits-content-gezonde-voedingsroutines {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .habits-content-gezonde-voedingsroutines {
    flex-direction: row;
    align-items: center;
  }
}

.habits-text-gezonde-voedingsroutines {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .habits-text-gezonde-voedingsroutines {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.habits-title-gezonde-voedingsroutines {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.habits-description-gezonde-voedingsroutines {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.habits-image-gezonde-voedingsroutines {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .habits-image-gezonde-voedingsroutines {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.habits-img-gezonde-voedingsroutines {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.conclusion-section-gezonde-voedingsroutines {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-gezonde-voedingsroutines {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-gezonde-voedingsroutines {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.conclusion-text-gezonde-voedingsroutines {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-cta-gezonde-voedingsroutines {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-primary-gezonde-voedingsroutines {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #10b981;
  color: #0f172a;
  font-weight: 600;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary-gezonde-voedingsroutines:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.btn-secondary-gezonde-voedingsroutines {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-secondary-gezonde-voedingsroutines:hover {
  background: #ffffff;
  color: #1e293b;
  transform: translateY(-2px);
}

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

.related-header-gezonde-voedingsroutines {
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-subtitle-gezonde-voedingsroutines {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

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

.related-card-gezonde-voedingsroutines {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card-gezonde-voedingsroutines:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

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

.related-card-content-gezonde-voedingsroutines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.related-card-title-gezonde-voedingsroutines {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-gezonde-voedingsroutines {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-gezonde-voedingsroutines {
  color: #10b981;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.related-card-link-gezonde-voedingsroutines:hover {
  color: #059669;
  text-decoration: underline;
}

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

.disclaimer-content-gezonde-voedingsroutines {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-icon-gezonde-voedingsroutines {
  font-size: 1.5rem;
  color: #10b981;
}

.disclaimer-text-gezonde-voedingsroutines {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-gezonde-voedingsroutines {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.disclaimer-description-gezonde-voedingsroutines {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-content-gezonde-voedingsroutines,
  .introduction-content-gezonde-voedingsroutines,
  .foundation-wrapper-gezonde-voedingsroutines,
  .practical-wrapper-gezonde-voedingsroutines,
  .habits-content-gezonde-voedingsroutines {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-text-wrapper-gezonde-voedingsroutines,
  .introduction-text-gezonde-voedingsroutines,
  .introduction-highlight-gezonde-voedingsroutines,
  .foundation-text-gezonde-voedingsroutines,
  .foundation-image-gezonde-voedingsroutines,
  .practical-image-gezonde-voedingsroutines,
  .practical-text-gezonde-voedingsroutines,
  .habits-text-gezonde-voedingsroutines,
  .habits-image-gezonde-voedingsroutines {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-text-gezonde-voedingsroutines,
  .introduction-text-gezonde-voedingsroutines {
    padding-right: 0;
    padding-left: 0;
  }

  .practical-wrapper-gezonde-voedingsroutines {
    flex-direction: column-reverse;
  }

  .tip-card-gezonde-voedingsroutines {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-gezonde-voedingsroutines {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tip-card-gezonde-voedingsroutines {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: none;
  }

  .related-card-gezonde-voedingsroutines {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: none;
  }
}

.main-slaapgewoonten-herstel-energie {
  width: 100%;
}

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

.breadcrumbs-slaapgewoonten-herstel-energie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-slaapgewoonten-herstel-energie {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.breadcrumb-link-slaapgewoonten-herstel-energie:hover {
  color: #10b981;
}

.breadcrumb-separator-slaapgewoonten-herstel-energie {
  color: #64748b;
  margin: 0 0.25rem;
}

.breadcrumb-current-slaapgewoonten-herstel-energie {
  color: #f1f5f9;
}

.hero-section-slaapgewoonten-herstel-energie {
  background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

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

.hero-text-block-slaapgewoonten-herstel-energie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-slaapgewoonten-herstel-energie {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle-slaapgewoonten-herstel-energie {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.hero-meta-slaapgewoonten-herstel-energie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-slaapgewoonten-herstel-energie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #d1fae5;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-slaapgewoonten-herstel-energie i {
  color: #10b981;
  font-size: 0.875rem;
}

.hero-stats-slaapgewoonten-herstel-energie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-slaapgewoonten-herstel-energie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-slaapgewoonten-herstel-energie {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

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

.hero-image-block-slaapgewoonten-herstel-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .hero-content-slaapgewoonten-herstel-energie {
    flex-direction: column;
  }
  
  .hero-text-block-slaapgewoonten-herstel-energie,
  .hero-image-block-slaapgewoonten-herstel-energie {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-stats-slaapgewoonten-herstel-energie {
    flex-direction: row;
    gap: 1.5rem;
  }
}

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

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

.intro-text-slaapgewoonten-herstel-energie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-slaapgewoonten-herstel-energie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.intro-description-slaapgewoonten-herstel-energie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.intro-image-slaapgewoonten-herstel-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-slaapgewoonten-herstel-energie {
  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-wrapper-slaapgewoonten-herstel-energie {
    flex-direction: column;
  }
  
  .intro-text-slaapgewoonten-herstel-energie,
  .intro-image-slaapgewoonten-herstel-energie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-slaapgewoonten-herstel-energie {
  background: #1a2236;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-header-slaapgewoonten-herstel-energie {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-tag-slaapgewoonten-herstel-energie {
  display: inline-block;
  width: fit-content;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: #d1fae5;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.content-title-one-slaapgewoonten-herstel-energie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.content-wrapper-one-slaapgewoonten-herstel-energie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-slaapgewoonten-herstel-energie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-subtitle-slaapgewoonten-herstel-energie {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #ffffff;
}

.content-body-slaapgewoonten-herstel-energie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.highlight-box-slaapgewoonten-herstel-energie {
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin-top: 1rem;
}

.highlight-title-slaapgewoonten-herstel-energie {
  color: #d1fae5;
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 0.5rem;
}

.highlight-text-slaapgewoonten-herstel-energie {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.content-image-one-slaapgewoonten-herstel-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-slaapgewoonten-herstel-energie {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .content-wrapper-one-slaapgewoonten-herstel-energie {
    flex-direction: column;
  }
  
  .content-text-one-slaapgewoonten-herstel-energie,
  .content-image-one-slaapgewoonten-herstel-energie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-slaapgewoonten-herstel-energie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-title-two-slaapgewoonten-herstel-energie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.content-wrapper-two-slaapgewoonten-herstel-energie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-two-slaapgewoonten-herstel-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-two-slaapgewoonten-herstel-energie {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-text-two-slaapgewoonten-herstel-energie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tips-list-slaapgewoonten-herstel-energie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 1rem 0;
}

.tip-item-slaapgewoonten-herstel-energie {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #334155;
  line-height: 1.6;
}

.tip-item-slaapgewoonten-herstel-energie::before {
  content: '';
  color: #10b981;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.featured-quote-slaapgewoonten-herstel-energie {
  padding: 2rem 2.5rem;
  border-left: 4px solid #10b981;
  background: #f1f5f9;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.quote-text-slaapgewoonten-herstel-energie {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  color: #0f172a;
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

.quote-author-slaapgewoonten-herstel-energie {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

@media (max-width: 768px) {
  .content-wrapper-two-slaapgewoonten-herstel-energie {
    flex-direction: column;
  }
  
  .content-image-two-slaapgewoonten-herstel-energie,
  .content-text-two-slaapgewoonten-herstel-energie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.methods-section-slaapgewoonten-herstel-energie {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-header-slaapgewoonten-herstel-energie {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.methods-title-slaapgewoonten-herstel-energie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.methods-subtitle-slaapgewoonten-herstel-energie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
}

.methods-cards-slaapgewoonten-herstel-energie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.method-card-slaapgewoonten-herstel-energie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.method-card-slaapgewoonten-herstel-energie:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
}

.method-number-slaapgewoonten-herstel-energie {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.method-title-slaapgewoonten-herstel-energie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.method-text-slaapgewoonten-herstel-energie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

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

.transformation-section-slaapgewoonten-herstel-energie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.transformation-text-slaapgewoonten-herstel-energie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.transformation-intro-slaapgewoonten-herstel-energie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
}

.benefits-list-slaapgewoonten-herstel-energie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item-slaapgewoonten-herstel-energie {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.benefit-icon-slaapgewoonten-herstel-energie {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 10px;
  color: #10b981;
  font-size: 1.5rem;
}

.benefit-content-slaapgewoonten-herstel-energie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-title-slaapgewoonten-herstel-energie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.benefit-text-slaapgewoonten-herstel-energie {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.transformation-image-slaapgewoonten-herstel-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

.transformation-img-slaapgewoonten-herstel-energie {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .transformation-wrapper-slaapgewoonten-herstel-energie {
    flex-direction: column;
  }
  
  .transformation-text-slaapgewoonten-herstel-energie,
  .transformation-image-slaapgewoonten-herstel-energie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.faq-section-slaapgewoonten-herstel-energie {
  background: #1a2236;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.faq-header-slaapgewoonten-herstel-energie {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.faq-title-slaapgewoonten-herstel-energie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.faq-subtitle-slaapgewoonten-herstel-energie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
}

.faq-items-slaapgewoonten-herstel-energie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-slaapgewoonten-herstel-energie {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question-slaapgewoonten-herstel-energie {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.faq-question-slaapgewoonten-herstel-energie::after {
  content: '';
  margin-left: auto;
  font-size: 0.75rem;
  color: #10b981;
  transition: transform 0.2s ease;
}

.faq-item-slaapgewoonten-herstel-energie[open] .faq-question-slaapgewoonten-herstel-energie::after {
  transform: rotate(180deg);
}

.faq-question-slaapgewoonten-herstel-energie:hover {
  background: rgba(16, 185, 129, 0.05);
}

.faq-answer-slaapgewoonten-herstel-energie {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.faq-answer-text-slaapgewoonten-herstel-energie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.cta-section-slaapgewoonten-herstel-energie {
  background: linear-gradient(135deg, #0f172a 0%, #1a2236 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-box-slaapgewoonten-herstel-energie {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid #10b981;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.cta-title-slaapgewoonten-herstel-energie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.cta-description-slaapgewoonten-herstel-energie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.cta-btn-slaapgewoonten-herstel-energie {
  background: #10b981;
  color: #ffffff;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
}

.cta-btn-slaapgewoonten-herstel-energie:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.disclaimer-section-slaapgewoonten-herstel-energie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-box-slaapgewoonten-herstel-energie {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-slaapgewoonten-herstel-energie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 1rem 0;
}

.disclaimer-text-slaapgewoonten-herstel-energie {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.related-section-slaapgewoonten-herstel-energie {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-slaapgewoonten-herstel-energie {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.related-title-slaapgewoonten-herstel-energie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.related-subtitle-slaapgewoonten-herstel-energie {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
}

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

.related-card-slaapgewoonten-herstel-energie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.related-card-slaapgewoonten-herstel-energie:hover {
  transform: translateY(-8px);
  border-color: #10b981;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.2);
}

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

.related-card-image-slaapgewoonten-herstel-energie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-slaapgewoonten-herstel-energie:hover .related-card-image-slaapgewoonten-herstel-energie img {
  transform: scale(1.05);
}

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

.related-card-title-slaapgewoonten-herstel-energie {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.related-card-text-slaapgewoonten-herstel-energie {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-slaapgewoonten-herstel-energie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #10b981;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-slaapgewoonten-herstel-energie:hover {
  color: #d1fae5;
  transform: translateX(4px);
}

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

@media (max-width: 768px) {
  .hero-stats-slaapgewoonten-herstel-energie {
    gap: 1.5rem;
  }
  
  .stat-item-slaapgewoonten-herstel-energie {
    flex: 1 1 auto;
  }
}

@media (max-width: 480px) {
  .hero-stats-slaapgewoonten-herstel-energie {
    flex-direction: row;
    gap: 1rem;
    justify-content: space-around;
  }
}

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

:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

.main-reflectieroutines-persoonlijke-groei {
  width: 100%;
  background: var(--color-bg-light-primary);
}

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

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

.breadcrumbs-reflectieroutines-persoonlijke-groei {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-reflectieroutines-persoonlijke-groei {
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.breadcrumb-link-reflectieroutines-persoonlijke-groei:hover {
  color: #10b981;
}

.breadcrumb-separator-reflectieroutines-persoonlijke-groei {
  color: #64748b;
}

.breadcrumb-current-reflectieroutines-persoonlijke-groei {
  color: #10b981;
  font-weight: 500;
}

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

.hero-text-wrapper-reflectieroutines-persoonlijke-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-reflectieroutines-persoonlijke-groei {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle-reflectieroutines-persoonlijke-groei {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.article-meta-reflectieroutines-persoonlijke-groei {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-reflectieroutines-persoonlijke-groei {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-image-wrapper-reflectieroutines-persoonlijke-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-reflectieroutines-persoonlijke-groei {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

  .hero-text-wrapper-reflectieroutines-persoonlijke-groei,
  .hero-image-wrapper-reflectieroutines-persoonlijke-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .article-meta-reflectieroutines-persoonlijke-groei {
    flex-direction: column;
  }
}

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

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

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

.intro-text-block-reflectieroutines-persoonlijke-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-reflectieroutines-persoonlijke-groei {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-text-reflectieroutines-persoonlijke-groei {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-block-reflectieroutines-persoonlijke-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-reflectieroutines-persoonlijke-groei {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-reflectieroutines-persoonlijke-groei {
    flex-direction: column;
  }

  .intro-text-block-reflectieroutines-persoonlijke-groei,
  .intro-image-block-reflectieroutines-persoonlijke-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.highlight-section-reflectieroutines-persoonlijke-groei {
  background: #0f172a;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.highlight-section-reflectieroutines-persoonlijke-groei .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.featured-quote-reflectieroutines-persoonlijke-groei {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.08);
  margin: 0;
  border-radius: 8px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.quote-author-reflectieroutines-persoonlijke-groei {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
}

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

.process-section-reflectieroutines-persoonlijke-groei .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-header-reflectieroutines-persoonlijke-groei {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-reflectieroutines-persoonlijke-groei {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.section-subtitle-reflectieroutines-persoonlijke-groei {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps-reflectieroutines-persoonlijke-groei {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-reflectieroutines-persoonlijke-groei {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.process-step-reflectieroutines-persoonlijke-groei:hover {
  border-color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.process-step-number-reflectieroutines-persoonlijke-groei {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

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

.process-step-title-reflectieroutines-persoonlijke-groei {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.process-step-text-reflectieroutines-persoonlijke-groei {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-step-reflectieroutines-persoonlijke-groei {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .process-step-number-reflectieroutines-persoonlijke-groei {
    min-width: 50px;
  }
}

.methods-section-reflectieroutines-persoonlijke-groei {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-section-reflectieroutines-persoonlijke-groei .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.methods-wrapper-reflectieroutines-persoonlijke-groei {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.methods-text-reflectieroutines-persoonlijke-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-title-reflectieroutines-persoonlijke-groei {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.methods-description-reflectieroutines-persoonlijke-groei {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.methods-list-reflectieroutines-persoonlijke-groei {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.method-item-reflectieroutines-persoonlijke-groei {
  padding: 1.25rem;
  background: rgba(16, 185, 129, 0.1);
  border-left: 3px solid #10b981;
  border-radius: 6px;
}

.method-item-title-reflectieroutines-persoonlijke-groei {
  color: #10b981;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.method-item-text-reflectieroutines-persoonlijke-groei {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.6;
}

.methods-image-reflectieroutines-persoonlijke-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.methods-image-img-reflectieroutines-persoonlijke-groei {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .methods-wrapper-reflectieroutines-persoonlijke-groei {
    flex-direction: column;
  }

  .methods-text-reflectieroutines-persoonlijke-groei,
  .methods-image-reflectieroutines-persoonlijke-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.benefits-title-reflectieroutines-persoonlijke-groei {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-cards-reflectieroutines-persoonlijke-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.benefits-card-reflectieroutines-persoonlijke-groei {
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefits-card-reflectieroutines-persoonlijke-groei:hover {
  transform: translateY(-4px);
  border-color: #10b981;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

.benefits-card-icon-reflectieroutines-persoonlijke-groei {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 10px;
  font-size: 1.75rem;
}

.benefits-card-title-reflectieroutines-persoonlijke-groei {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.benefits-card-text-reflectieroutines-persoonlijke-groei {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

.tips-section-reflectieroutines-persoonlijke-groei {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-section-reflectieroutines-persoonlijke-groei .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.tips-wrapper-reflectieroutines-persoonlijke-groei {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.tips-image-reflectieroutines-persoonlijke-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-image-img-reflectieroutines-persoonlijke-groei {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.tips-content-reflectieroutines-persoonlijke-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-title-reflectieroutines-persoonlijke-groei {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.tips-intro-reflectieroutines-persoonlijke-groei {
  color: #cbd5e1;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.tips-list-reflectieroutines-persoonlijke-groei {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tip-item-reflectieroutines-persoonlijke-groei {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.tip-number-reflectieroutines-persoonlijke-groei {
  color: #10b981;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

.tip-text-reflectieroutines-persoonlijke-groei {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.tip-text-reflectieroutines-persoonlijke-groei strong {
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .tips-wrapper-reflectieroutines-persoonlijke-groei {
    flex-direction: column;
  }

  .tips-image-reflectieroutines-persoonlijke-groei,
  .tips-content-reflectieroutines-persoonlijke-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.cta-section-reflectieroutines-persoonlijke-groei {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.cta-section-reflectieroutines-persoonlijke-groei .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.cta-box-reflectieroutines-persoonlijke-groei {
  background: linear-gradient(135deg, #10b981, #059669);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
}

.cta-title-reflectieroutines-persoonlijke-groei {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-text-reflectieroutines-persoonlijke-groei {
  color: #ffffff;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-reflectieroutines-persoonlijke-groei {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #10b981;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button-reflectieroutines-persoonlijke-groei:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: #f0f0f0;
}

.disclaimer-section-reflectieroutines-persoonlijke-groei {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

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

.disclaimer-box-reflectieroutines-persoonlijke-groei {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
}

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

.disclaimer-text-reflectieroutines-persoonlijke-groei {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

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

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

.related-title-reflectieroutines-persoonlijke-groei {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.5rem;
}

.related-subtitle-reflectieroutines-persoonlijke-groei {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

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

.related-card-reflectieroutines-persoonlijke-groei {
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-reflectieroutines-persoonlijke-groei:hover {
  transform: translateY(-4px);
  border-color: #10b981;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

.related-card-image-reflectieroutines-persoonlijke-groei {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-reflectieroutines-persoonlijke-groei {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-reflectieroutines-persoonlijke-groei {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-reflectieroutines-persoonlijke-groei {
  display: inline-flex;
  align-items: center;
  color: #10b981;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-reflectieroutines-persoonlijke-groei:hover {
  color: #059669;
  transform: translateX(4px);
}

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

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

  .intro-section-reflectieroutines-persoonlijke-groei {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .process-section-reflectieroutines-persoonlijke-groei {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .methods-section-reflectieroutines-persoonlijke-groei {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .benefits-section-reflectieroutines-persoonlijke-groei {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .tips-section-reflectieroutines-persoonlijke-groei {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-reflectieroutines-persoonlijke-groei {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-reflectieroutines-persoonlijke-groei {
    font-size: 0.75rem;
  }

  .article-meta-reflectieroutines-persoonlijke-groei {
    gap: 0.75rem;
  }

  .meta-badge-reflectieroutines-persoonlijke-groei {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .process-step-reflectieroutines-persoonlijke-groei {
    gap: 1rem;
    padding: 1.25rem;
  }

  .process-step-number-reflectieroutines-persoonlijke-groei {
    font-size: 1.75rem;
    min-width: 50px;
  }

  .method-item-reflectieroutines-persoonlijke-groei {
    padding: 1rem;
  }

  .cta-box-reflectieroutines-persoonlijke-groei {
    padding: 1.5rem;
  }

  .disclaimer-box-reflectieroutines-persoonlijke-groei {
    padding: 1.25rem;
  }
}

.routineflow-about-main {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-light-primary);
}

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

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

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

.foundation-intro-about {
  max-width: 800px;
}

.foundation-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.foundation-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.375rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.foundation-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-muted);
  line-height: 1.8;
}

.foundation-visual-about {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
}

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

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

.methodology-header-about {
  text-align: center;
  margin-bottom: 2rem;
}

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

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methodology-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.methodology-step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.methodology-step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.methodology-step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.methodology-step-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

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

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

.principles-intro-about {
  text-align: center;
  margin-bottom: 1rem;
}

.principles-heading-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.principles-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.principle-card-about {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.principle-card-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.principle-card-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .principle-card-about {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .methodology-step-about {
    flex-direction: column;
    gap: 1rem;
  }
  
  .methodology-step-number-about {
    min-width: auto;
  }
}

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

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

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

.commitment-heading-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
}

.commitment-visual-about {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
}

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

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

.impact-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

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

.impact-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.impact-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.impact-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: center;
  margin-top: 2rem;
}

.impact-stat-about {
  flex: 0 1 auto;
  text-align: center;
}

.impact-stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

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

.quote-content-about {
  max-width: 900px;
  margin: 0 auto;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
}

.quote-text-about {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 500;
  color: var(--color-text-dark-primary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-author-about {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  font-style: normal;
  font-weight: 500;
}

.disclaimer-section-about {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-light-secondary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-light-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .foundation-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
  
  .methodology-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
  
  .principles-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
  
  .commitment-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
  
  .impact-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
  
  .quote-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .foundation-section-about {
    padding: clamp(5rem, 8vw, 6rem) 0;
  }
  
  .methodology-section-about {
    padding: clamp(5rem, 8vw, 6rem) 0;
  }
  
  .principles-section-about {
    padding: clamp(5rem, 8vw, 6rem) 0;
  }
  
  .commitment-section-about {
    padding: clamp(5rem, 8vw, 6rem) 0;
  }
  
  .impact-section-about {
    padding: clamp(5rem, 8vw, 6rem) 0;
  }
  
  .quote-section-about {
    padding: clamp(5rem, 8vw, 6rem) 0;
  }
}

.wellness-docs {
  font-family: var(--font-primary);
  color: var(--color-text-light-primary);
  background: var(--color-bg-light-primary);
}

.wellness-docs section {
  width: 100%;
  overflow: hidden;
}

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

.wellness-docs-hero {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-secondary);
}

.wellness-docs-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wellness-docs-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.wellness-docs-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wellness-docs-hero-meta p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.wellness-docs-content {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-primary);
}

.wellness-docs-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.wellness-docs-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

.wellness-docs-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.5rem;
}

.wellness-docs-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.wellness-docs-contact {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-secondary);
}

.wellness-docs-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wellness-docs-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
}

.wellness-docs-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

.wellness-docs-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-light-tertiary);
}

.wellness-docs-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.wellness-docs-contact-item strong {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-primary);
  font-weight: 600;
}

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

@media (min-width: 768px) {
  .wellness-docs-hero {
    padding: 5rem 0;
  }

  .wellness-docs-content {
    padding: 5rem 0;
  }

  .wellness-docs-contact {
    padding: 5rem 0;
  }

  .wellness-docs-contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .wellness-docs-hero {
    padding: 6rem 0;
  }

  .wellness-docs-content {
    padding: 6rem 0;
  }

  .wellness-docs-contact {
    padding: 6rem 0;
  }

  .wellness-docs-contact-details {
    grid-template-columns: repeat(3, 1fr);
  }
}

.thank-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4rem, 12vw, 6rem);
  height: clamp(4rem, 12vw, 6rem);
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  animation: icon-pulse 2s ease-in-out;
}

.thank-icon i {
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--color-primary);
}

@keyframes icon-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-section h1 {
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
}

.thank-description {
  color: var(--color-text-dark-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-dark-muted);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  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-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.5;
}

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .thank-section h1 {
    font-size: clamp(2rem, 5vw + 0.5rem, 3.25rem);
  }

  .thank-lead {
    font-size: clamp(1.0625rem, 2vw + 0.5rem, 1.375rem);
  }

  .thank-description {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.1875rem);
  }

  .thank-next-steps {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  }
}

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

  .thank-content {
    gap: 2.5rem;
  }

  .thank-section h1 {
    font-size: 3.25rem;
  }

  .thank-lead {
    font-size: 1.375rem;
  }

  .thank-description {
    font-size: 1.125rem;
  }

  .thank-next-steps {
    font-size: 1rem;
  }

  .btn {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-section h1 {
    font-size: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .btn-primary:active {
    transform: none;
  }
}

@media (prefers-contrast: more) {
  .thank-icon {
    border: 2px solid var(--color-primary);
  }

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

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
  width: 100%;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
  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;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.error-decoration-1 {
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  background: var(--color-primary);
  top: -100px;
  left: -100px;
}

.error-decoration-2 {
  width: clamp(150px, 30vw, 400px);
  height: clamp(150px, 30vw, 400px);
  background: var(--color-secondary);
  bottom: -50px;
  right: -50px;
}

.error-code-wrapper {
  position: relative;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
}

.error-code {
  font-size: clamp(3rem, 12vw, 7rem);
  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;
  margin: 0;
  line-height: 1;
  font-family: var(--font-heading);
  animation: float 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.error-code-icon {
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--color-primary);
  animation: pulse-icon 2s ease-in-out infinite;
}

.error-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--color-text-dark-primary);
  margin: clamp(1rem, 2vw, 2rem) 0;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 600px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-suggestions {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  width: 100%;
  max-width: 500px;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(16, 185, 129, 0.1);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-secondary);
  transition: all 0.3s ease;
}

.suggestion-item i {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  flex-shrink: 0;
}

.suggestion-item:hover {
  background: rgba(16, 185, 129, 0.2);
  transform: translateX(4px);
}

.error-cta {
  margin: clamp(2rem, 4vw, 3rem) 0;
}

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

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

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

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

.error-footer {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-muted);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.6;
}

.error-footer i {
  color: var(--color-primary);
  animation: heartbeat 1.5s ease-in-out infinite;
}

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

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
  
  .error-code-wrapper {
    margin-bottom: 2rem;
  }
  
  .error-suggestions {
    max-width: 600px;
  }
  
  .suggestion-item {
    padding: 1.25rem;
  }
  
  .suggestion-item:hover {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
    min-height: 100vh;
  }
  
  .error-code {
    transition: all 0.3s ease;
  }
  
  .error-code:hover {
    transform: scale(1.05);
  }
  
  .error-decoration-1 {
    width: 500px;
    height: 500px;
  }
  
  .error-decoration-2 {
    width: 400px;
    height: 400px;
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 8rem 0;
  }
  
  .error-code {
    font-size: 7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-code-icon,
  .suggestion-item,
  .btn-primary,
  .error-footer i {
    animation: none;
    transition: none;
  }
  
  .suggestion-item:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  .error-section {
    background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
  }
}

@media (prefers-color-scheme: light) {
  .error-section {
    background: linear-gradient(135deg, var(--color-bg-light-secondary) 0%, var(--color-bg-light-primary) 100%);
  }
  
  .error-code {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .error-title {
    color: var(--color-text-light-primary);
  }
  
  .error-description {
    color: var(--color-text-light-secondary);
  }
  
  .suggestion-item {
    color: var(--color-text-light-secondary);
    background: rgba(16, 185, 129, 0.08);
  }
  
  .error-footer {
    color: var(--color-text-light-muted);
  }
}