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

:root {
  
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #93c5fd;
  
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #60a5fa;
  --color-accent-light: #bfdbfe;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.15);
}

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

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

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

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  line-height: 1.25;
  letter-spacing: -0.005em;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 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-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

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

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-secondary);
}

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

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: var(--color-secondary);
}

.card {
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.card:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.card-icon {
  width: clamp(2.5rem, 6vw, 4rem);
  height: clamp(2.5rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.card h3 {
  color: var(--color-text-primary);
  margin: var(--space-xs) 0;
}

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

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

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

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

input, textarea, select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--color-text-primary);
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(0.875rem, 2vw, 1rem);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
  color: rgba(191, 219, 254, 0.5);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-primary);
}

button[type="submit"] {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

button[type="submit"]:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

button[type="submit"]:active {
  transform: translateY(0);
}

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

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

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

.grid {
  display: grid;
}

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

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

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

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

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

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

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

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

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

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

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

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

.py-section {
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

.py-lg {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.py-md {
  padding: clamp(1.5rem, 4vw, 3rem) 0;
}

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

@media (min-width: 769px) {
  .show-mobile {
    display: none;
  }
}

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

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

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

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

.animate-fade-in {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

i[class*="fa-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-sm {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.icon-md {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.icon-lg {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.icon-xl {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

html {
  scroll-padding-top: 80px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

.header-habit-forge {
  position: static;
  width: 100%;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  padding: 1rem 0;
  z-index: 100;
}

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

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

.header-habit-forge-brand:hover {
  opacity: 0.85;
}

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

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

.header-habit-forge-desktop-nav {
  display: none;
  gap: 2.5rem;
  align-items: center;
  flex: 1;
}

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

.header-habit-forge-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);
}

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

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

.header-habit-forge-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: #0c1929;
  border: none;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.975rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.header-habit-forge-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

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

.header-habit-forge-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 300ms ease;
}

.header-habit-forge-toggle-line {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.header-habit-forge-mobile-toggle[aria-expanded="true"] .header-habit-forge-toggle-line:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.header-habit-forge-mobile-toggle[aria-expanded="true"] .header-habit-forge-toggle-line:nth-child(2) {
  opacity: 0;
}

.header-habit-forge-mobile-toggle[aria-expanded="true"] .header-habit-forge-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.header-habit-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-secondary);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  overflow-y: auto;
  padding-top: 80px;
}

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

.header-habit-forge-mobile-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 70px;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 4vw, 2rem);
  z-index: 101;
}

.header-habit-forge-mobile-close {
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 300ms ease;
}

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

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

.header-habit-forge-mobile-link {
  padding: 1.125rem clamp(1rem, 4vw, 2rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
  transition: all 300ms ease;
}

.header-habit-forge-mobile-link:hover {
  color: var(--color-primary);
  background: rgba(59, 130, 246, 0.05);
  padding-left: clamp(1.25rem, 4vw, 2.25rem);
}

.header-habit-forge-mobile-cta {
  margin: 1.5rem clamp(1rem, 4vw, 2rem) 0;
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: #0c1929;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 300ms ease;
}

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

@media (min-width: 768px) {
  .header-habit-forge {
    padding: 1.125rem 0;
  }

  .header-habit-forge-desktop-nav {
    display: flex;
  }

  .header-habit-forge-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

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

@media (min-width: 1024px) {
  .header-habit-forge-container {
    gap: 3rem;
  }

  .header-habit-forge-nav-link {
    font-size: 1rem;
  }

  .header-habit-forge-logo-text {
    font-size: 1.375rem;
  }
}

.header-habit-forge-nav-link:focus-visible,
.header-habit-forge-cta-button:focus-visible,
.header-habit-forge-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .header-habit-forge-brand,
  .header-habit-forge-nav-link,
  .header-habit-forge-nav-link::after,
  .header-habit-forge-cta-button,
  .header-habit-forge-mobile-toggle .header-habit-forge-toggle-line,
  .header-habit-forge-mobile-menu {
    transition: none !important;
  }
}

    

.habits-hub {
  position: relative;
  width: 100%;
}

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

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

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

.hero-text-block-index {
  flex: 1 1 400px;
  min-width: 280px;
}

.hero-image-block-index {
  flex: 1 1 400px;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-subtitle-index {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #bfdbfe;
  line-height: 1.4;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
}

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

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

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

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

.hero-stat-label-index {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #bfdbfe;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image-index {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

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

.hero-glow-bottom-index {
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-shape-index {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  transform: translate(-50%, -50%) rotate(20deg);
  z-index: 1;
  pointer-events: none;
}

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

.hero-float-element-index {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(96, 165, 250, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
}

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

  .hero-image-block-index {
    order: -1;
  }

  .hero-glow-top-index {
    width: 250px;
    height: 250px;
  }

  .hero-glow-bottom-index {
    width: 200px;
    height: 200px;
  }

  .hero-shape-index {
    width: 300px;
    height: 300px;
  }
}

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

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

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

.benefits-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

.benefits-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.benefits-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-card-index:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.benefits-card-icon-index {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.15);
  border-radius: 10px;
  color: #60a5fa;
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

.benefits-card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin: 0;
}

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

.benefits-glow-right-index {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-accent-index {
  position: absolute;
  top: 40%;
  right: 15%;
  width: 180px;
  height: 180px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 25px;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

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

  .benefits-glow-left-index {
    width: 200px;
    height: 200px;
  }

  .benefits-glow-right-index {
    width: 250px;
    height: 250px;
  }
}

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

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

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

.process-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

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

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

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.06);
  border-left: 3px solid #3b82f6;
  border-radius: 8px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-index:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateX(8px);
}

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

.process-step-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.process-step-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.process-step-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin: 0;
}

.process-glow-index {
  position: absolute;
  top: 50%;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.process-accent-index {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

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

  .process-step-number-index {
    min-width: auto;
  }

  .process-glow-index {
    width: 250px;
    height: 250px;
  }
}

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

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

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

.posts-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

.posts-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.posts-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.posts-card-index:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.posts-card-image-index {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.posts-card-content-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.posts-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.posts-card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.posts-card-link-index {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: all 300ms ease;
  margin-top: 0.5rem;
}

.posts-card-link-index:hover {
  color: #93c5fd;
  transform: translateX(4px);
}

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

.posts-cta-link-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
  border: 2px solid #3b82f6;
  color: #3b82f6;
  border-radius: 8px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.posts-cta-link-index:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #60a5fa;
  color: #60a5fa;
}

.posts-glow-index {
  position: absolute;
  bottom: -100px;
  right: -80px;
  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;
}

.posts-shape-index {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 70% 30% 60% 40% / 30% 60% 40% 70%;
  z-index: 1;
  pointer-events: none;
}

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

  .posts-glow-index {
    width: 250px;
    height: 250px;
  }
}

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

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

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

.testimonial-text-index {
  flex: 1 1 400px;
  min-width: 280px;
}

.testimonial-quote-index {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  padding-left: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #3b82f6;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial-author-name-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #60a5fa;
}

.testimonial-author-role-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #93c5fd;
}

.testimonial-image-block-index {
  flex: 1 1 350px;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-image-index {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.testimonial-glow-index {
  position: absolute;
  top: 30%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-accent-index {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(96, 165, 250, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 30px;
  z-index: 1;
  pointer-events: none;
}

.testimonial-dots-index {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(59, 130, 246, 0.1);
  z-index: 0;
  pointer-events: none;
}

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

  .testimonial-image-block-index {
    order: -1;
  }

  .testimonial-glow-index {
    width: 250px;
    height: 250px;
  }
}

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

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

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

.values-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

.values-subtitle-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.value-item-index {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.value-icon-index {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.15);
  border-radius: 12px;
  color: #60a5fa;
  font-size: 1.75rem;
  flex-shrink: 0;
}

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

.value-text-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin: 0;
}

.values-glow-left-index {
  position: absolute;
  top: 30%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.values-glow-right-index {
  position: absolute;
  bottom: 20%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.values-line-index {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

  .values-glow-left-index,
  .values-glow-right-index {
    width: 200px;
    height: 200px;
  }
}

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

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

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

.contact-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

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

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

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

.contact-form-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

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

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

.contact-form-input-index,
.contact-form-textarea-index {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 0.875rem) clamp(0.875rem, 2vw, 1rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #ffffff;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 300ms ease;
}

.contact-form-input-index::placeholder,
.contact-form-textarea-index::placeholder {
  color: rgba(191, 219, 254, 0.5);
}

.contact-form-input-index:focus,
.contact-form-textarea-index:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.contact-form-submit-index {
  padding: clamp(0.875rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #3b82f6;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.contact-form-submit-index:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

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

.contact-info-wrapper-index {
  flex: 1 1 350px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.contact-info-block-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
}

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

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

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

.contact-faq-question-index {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  font-weight: 500;
  color: #60a5fa;
  margin: 0;
}

.contact-faq-answer-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #bfdbfe;
  line-height: 1.5;
  margin: 0;
}

.contact-glow-index {
  position: absolute;
  top: -100px;
  left: -80px;
  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;
}

.contact-shape-index {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 50% 40% 60% 40% / 40% 50% 30% 60%;
  z-index: 1;
  pointer-events: none;
}

.contact-accent-index {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

  .contact-glow-index {
    width: 250px;
    height: 250px;
  }

  .contact-shape-index {
    width: 200px;
    height: 200px;
  }
}

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

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

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

.cta-text-index {
  flex: 1 1 400px;
  min-width: 280px;
}

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

.cta-description-index {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

.cta-button-primary-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button-primary-index:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.cta-button-secondary-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
  color: #60a5fa;
  border: 2px solid #60a5fa;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button-secondary-index:hover {
  background: rgba(96, 165, 250, 0.1);
  border-color: #93c5fd;
  color: #93c5fd;
}

.cta-image-index {
  flex: 1 1 350px;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-visual-index {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

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

.cta-glow-bottom-index {
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.cta-shape-index {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 35%;
  transform: translateY(-50%) rotate(-20deg);
  z-index: 1;
  pointer-events: none;
}

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

  .cta-buttons-index {
    flex-direction: column;
    width: 100%;
  }

  .cta-button-primary-index,
  .cta-button-secondary-index {
    width: 100%;
  }

  .cta-glow-top-index,
  .cta-glow-bottom-index {
    width: 250px;
    height: 250px;
  }

  .cta-shape-index {
    width: 150px;
    height: 150px;
  }
}

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

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

.cookie-banner-text {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: #cbd5e1;
  margin: 0;
  text-align: center;
  flex: 1 1 200px;
  line-height: 1.5;
}

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

.cookie-btn-accept {
  padding: clamp(0.5rem, 1vw, 0.625rem) clamp(1rem, 2vw, 1.25rem);
  background: #3b82f6;
  color: #000000;
  border: none;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms ease;
}

.cookie-btn-accept:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.625rem) clamp(1rem, 2vw, 1.25rem);
  background: transparent;
  color: #93c5fd;
  border: 1px solid rgba(191, 219, 254, 0.3);
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 250ms ease;
}

.cookie-btn-decline:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #bfdbfe;
  color: #bfdbfe;
}

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

  .cookie-banner-text {
    flex: 1 1 100%;
    order: -1;
  }

  .cookie-banner-buttons {
    flex: 1 1 100%;
    justify-content: center;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 auto;
    min-width: 100px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }
}

@media (min-width: 768px) {
  .hero-section-index .container,
  .benefits-section-index .container,
  .process-section-index .container,
  .posts-section-index .container,
  .testimonial-section-index .container,
  .values-section-index .container,
  .contact-section-index .container,
  .cta-section-index .container {
    padding-inline: clamp(1rem, 5vw, 2rem);
  }
}

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

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

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

  
  .footer-content {
    display: block;
  }

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

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

  .footer-about-text {
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 500px;
  }

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

  
  .footer-column {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-column-title {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    font-weight: 600;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
  }

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

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

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

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

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

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

  .footer-contact-item {
    font-size: clamp(0.8125rem, 1vw, 0.9375rem);
    color: var(--color-text-muted);
    line-height: 1.6;
    font-style: normal;
  }

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

  
  .footer-divider {
    height: 1px;
    background: rgba(59, 130, 246, 0.1);
    margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  }

  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-copyright {
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
    color: var(--color-text-muted);
    font-weight: 500;
  }

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

  .footer-deco-glow-1 {
    top: 10%;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
  }

  .footer-deco-glow-2 {
    bottom: 20%;
    right: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
  }

  .footer-deco-accent {
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    opacity: 0.5;
  }

  
  @media (min-width: 768px) {
    .footer {
      padding: clamp(4rem, 10vw, 6rem) 0;
    }

    .footer-sections {
      gap: clamp(3rem, 5vw, 4.5rem);
    }

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

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

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

    .footer-deco-glow-1 {
      width: 150px;
      height: 150px;
      left: -100px;
      filter: blur(40px);
    }

    .footer-deco-glow-2 {
      width: 150px;
      height: 150px;
      right: -100px;
      filter: blur(40px);
    }
  }

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

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

.category-page-success-habits {
  width: 100%;
}

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

.hero-ambient-glow-success-habits {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field-success-habits {
  position: absolute;
  bottom: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 75%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-success-habits {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

.hero-corner-shine-success-habits {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 180px;
  height: 180px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.hero-title-success-habits {
  font-size: clamp(2rem, 6vw + 1rem, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

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

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

.stat-number-success-habits {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-success-habits {
  font-size: clamp(0.75rem, 1.5vw, 0.9375rem);
  color: #93c5fd;
  font-weight: 500;
}

.hero-cta-success-habits {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

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

.posts-header-success-habits {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.posts-tag-success-habits {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.posts-subtitle-success-habits {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.card-success-habits {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 14px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-success-habits:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(59, 130, 246, 0.2);
}

.card-success-habits img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

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

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

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

.meta-badge-success-habits {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.875rem;
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border-radius: 18px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-success-habits i {
  font-size: 0.875rem;
}

.card-success-habits .btn {
  margin-top: 0.5rem;
}

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

.process-ambient-glow-success-habits {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 75%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.process-gradient-mesh-success-habits {
  position: absolute;
  bottom: -50px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

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

.process-tag-success-habits {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.process-subtitle-success-habits {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-success-habits {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.process-step-success-habits {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.process-step-success-habits:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.35);
  transform: translateX(8px);
}

.process-step-number-success-habits {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.process-step-content-success-habits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.process-step-title-success-habits {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #ffffff;
}

.process-step-text-success-habits {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.insights-section-success-habits {
  position: relative;
  overflow: hidden;
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.insights-shape-accent-success-habits {
  position: absolute;
  top: -100px;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 50% 45% 55% 50% / 45% 55% 45% 55%;
  z-index: 1;
  pointer-events: none;
}

.insights-glow-element-success-habits {
  position: absolute;
  bottom: -80px;
  right: 8%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

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

.featured-quote-success-habits {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  border-radius: 8px;
}

.quote-text-success-habits {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-success-habits {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: #93c5fd;
  font-style: normal;
  font-weight: 500;
}

.insights-title-success-habits {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.insights-text-success-habits {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.insights-details-success-habits {
  background: rgba(59, 130, 246, 0.06);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .posts-grid-success-habits {
    gap: 1.25rem;
  }

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

  .hero-stats-success-habits {
    gap: 1.5rem;
  }

  .process-step-success-habits {
    gap: 1rem;
    padding: 1.25rem;
  }

  .process-step-number-success-habits {
    min-width: 50px;
    font-size: 2rem;
  }

  .card-meta-success-habits {
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  .posts-grid-success-habits {
    gap: 2rem;
  }

  .card-success-habits {
    flex: 1 1 350px;
  }
}

@media (min-width: 1024px) {
  .card-success-habits {
    flex: 1 1 380px;
    max-width: 420px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.875rem);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
}

.btn-primary {
  background: #3b82f6;
  color: #0f172a;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

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

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #60a5fa;
}

.btn-outline {
  background: transparent;
  color: #bfdbfe;
  border: 2px solid #bfdbfe;
}

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #60a5fa;
  color: #ffffff;
}

.btn:focus-visible,
a:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 3px;
}

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

.main-morgenroutines-productiviteit {
  width: 100%;
}

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

.hero-section-morgenroutines-productiviteit::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-wrapper-morgenroutines-productiviteit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content-morgenroutines-productiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-morgenroutines-productiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-description-morgenroutines-productiviteit {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-morgenroutines-productiviteit {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-morgenroutines-productiviteit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #bfdbfe;
}

.meta-badge-morgenroutines-productiviteit i {
  color: #3b82f6;
  font-size: 0.875rem;
}

.hero-img-morgenroutines-productiviteit {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-morgenroutines-productiviteit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: #93c5fd;
  position: relative;
  z-index: 2;
}

.breadcrumbs-morgenroutines-productiviteit a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-morgenroutines-productiviteit a:hover {
  color: #3b82f6;
  text-decoration: underline;
}

.breadcrumbs-morgenroutines-productiviteit span {
  color: #475569;
}

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

  .hero-content-morgenroutines-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-morgenroutines-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-img-morgenroutines-productiviteit {
    max-height: 300px;
  }
}

.intro-section-morgenroutines-productiviteit {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-morgenroutines-productiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-morgenroutines-productiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-morgenroutines-productiviteit {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.intro-img-morgenroutines-productiviteit {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-wrapper-morgenroutines-productiviteit {
    flex-direction: column;
  }

  .intro-text-morgenroutines-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-morgenroutines-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-img-morgenroutines-productiviteit {
    max-height: 300px;
  }
}

.content-section-one-morgenroutines-productiviteit {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-one-morgenroutines-productiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-morgenroutines-productiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-morgenroutines-productiviteit {
  font-size: clamp(1.375rem, 3.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.content-text-one-paragraph-morgenroutines-productiviteit {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.content-list-one-morgenroutines-productiviteit {
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 0;
}

.list-item-morgenroutines-productiviteit {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

.list-item-morgenroutines-productiviteit::before {
  content: '';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.content-img-one-morgenroutines-productiviteit {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .content-wrapper-one-morgenroutines-productiviteit {
    flex-direction: column;
  }

  .content-text-one-morgenroutines-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-one-morgenroutines-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-img-one-morgenroutines-productiviteit {
    max-height: 300px;
  }
}

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

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

.content-text-two-morgenroutines-productiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-two-morgenroutines-productiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-morgenroutines-productiviteit {
  font-size: clamp(1.375rem, 3.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.content-text-two-paragraph-morgenroutines-productiviteit {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.content-img-two-morgenroutines-productiviteit {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-wrapper-two-morgenroutines-productiviteit {
    flex-direction: column-reverse;
  }

  .content-text-two-morgenroutines-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-two-morgenroutines-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-img-two-morgenroutines-productiviteit {
    max-height: 300px;
  }
}

.content-section-three-morgenroutines-productiviteit {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-morgenroutines-productiviteit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-three-morgenroutines-productiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-morgenroutines-productiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-morgenroutines-productiviteit {
  font-size: clamp(1.375rem, 3.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.content-text-three-paragraph-morgenroutines-productiviteit {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.quote-morgenroutines-productiviteit {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin: 2rem 0;
}

.quote-text-morgenroutines-productiviteit {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.content-img-three-morgenroutines-productiviteit {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .content-wrapper-three-morgenroutines-productiviteit {
    flex-direction: column;
  }

  .content-text-three-morgenroutines-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-three-morgenroutines-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-img-three-morgenroutines-productiviteit {
    max-height: 300px;
  }
}

.content-section-four-morgenroutines-productiviteit {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-four-morgenroutines-productiviteit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-four-morgenroutines-productiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-four-morgenroutines-productiviteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-morgenroutines-productiviteit {
  font-size: clamp(1.375rem, 3.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.content-text-four-paragraph-morgenroutines-productiviteit {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.content-img-four-morgenroutines-productiviteit {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .content-wrapper-four-morgenroutines-productiviteit {
    flex-direction: column-reverse;
  }

  .content-text-four-morgenroutines-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-four-morgenroutines-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-img-four-morgenroutines-productiviteit {
    max-height: 300px;
  }
}

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

.conclusion-section-morgenroutines-productiviteit::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.conclusion-content-morgenroutines-productiviteit {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

.conclusion-text-morgenroutines-productiviteit {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.conclusion-tips-morgenroutines-productiviteit {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin: 2rem 0;
}

.tip-card-morgenroutines-productiviteit {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.tip-card-morgenroutines-productiviteit:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.tip-icon-morgenroutines-productiviteit {
  font-size: 2rem;
  color: #3b82f6;
}

.tip-title-morgenroutines-productiviteit {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.tip-text-morgenroutines-productiviteit {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.conclusion-closing-morgenroutines-productiviteit {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .conclusion-tips-morgenroutines-productiviteit {
    flex-direction: column;
  }

  .tip-card-morgenroutines-productiviteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.related-header-morgenroutines-productiviteit {
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-subtitle-morgenroutines-productiviteit {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #64748b;
  line-height: 1.6;
}

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

.related-card-morgenroutines-productiviteit {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-morgenroutines-productiviteit:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.related-card-image-morgenroutines-productiviteit {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

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

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

.related-card-title-morgenroutines-productiviteit {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.related-card-text-morgenroutines-productiviteit {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  flex-grow: 1;
}

.related-card-link-morgenroutines-productiviteit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  padding-top: 0;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.related-card-link-morgenroutines-productiviteit:hover {
  color: #2563eb;
}

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

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

.disclaimer-content-morgenroutines-productiviteit {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-morgenroutines-productiviteit {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-morgenroutines-productiviteit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  line-height: 1.7;
  text-align: left;
}

@media (min-width: 769px) and (max-width: 1023px) {
  .hero-wrapper-morgenroutines-productiviteit,
  .intro-content-wrapper-morgenroutines-productiviteit,
  .content-wrapper-one-morgenroutines-productiviteit,
  .content-wrapper-two-morgenroutines-productiviteit,
  .content-wrapper-three-morgenroutines-productiviteit,
  .content-wrapper-four-morgenroutines-productiviteit {
    gap: clamp(1.5rem, 3vw, 3rem);
  }
}

@media (max-width: 480px) {
  .breadcrumbs-morgenroutines-productiviteit {
    font-size: 0.75rem;
  }

  .hero-meta-morgenroutines-productiviteit {
    gap: 0.75rem;
  }

  .meta-badge-morgenroutines-productiviteit {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .conclusion-tips-morgenroutines-productiviteit {
    gap: 1rem;
  }

  .tip-card-morgenroutines-productiviteit {
    padding: 1.25rem;
  }

  .tip-icon-morgenroutines-productiviteit {
    font-size: 1.5rem;
  }

  .quote-morgenroutines-productiviteit {
    padding: 1.25rem;
    border-left: 3px solid #3b82f6;
  }

  .quote-text-morgenroutines-productiviteit {
    font-size: 1rem;
  }
}

.main-tijdsblokkeering-strategie {
  width: 100%;
}

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

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

.hero-text-block-tijdsblokkeering-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-tijdsblokkeering-strategie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}

.meta-badge-tijdsblokkeering-strategie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #bfdbfe;
}

.meta-badge-tijdsblokkeering-strategie i {
  color: #3b82f6;
  font-size: 1rem;
}

.hero-image-block-tijdsblokkeering-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-tijdsblokkeering-strategie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.breadcrumbs-tijdsblokkeering-strategie {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-tijdsblokkeering-strategie a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-tijdsblokkeering-strategie a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.breadcrumbs-tijdsblokkeering-strategie span {
  color: #64748b;
}

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

.intro-section-tijdsblokkeering-strategie {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.intro-text-tijdsblokkeering-strategie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
  line-height: 1.7;
}

.intro-image-block-tijdsblokkeering-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-tijdsblokkeering-strategie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

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

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

.benefits-header-tijdsblokkeering-strategie {
  text-align: center;
  margin-bottom: 3rem;
}

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

.benefits-subtitle-tijdsblokkeering-strategie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-cards-tijdsblokkeering-strategie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.benefits-card-tijdsblokkeering-strategie {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-card-tijdsblokkeering-strategie:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.benefits-card-icon-tijdsblokkeering-strategie {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  color: #3b82f6;
  font-size: 1.75rem;
}

.benefits-card-title-tijdsblokkeering-strategie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.benefits-card-text-tijdsblokkeering-strategie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

.implementation-section-tijdsblokkeering-strategie {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.implementation-text-block-tijdsblokkeering-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.implementation-description-tijdsblokkeering-strategie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.implementation-steps-tijdsblokkeering-strategie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-step-tijdsblokkeering-strategie {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.implementation-step-number-tijdsblokkeering-strategie {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.implementation-step-content-tijdsblokkeering-strategie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.implementation-step-title-tijdsblokkeering-strategie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.implementation-step-text-tijdsblokkeering-strategie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.implementation-image-block-tijdsblokkeering-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-tijdsblokkeering-strategie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

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

.quote-section-tijdsblokkeering-strategie {
  background: #0c1929;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.featured-quote-tijdsblokkeering-strategie {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: 0;
  border-radius: 8px;
}

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

.quote-author-tijdsblokkeering-strategie {
  font-size: 0.875rem;
  color: #bfdbfe;
  font-style: normal;
}

.advanced-section-tijdsblokkeering-strategie {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.advanced-content-tijdsblokkeering-strategie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.advanced-image-block-tijdsblokkeering-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-image-tijdsblokkeering-strategie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.advanced-text-block-tijdsblokkeering-strategie {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.advanced-description-tijdsblokkeering-strategie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.advanced-techniques-tijdsblokkeering-strategie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.advanced-technique-tijdsblokkeering-strategie {
  padding: 1.25rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid #3b82f6;
  border-radius: 8px;
}

.advanced-technique-title-tijdsblokkeering-strategie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.advanced-technique-text-tijdsblokkeering-strategie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

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

.tools-header-tijdsblokkeering-strategie {
  text-align: center;
  margin-bottom: 3rem;
}

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

.tools-subtitle-tijdsblokkeering-strategie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.tools-item-tijdsblokkeering-strategie {
  flex: 1 1 280px;
  max-width: 340px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tools-item-tijdsblokkeering-strategie:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.tools-item-title-tijdsblokkeering-strategie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.tools-item-text-tijdsblokkeering-strategie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tools-item-tijdsblokkeering-strategie {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.conclusion-content-tijdsblokkeering-strategie {
  max-width: 800px;
  margin: 0 auto;
}

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

.conclusion-text-tijdsblokkeering-strategie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-tijdsblokkeering-strategie {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn-cta-tijdsblokkeering-strategie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #3b82f6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-cta-tijdsblokkeering-strategie:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.disclaimer-section-tijdsblokkeering-strategie {
  background: #0c1929;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.disclaimer-content-tijdsblokkeering-strategie {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
}

.disclaimer-title-tijdsblokkeering-strategie {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-tijdsblokkeering-strategie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.related-section-tijdsblokkeering-strategie {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-title-tijdsblokkeering-strategie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}

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

.related-card-tijdsblokkeering-strategie {
  flex: 1 1 320px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card-tijdsblokkeering-strategie:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.related-card-image-tijdsblokkeering-strategie {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-image-tijdsblokkeering-strategie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-tijdsblokkeering-strategie:hover .related-image-tijdsblokkeering-strategie {
  transform: scale(1.05);
}

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

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

.related-card-text-tijdsblokkeering-strategie {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-tijdsblokkeering-strategie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-tijdsblokkeering-strategie:hover {
  color: #60a5fa;
  text-decoration: underline;
}

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

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

@media (max-width: 768px) {
  .hero-content-tijdsblokkeering-strategie,
  .intro-content-tijdsblokkeering-strategie,
  .implementation-content-tijdsblokkeering-strategie,
  .advanced-content-tijdsblokkeering-strategie {
    flex-direction: column;
  }
  
  .hero-text-block-tijdsblokkeering-strategie,
  .hero-image-block-tijdsblokkeering-strategie,
  .intro-text-block-tijdsblokkeering-strategie,
  .intro-image-block-tijdsblokkeering-strategie,
  .implementation-text-block-tijdsblokkeering-strategie,
  .implementation-image-block-tijdsblokkeering-strategie,
  .advanced-text-block-tijdsblokkeering-strategie,
  .advanced-image-block-tijdsblokkeering-strategie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .hero-section-tijdsblokkeering-strategie,
  .intro-section-tijdsblokkeering-strategie,
  .implementation-section-tijdsblokkeering-strategie,
  .advanced-section-tijdsblokkeering-strategie,
  .conclusion-section-tijdsblokkeering-strategie,
  .disclaimer-section-tijdsblokkeering-strategie,
  .related-section-tijdsblokkeering-strategie,
  .tools-section-tijdsblokkeering-strategie,
  .benefits-section-tijdsblokkeering-strategie,
  .quote-section-tijdsblokkeering-strategie {
    padding: clamp(2.5rem, 6vw, 5rem) 0;
  }
}

.main-continu-leren-ontwikkeling {
  width: 100%;
  background: #0c1929;
}

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

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

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

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

.hero-subtitle-continu-leren-ontwikkeling {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.hero-meta-continu-leren-ontwikkeling {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-continu-leren-ontwikkeling {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #bfdbfe;
}

.meta-badge-continu-leren-ontwikkeling i {
  color: #3b82f6;
}

.hero-stats-continu-leren-ontwikkeling {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-item-continu-leren-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-continu-leren-ontwikkeling {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-continu-leren-ontwikkeling {
  font-size: 0.875rem;
  color: #93c5fd;
}

.hero-image-block-continu-leren-ontwikkeling {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-continu-leren-ontwikkeling {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .hero-content-continu-leren-ontwikkeling {
    flex-direction: column;
  }

  .hero-text-block-continu-leren-ontwikkeling,
  .hero-image-block-continu-leren-ontwikkeling {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-continu-leren-ontwikkeling {
    gap: 1.5rem;
  }
}

.intro-section-continu-leren-ontwikkeling {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-continu-leren-ontwikkeling {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-continu-leren-ontwikkeling {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.intro-content-continu-leren-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.intro-image-continu-leren-ontwikkeling {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-visual-continu-leren-ontwikkeling {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .intro-wrapper-continu-leren-ontwikkeling {
    flex-direction: column;
  }

  .intro-text-continu-leren-ontwikkeling,
  .intro-image-continu-leren-ontwikkeling {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-section-continu-leren-ontwikkeling {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-header-continu-leren-ontwikkeling {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

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

.strategies-subtitle-continu-leren-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
  max-width: 600px;
  margin: 0 auto;
}

.strategies-list-continu-leren-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.strategy-step-continu-leren-ontwikkeling {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  align-items: flex-start;
}

.strategy-number-continu-leren-ontwikkeling {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.strategy-content-continu-leren-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.strategy-title-continu-leren-ontwikkeling {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.strategy-text-continu-leren-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.benefits-section-continu-leren-ontwikkeling {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-wrapper-continu-leren-ontwikkeling {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.benefits-image-continu-leren-ontwikkeling {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-visual-continu-leren-ontwikkeling {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.benefits-content-continu-leren-ontwikkeling {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

.benefits-list-continu-leren-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.benefit-item-continu-leren-ontwikkeling {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon-continu-leren-ontwikkeling {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-heading-continu-leren-ontwikkeling {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.benefit-text-continu-leren-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-wrapper-continu-leren-ontwikkeling {
    flex-direction: column;
  }

  .benefits-image-continu-leren-ontwikkeling,
  .benefits-content-continu-leren-ontwikkeling {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-continu-leren-ontwikkeling {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-header-continu-leren-ontwikkeling {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

.implementation-subtitle-continu-leren-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
}

.implementation-wrapper-continu-leren-ontwikkeling {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-continu-leren-ontwikkeling {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-paragraph-continu-leren-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.featured-quote-continu-leren-ontwikkeling {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: clamp(1rem, 2vw, 2rem) 0;
  border-radius: 8px;
}

.quote-text-continu-leren-ontwikkeling {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}

.quote-author-continu-leren-ontwikkeling {
  font-size: 0.875rem;
  color: #93c5fd;
  font-style: normal;
}

.implementation-image-continu-leren-ontwikkeling {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-visual-continu-leren-ontwikkeling {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .implementation-wrapper-continu-leren-ontwikkeling {
    flex-direction: column;
  }

  .implementation-text-continu-leren-ontwikkeling,
  .implementation-image-continu-leren-ontwikkeling {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-section-continu-leren-ontwikkeling {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-title-continu-leren-ontwikkeling {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.challenges-grid-continu-leren-ontwikkeling {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.challenge-card-continu-leren-ontwikkeling {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
}

.challenge-heading-continu-leren-ontwikkeling {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.challenge-text-continu-leren-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .challenge-card-continu-leren-ontwikkeling {
    flex: 1 1 100%;
  }
}

.cta-section-continu-leren-ontwikkeling {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-continu-leren-ontwikkeling {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
}

.cta-title-continu-leren-ontwikkeling {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.cta-text-continu-leren-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  line-height: 1.7;
}

.cta-button-continu-leren-ontwikkeling {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #0c1929;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button-continu-leren-ontwikkeling:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.related-section-continu-leren-ontwikkeling {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-continu-leren-ontwikkeling {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

.related-subtitle-continu-leren-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
}

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

.related-card-continu-leren-ontwikkeling {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card-continu-leren-ontwikkeling:hover {
  transform: translateY(-4px);
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
}

.related-card-image-continu-leren-ontwikkeling {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-continu-leren-ontwikkeling {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-continu-leren-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
}

.related-card-title-continu-leren-ontwikkeling {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-continu-leren-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
  flex: 1;
}

.related-link-continu-leren-ontwikkeling {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.related-link-continu-leren-ontwikkeling:hover {
  color: #60a5fa;
}

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

.disclaimer-section-continu-leren-ontwikkeling {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-continu-leren-ontwikkeling {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.disclaimer-title-continu-leren-ontwikkeling {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.disclaimer-text-continu-leren-ontwikkeling {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

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

.breadcrumbs-continu-leren-ontwikkeling a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-continu-leren-ontwikkeling a:hover {
  color: #60a5fa;
}

.breadcrumbs-continu-leren-ontwikkeling span {
  color: #93c5fd;
}

.breadcrumbs-continu-leren-ontwikkeling span:last-child {
  color: #bfdbfe;
}

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

  .intro-section-continu-leren-ontwikkeling {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .strategies-section-continu-leren-ontwikkeling {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .benefits-section-continu-leren-ontwikkeling {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .implementation-section-continu-leren-ontwikkeling {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .challenges-section-continu-leren-ontwikkeling {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .cta-section-continu-leren-ontwikkeling {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-continu-leren-ontwikkeling {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .disclaimer-section-continu-leren-ontwikkeling {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-continu-leren-ontwikkeling {
    padding: 6rem 0;
  }

  .intro-section-continu-leren-ontwikkeling {
    padding: 6rem 0;
  }

  .strategies-section-continu-leren-ontwikkeling {
    padding: 6rem 0;
  }

  .benefits-section-continu-leren-ontwikkeling {
    padding: 6rem 0;
  }

  .implementation-section-continu-leren-ontwikkeling {
    padding: 6rem 0;
  }

  .challenges-section-continu-leren-ontwikkeling {
    padding: 6rem 0;
  }

  .cta-section-continu-leren-ontwikkeling {
    padding: 6rem 0;
  }

  .related-section-continu-leren-ontwikkeling {
    padding: 6rem 0;
  }

  .disclaimer-section-continu-leren-ontwikkeling {
    padding: 6rem 0;
  }
}

.main-mindfulness-dagelijks-welzijn {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.hero-text-block-mindfulness-dagelijks-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-mindfulness-dagelijks-welzijn {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.hero-meta-mindfulness-dagelijks-welzijn {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.meta-badge-mindfulness-dagelijks-welzijn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1.2rem);
  background: rgba(59, 130, 246, 0.12);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.meta-badge-mindfulness-dagelijks-welzijn i {
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

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

.breadcrumbs-mindfulness-dagelijks-welzijn a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-mindfulness-dagelijks-welzijn a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}

.breadcrumbs-mindfulness-dagelijks-welzijn span {
  color: var(--color-text-muted);
}

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

.hero-image-mindfulness-dagelijks-welzijn {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: clamp(12px, 3vw, 20px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  display: block;
}

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

.intro-section-mindfulness-dagelijks-welzijn {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.intro-text-mindfulness-dagelijks-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-mindfulness-dagelijks-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-description-mindfulness-dagelijks-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-mindfulness-dagelijks-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-mindfulness-dagelijks-welzijn {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(12px, 3vw, 20px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-mindfulness-dagelijks-welzijn {
    flex-direction: column;
  }
  
  .intro-text-mindfulness-dagelijks-welzijn,
  .intro-image-mindfulness-dagelijks-welzijn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.practices-header-mindfulness-dagelijks-welzijn {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.practices-tag-mindfulness-dagelijks-welzijn {
  display: inline-block;
  padding: clamp(0.3rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1.2rem);
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.practices-title-mindfulness-dagelijks-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.practices-subtitle-mindfulness-dagelijks-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.practices-steps-mindfulness-dagelijks-welzijn {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.practices-step-mindfulness-dagelijks-welzijn {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: clamp(12px, 3vw, 16px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.practices-step-mindfulness-dagelijks-welzijn:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(8px);
}

.practices-step-number-mindfulness-dagelijks-welzijn {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
}

.practices-step-content-mindfulness-dagelijks-welzijn {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.practices-step-title-mindfulness-dagelijks-welzijn {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.practices-step-text-mindfulness-dagelijks-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .practices-step-mindfulness-dagelijks-welzijn {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .practices-step-number-mindfulness-dagelijks-welzijn {
    min-width: auto;
  }
}

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

.integration-wrapper-mindfulness-dagelijks-welzijn {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.integration-image-mindfulness-dagelijks-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.integration-image-img-mindfulness-dagelijks-welzijn {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(12px, 3vw, 20px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  display: block;
}

.integration-text-mindfulness-dagelijks-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.integration-title-mindfulness-dagelijks-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.integration-quote-mindfulness-dagelijks-welzijn {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: clamp(8px, 2vw, 12px);
}

.integration-quote-text-mindfulness-dagelijks-welzijn {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.integration-quote-author-mindfulness-dagelijks-welzijn {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 768px) {
  .integration-wrapper-mindfulness-dagelijks-welzijn {
    flex-direction: column;
  }
  
  .integration-image-mindfulness-dagelijks-welzijn,
  .integration-text-mindfulness-dagelijks-welzijn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-mindfulness-dagelijks-welzijn {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.benefits-tag-mindfulness-dagelijks-welzijn {
  display: inline-block;
  padding: clamp(0.3rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1.2rem);
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.benefits-title-mindfulness-dagelijks-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

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

.benefits-card-mindfulness-dagelijks-welzijn {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: clamp(12px, 3vw, 16px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-card-mindfulness-dagelijks-welzijn:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.benefits-card-icon-mindfulness-dagelijks-welzijn {
  width: clamp(2.5rem, 5vw, 3.5rem);
  height: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: clamp(10px, 2vw, 14px);
  color: var(--color-primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.benefits-card-title-mindfulness-dagelijks-welzijn {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

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

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

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

.challenges-wrapper-mindfulness-dagelijks-welzijn {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenges-text-mindfulness-dagelijks-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-mindfulness-dagelijks-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.challenges-description-mindfulness-dagelijks-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.challenges-image-mindfulness-dagelijks-welzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-img-mindfulness-dagelijks-welzijn {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(12px, 3vw, 20px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  display: block;
}

@media (max-width: 768px) {
  .challenges-wrapper-mindfulness-dagelijks-welzijn {
    flex-direction: column;
  }
  
  .challenges-text-mindfulness-dagelijks-welzijn,
  .challenges-image-mindfulness-dagelijks-welzijn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.cta-box-mindfulness-dagelijks-welzijn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: clamp(16px, 3vw, 24px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
}

.cta-title-mindfulness-dagelijks-welzijn {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.cta-description-mindfulness-dagelijks-welzijn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button-mindfulness-dagelijks-welzijn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: clamp(10px, 2vw, 14px);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-button-mindfulness-dagelijks-welzijn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: #f0f0f0;
}

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

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

.related-title-mindfulness-dagelijks-welzijn {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.2;
}

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

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

.related-card-mindfulness-dagelijks-welzijn {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: clamp(12px, 3vw, 16px);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.related-card-mindfulness-dagelijks-welzijn:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.related-card-image-mindfulness-dagelijks-welzijn {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.related-card-image-mindfulness-dagelijks-welzijn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.related-card-content-mindfulness-dagelijks-welzijn {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.related-card-title-mindfulness-dagelijks-welzijn {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
  margin: 0;
}

.related-card-text-mindfulness-dagelijks-welzijn {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

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

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

.disclaimer-box-mindfulness-dagelijks-welzijn {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(8px, 2vw, 12px);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-mindfulness-dagelijks-welzijn {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

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

@media (min-width: 768px) {
  .hero-section-mindfulness-dagelijks-welzijn,
  .intro-section-mindfulness-dagelijks-welzijn,
  .integration-section-mindfulness-dagelijks-welzijn,
  .challenges-section-mindfulness-dagelijks-welzijn,
  .practices-section-mindfulness-dagelijks-welzijn,
  .benefits-section-mindfulness-dagelijks-welzijn,
  .related-section-mindfulness-dagelijks-welzijn,
  .cta-section-mindfulness-dagelijks-welzijn,
  .disclaimer-section-mindfulness-dagelijks-welzijn {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-mindfulness-dagelijks-welzijn,
  .intro-section-mindfulness-dagelijks-welzijn,
  .integration-section-mindfulness-dagelijks-welzijn,
  .challenges-section-mindfulness-dagelijks-welzijn,
  .practices-section-mindfulness-dagelijks-welzijn,
  .benefits-section-mindfulness-dagelijks-welzijn,
  .related-section-mindfulness-dagelijks-welzijn,
  .cta-section-mindfulness-dagelijks-welzijn,
  .disclaimer-section-mindfulness-dagelijks-welzijn {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

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

a {
  transition: color 0.3s ease;
}

.main-gezondheid-fitnesgewoontes {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

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

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

.breadcrumbs-gezondheid-fitnesgewoontes a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-gezondheid-fitnesgewoontes a:hover {
  color: var(--color-accent-light);
  text-decoration: underline;
}

.breadcrumbs-gezondheid-fitnesgewoontes span {
  color: var(--color-text-muted);
}

.breadcrumbs-gezondheid-fitnesgewoontes > span:last-child {
  color: var(--color-text-primary);
}

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

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

.hero-text-gezondheid-fitnesgewoontes {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-gezondheid-fitnesgewoontes {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-description-gezondheid-fitnesgewoontes {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.hero-meta-gezondheid-fitnesgewoontes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.meta-badge-gezondheid-fitnesgewoontes {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.375rem, 1vw, 0.5rem) clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
}

.meta-badge-gezondheid-fitnesgewoontes i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.hero-stats-gezondheid-fitnesgewoontes {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-item-gezondheid-fitnesgewoontes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-gezondheid-fitnesgewoontes {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

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

.hero-image-gezondheid-fitnesgewoontes {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-gezondheid-fitnesgewoontes {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-gezondheid-fitnesgewoontes,
  .hero-image-gezondheid-fitnesgewoontes {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-gezondheid-fitnesgewoontes {
    gap: 1.5rem;
  }
}

.intro-section-gezondheid-fitnesgewoontes {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

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

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

.intro-title-gezondheid-fitnesgewoontes {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.intro-description-gezondheid-fitnesgewoontes {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.intro-text-gezondheid-fitnesgewoontes p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.intro-image-gezondheid-fitnesgewoontes {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-gezondheid-fitnesgewoontes {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

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

.foundation-section-gezondheid-fitnesgewoontes {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.section-header-gezondheid-fitnesgewoontes {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-gezondheid-fitnesgewoontes {
  display: inline-block;
  padding: clamp(0.375rem, 1vw, 0.5rem) clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-gezondheid-fitnesgewoontes {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle-gezondheid-fitnesgewoontes {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.foundation-step-gezondheid-fitnesgewoontes {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.foundation-step-gezondheid-fitnesgewoontes:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

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

.foundation-step-content-gezondheid-fitnesgewoontes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.foundation-step-title-gezondheid-fitnesgewoontes {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.foundation-step-text-gezondheid-fitnesgewoontes {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .foundation-step-gezondheid-fitnesgewoontes {
    flex-direction: column;
    align-items: flex-start;
  }

  .foundation-step-number-gezondheid-fitnesgewoontes {
    font-size: 1.75rem;
  }
}

.implementation-section-gezondheid-fitnesgewoontes {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

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

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

.implementation-title-gezondheid-fitnesgewoontes {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.implementation-description-gezondheid-fitnesgewoontes {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.implementation-list-gezondheid-fitnesgewoontes {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.list-item-gezondheid-fitnesgewoontes {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.1);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.list-item-title-gezondheid-fitnesgewoontes {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;
}

.list-item-text-gezondheid-fitnesgewoontes {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.implementation-image-gezondheid-fitnesgewoontes {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-gezondheid-fitnesgewoontes {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .implementation-wrapper-gezondheid-fitnesgewoontes {
    flex-direction: column;
  }

  .implementation-text-gezondheid-fitnesgewoontes,
  .implementation-image-gezondheid-fitnesgewoontes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.benefits-section-gezondheid-fitnesgewoontes {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

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

.benefits-card-gezondheid-fitnesgewoontes {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-card-gezondheid-fitnesgewoontes:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.benefits-card-icon-gezondheid-fitnesgewoontes {
  width: clamp(3rem, 5vw, 4rem);
  height: clamp(3rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.benefits-card-title-gezondheid-fitnesgewoontes {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

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

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

.obstacles-section-gezondheid-fitnesgewoontes {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

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

.obstacles-image-gezondheid-fitnesgewoontes {
  flex: 1 1 50%;
  max-width: 50%;
}

.obstacles-img-gezondheid-fitnesgewoontes {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.obstacles-text-gezondheid-fitnesgewoontes {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.obstacles-title-gezondheid-fitnesgewoontes {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.featured-quote-gezondheid-fitnesgewoontes {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.featured-quote-gezondheid-fitnesgewoontes p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.featured-quote-gezondheid-fitnesgewoontes cite {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-muted);
  font-style: normal;
  display: block;
}

.obstacle-item-gezondheid-fitnesgewoontes {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-md);
}

.obstacle-title-gezondheid-fitnesgewoontes {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;
}

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

@media (max-width: 768px) {
  .obstacles-wrapper-gezondheid-fitnesgewoontes {
    flex-direction: column;
  }

  .obstacles-image-gezondheid-fitnesgewoontes,
  .obstacles-text-gezondheid-fitnesgewoontes {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-gezondheid-fitnesgewoontes {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.conclusion-content-gezondheid-fitnesgewoontes {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-gezondheid-fitnesgewoontes {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-text-gezondheid-fitnesgewoontes {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.conclusion-highlight-gezondheid-fitnesgewoontes {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-accent-light);
  line-height: 1.8;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(59, 130, 246, 0.1);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.cta-box-gezondheid-fitnesgewoontes {
  background: linear-gradient(135deg, var(--color-primary), #2563eb);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-gezondheid-fitnesgewoontes {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
}

.cta-text-gezondheid-fitnesgewoontes {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.cta-box-gezondheid-fitnesgewoontes .btn {
  background: #ffffff;
  color: var(--color-primary);
  font-weight: 600;
}

.cta-box-gezondheid-fitnesgewoontes .btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.related-section-gezondheid-fitnesgewoontes {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

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

.related-title-gezondheid-fitnesgewoontes {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.related-subtitle-gezondheid-fitnesgewoontes {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.related-card-gezondheid-fitnesgewoontes {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.related-card-gezondheid-fitnesgewoontes:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

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

.related-card-content-gezondheid-fitnesgewoontes {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-gezondheid-fitnesgewoontes {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-gezondheid-fitnesgewoontes {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.related-card-link-gezondheid-fitnesgewoontes {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  margin-top: 0.75rem;
  transition: all 0.2s ease;
}

.related-card-link-gezondheid-fitnesgewoontes:hover {
  color: var(--color-secondary);
  gap: 0.75rem;
}

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

.disclaimer-section-gezondheid-fitnesgewoontes {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: var(--color-bg-primary);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
}

.disclaimer-content-gezondheid-fitnesgewoontes {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.disclaimer-title-gezondheid-fitnesgewoontes {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 1rem 0;
}

.disclaimer-text-gezondheid-fitnesgewoontes {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-section-gezondheid-fitnesgewoontes {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .intro-section-gezondheid-fitnesgewoontes,
  .foundation-section-gezondheid-fitnesgewoontes,
  .implementation-section-gezondheid-fitnesgewoontes,
  .benefits-section-gezondheid-fitnesgewoontes,
  .obstacles-section-gezondheid-fitnesgewoontes,
  .conclusion-section-gezondheid-fitnesgewoontes,
  .related-section-gezondheid-fitnesgewoontes {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

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

  .intro-section-gezondheid-fitnesgewoontes,
  .foundation-section-gezondheid-fitnesgewoontes,
  .implementation-section-gezondheid-fitnesgewoontes,
  .benefits-section-gezondheid-fitnesgewoontes,
  .obstacles-section-gezondheid-fitnesgewoontes,
  .conclusion-section-gezondheid-fitnesgewoontes,
  .related-section-gezondheid-fitnesgewoontes {
    padding: 6rem 0;
  }
}

:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #93c5fd;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #60a5fa;
  --color-accent-light: #bfdbfe;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

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

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

.habits-journey-about {
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
}

.hero-foundation-about {
  background: var(--color-bg-primary);
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero-foundation-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.hero-foundation-title-about {
  font-size: clamp(2.25rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  font-family: var(--font-heading);
}

.hero-foundation-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

.stat-block-about {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-about {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-label-about {
  font-size: 0.875rem;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.hero-visual-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  display: block;
}

@media (min-width: 768px) {
  .hero-foundation-about {
    padding-top: clamp(5rem, 10vw, 7rem);
    padding-bottom: clamp(4rem, 10vw, 6rem);
  }
}

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

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

.philosophy-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.philosophy-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.philosophy-intro-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.principles-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.principle-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.principle-card-about:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.principle-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.principle-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
}

.principle-text-about {
  font-size: 0.9375rem;
  color: #93c5fd;
  line-height: 1.7;
}

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

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

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

.expertise-intro-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 850px;
}

.expertise-lead-about {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  font-family: var(--font-heading);
}

.expertise-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.pathways-container-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.pathway-item-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.pathway-number-about {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: 50px;
  line-height: 1;
  font-family: var(--font-heading);
}

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

.pathway-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
}

.pathway-description-about {
  font-size: 0.9375rem;
  color: #93c5fd;
  line-height: 1.6;
}

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

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

.impact-header-about {
  text-align: center;
}

.impact-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.impact-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.impact-statement-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.outcomes-wrapper-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.outcome-box-about {
  flex: 1 1 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.outcome-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-secondary);
  font-size: 1.75rem;
}

.outcome-label-about {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
}

.outcome-detail-about {
  font-size: 0.875rem;
  color: #93c5fd;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .outcome-box-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

.commitment-text-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.values-list-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.value-tag-about {
  padding: 0.5rem 1.25rem;
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 24px;
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.value-tag-about:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--color-primary);
}

.story-visual-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  display: block;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 850px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.disclaimer-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
}

.disclaimer-text-about {
  font-size: 0.9375rem;
  color: #93c5fd;
  line-height: 1.7;
  padding-left: 3rem;
}

@media (min-width: 768px) {
  .hero-foundation-about {
    padding-top: clamp(5rem, 10vw, 8rem);
    padding-bottom: clamp(4rem, 10vw, 6rem);
  }

  .philosophy-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .expertise-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .impact-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .commitment-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .disclaimer-section-about {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

@media (max-width: 768px) {
  .hero-stats-about {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .stat-block-about {
    flex: 1 1 120px;
  }

  .pathway-item-about {
    gap: 1rem;
  }

  .pathway-number-about {
    min-width: 45px;
  }

  .disclaimer-text-about {
    padding-left: 0;
  }

  .disclaimer-header-about {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.policy-portal {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
}

.policy-portal section {
  width: 100%;
  overflow: hidden;
}

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

.hero-policy {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  position: relative;
}

.hero-policy .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-policy-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
  max-width: 800px;
}

.hero-policy h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-policy-meta {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.content-policy {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
}

.content-policy .container {
  max-width: 900px;
}

.content-policy-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.policy-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 600;
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.policy-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1.5rem;
  list-style: disc;
}

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

.policy-section strong {
  color: var(--color-accent-light);
  font-weight: 600;
}

.policy-section a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

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

.contact-policy {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-tertiary);
}

.contact-policy .container {
  max-width: 900px;
}

.contact-policy-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-policy h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 600;
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.3;
}

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

.contact-policy-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-primary);
}

.contact-policy-info p {
  margin-bottom: 0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.contact-policy-info strong {
  color: var(--color-accent-light);
  font-weight: 600;
}

@media (min-width: 768px) {
  .hero-policy {
    padding: 5rem 0;
  }

  .content-policy {
    padding: 5rem 0;
  }

  .contact-policy {
    padding: 5rem 0;
  }

  .hero-policy-content {
    gap: 1.5rem;
  }

  .content-policy-inner {
    gap: 4rem;
  }

  .contact-policy-info {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-policy {
    padding: 6rem 0;
  }

  .content-policy {
    padding: 6rem 0;
  }

  .contact-policy {
    padding: 6rem 0;
  }

  .policy-section {
    gap: 1.25rem;
  }

  .contact-policy-info {
    padding: 2.5rem;
    gap: 1.25rem;
  }
}

.policy-portal h1,
.policy-portal h2,
.policy-portal h3,
.policy-portal p,
.policy-portal li {
  word-break: break-word;
  hyphens: auto;
}

.thank-you-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-you-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-you-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(2rem, 5vw, 3rem);
}

.success-icon {
  font-size: clamp(4rem, 12vw, 6.5rem);
  color: var(--color-primary);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  animation: pulse-icon 2s ease-in-out;
}

@keyframes pulse-icon {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-you-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-you-lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.5rem);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.thank-you-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-you-highlights {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
  width: 100%;
  max-width: 600px;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-2px);
}

.highlight-item i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
}

.highlight-item p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .thank-you-section {
    min-height: 100vh;
    padding: 4rem 0;
  }

  .thank-you-content {
    gap: 2.5rem;
    padding: 3rem;
  }

  .success-icon {
    margin-bottom: 1rem;
  }

  .highlight-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .highlight-item i {
    font-size: 1.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
  }

  .highlight-item p {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .thank-you-section {
    padding: 6rem 0;
  }

  .thank-you-content {
    gap: 3rem;
    padding: 4rem;
  }

  .thank-you-highlights {
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .highlight-item {
    padding: 1.5rem 2rem;
  }
}

@media (min-width: 1440px) {
  .thank-you-section {
    min-height: 100vh;
  }

  .thank-you-content {
    gap: 3rem;
  }
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  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;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.error-code-wrapper {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
}

.error-code {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
  animation: float 3s ease-in-out infinite;
}

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

.error-title {
  font-size: clamp(1.5rem, 5vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.error-message {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.7;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-muted);
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem) 0;
  line-height: 1.6;
  max-width: 550px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-actions {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: var(--font-primary);
}

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

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

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

.error-decoration {
  position: relative;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.error-decoration i {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-secondary);
  opacity: 0.4;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .error-section {
    min-height: 100vh;
  }

  .error-content {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .error-code {
    animation: float 3.5s ease-in-out infinite;
  }

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

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

@media (min-width: 1024px) {
  .error-section {
    min-height: 100vh;
  }

  .error-content {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
  }
}

@media (min-width: 1440px) {
  .error-code {
    animation: float 4s ease-in-out infinite;
  }

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

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-decoration i,
  .btn-primary {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}