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

:root {
  
  
  
  
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0d1526;
  --color-bg-dark-tertiary: #111d2f;
  
  
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  
  
  --color-bg-card-dark: rgba(20, 184, 166, 0.08);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #99f6e4;
  --color-text-dark-muted: #a5b4fc;
  
  
  --color-text-light-primary: #0a0f1e;
  --color-text-light-secondary: #374151;
  --color-text-light-muted: #6b7280;
  
  
  --color-primary: #14b8a6;
  --color-primary-hover: #0d9488;
  --color-secondary: #10b981;
  --color-accent-light: #2dd4bf;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-secondary {
  background: transparent;
  color: #000 !important;
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #000000;
}

.btn-outline {
  border: 2px solid currentColor;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(20, 184, 166, 0.1);
}

input, textarea, select {
  font-family: var(--font-primary);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

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

button[type="submit"] {
  font-family: var(--font-primary);
  background: var(--color-primary);
  color: #000000;
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
  flex-direction: row;
}

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

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

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

.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }
.gap-4 { gap: var(--space-xl); }

.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

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

.dark-section .card {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.light-section .card {
  background: var(--color-bg-card-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
}

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

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
  color: var(--color-text-dark-primary);
}

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

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

.dark-section a:hover {
  color: var(--color-accent-light);
}

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

.dark-section .btn-secondary:hover {
  background: var(--color-primary);
  color: #000000;
  border-color: var(--color-primary);
}

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

.light-section h1,
.light-section h2,
.light-section h3,
.light-section h4,
.light-section h5,
.light-section h6 {
  color: var(--color-text-light-primary);
}

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

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

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

.light-section .btn-secondary {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

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

.decoration-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.decoration-line {
  position: absolute;
  background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
  opacity: 0.15;
  pointer-events: none;
}

.decoration-dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.badge-primary {
  background: rgba(20, 184, 166, 0.2);
  color: var(--color-primary);
}

.badge-light {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-text-light-primary);
}

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

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

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

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

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

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

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

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

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

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.bg-dark-primary {
  background: var(--color-bg-dark-primary);
}

.bg-dark-secondary {
  background: var(--color-bg-dark-secondary);
}

.bg-dark-tertiary {
  background: var(--color-bg-dark-tertiary);
}

.bg-light-primary {
  background: var(--color-bg-light-primary);
}

.bg-light-secondary {
  background: var(--color-bg-light-secondary);
}

.bg-light-tertiary {
  background: var(--color-bg-light-tertiary);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.icon-lg {
  width: 3rem;
  height: 3rem;
  font-size: 1.75rem;
}

.icon-xl {
  width: 4rem;
  height: 4rem;
  font-size: 2.25rem;
}

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

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

ul, ol {
  list-style: none;
}

.list-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md) 0;
}

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

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

.text-muted { opacity: 0.7; }
.text-bold { font-weight: 700; }
.text-semibold { font-weight: 600; }

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.p-1 { padding: var(--space-sm); }
.p-2 { padding: var(--space-md); }
.p-3 { padding: var(--space-lg); }
.p-4 { padding: var(--space-xl); }

.m-1 { margin: var(--space-sm); }
.m-2 { margin: var(--space-md); }
.m-3 { margin: var(--space-lg); }
.m-4 { margin: var(--space-xl); }

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

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0d1526;
  --color-bg-dark-tertiary: #111d2f;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(20, 184, 166, 0.08);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #99f6e4;
  --color-text-dark-muted: #a5b4fc;
  --color-text-light-primary: #0a0f1e;
  --color-text-light-secondary: #374151;
  --color-text-light-muted: #6b7280;
  --color-primary: #14b8a6;
  --color-primary-hover: #0d9488;
  --color-secondary: #10b981;
  --color-accent-light: #2dd4bf;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

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

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

.header-habits-forge {
  position: static;
  background: var(--color-bg-dark-primary);
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
  z-index: 100;
}

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

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

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

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

.header-habits-forge-desktop-nav {
  display: none;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  flex: 1;
}

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

.header-habits-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-habits-forge-nav-link:hover {
  color: var(--color-text-dark-primary);
}

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

.header-habits-forge-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #0a0f1e;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

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

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

.header-habits-forge-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-text-dark-secondary);
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.25rem;
}

.header-habits-forge-mobile-toggle:hover {
  color: var(--color-text-dark-primary);
  border-color: rgba(20, 184, 166, 0.4);
}

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

.header-habits-forge-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-dark-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  padding-top: 80px;
}

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

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

.header-habits-forge-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-text-dark-secondary);
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.25rem;
}

.header-habits-forge-mobile-close:hover {
  color: var(--color-text-dark-primary);
  border-color: rgba(20, 184, 166, 0.4);
}

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

.header-habits-forge-mobile-link {
  padding: 1rem 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-habits-forge-mobile-link:first-child {
  border-top: 1px solid rgba(20, 184, 166, 0.1);
}

.header-habits-forge-mobile-link:hover {
  color: var(--color-text-dark-primary);
}

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

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

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

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

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

@media (min-width: 768px) {
  .header-habits-forge-container {
    padding: 1.25rem clamp(1.5rem, 5vw, 2.5rem);
  }

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

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

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

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

@media (min-width: 1024px) {
  .header-habits-forge-container {
    padding: 1.5rem clamp(2rem, 6vw, 3rem);
  }

  .header-habits-forge-logo-img {
    width: 44px;
    height: 44px;
  }

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

  .header-habits-forge-nav-link {
    font-size: 0.9375rem;
  }

  .header-habits-forge-cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

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

    .habits-portal {
  width: 100%;
}

.hero-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

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

.hero-deco-glow-right {
  position: absolute;
  bottom: 100px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-top {
  position: absolute;
  top: 50px;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(20, 184, 166, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-deco-shape-bottom {
  position: absolute;
  bottom: -50px;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.03);
  border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-deco-line-accent {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-deco-float-panel {
  position: absolute;
  top: 15%;
  right: 8%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(20, 184, 166, 0.1);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

.hero-deco-corner-accent {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 120px;
  height: 120px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-title-index {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}

.hero-subtitle-index {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

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

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

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

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

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

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

.benefits-deco-mesh {
  position: absolute;
  top: -50px;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.benefits-deco-glow-1 {
  position: absolute;
  top: 30%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.benefits-deco-shape {
  position: absolute;
  top: 40%;
  left: 8%;
  width: 180px;
  height: 180px;
  background: rgba(20, 184, 166, 0.03);
  border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
  z-index: 2;
  pointer-events: none;
}

.benefits-deco-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.benefits-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

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

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

.benefits-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #14b8a6;
}

.benefits-card-icon-index {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.12);
  color: #14b8a6;
  border-radius: 10px;
  font-size: 1.5rem;
}

.benefits-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

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

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

.featured-deco-blob-1 {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: rgba(20, 184, 166, 0.04);
  border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

.featured-deco-blob-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 70% 30% 60% 40% / 30% 70% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.featured-deco-glow {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-deco-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.featured-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

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

.featured-card-index {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: #14b8a6;
}

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

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

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

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

.featured-card-link-index {
  color: #14b8a6;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 300ms ease;
  text-decoration: none;
}

.featured-card-link-index:hover {
  color: #0d9488;
  transform: translateX(3px);
}

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

.featured-all-link-index {
  display: inline-block;
  padding: 1rem 2rem;
  background: #14b8a6;
  color: #000000;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease;
}

.featured-all-link-index:hover {
  background: #0d9488;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
}

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

.process-deco-gradient {
  position: absolute;
  top: 0;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
}

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

.process-deco-circle-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-accent {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: rgba(20, 184, 166, 0.03);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

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

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

.process-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.process-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

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

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

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

.process-step-index:hover {
  border-color: #14b8a6;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.08);
}

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

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

.process-step-title-index {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

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

.approach-section-index {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.approach-deco-wave {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

.approach-deco-glow-right {
  position: absolute;
  top: 30%;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.approach-deco-shape {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 180px;
  height: 180px;
  background: rgba(20, 184, 166, 0.03);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

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

.approach-text-block-index {
  flex: 1 1 400px;
  min-width: 0;
}

.approach-title-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
}

.approach-intro-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.6;
}

.approach-quote-index {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #14b8a6;
  background: rgba(20, 184, 166, 0.08);
  margin: clamp(1.5rem, 2vw, 2rem) 0;
  border-radius: 8px;
}

.approach-quote-index p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.6;
}

.approach-quote-index cite {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.approach-text-index {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.approach-features-index {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.approach-feature-item-index {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.approach-feature-icon-index {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  color: #14b8a6;
  border-radius: 8px;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.approach-feature-text-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.approach-feature-title-index {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: #0f172a;
}

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

@media (max-width: 768px) {
  .approach-content-index {
    flex-direction: column;
  }
  
  .approach-text-block-index,
  .approach-features-index {
    flex: 1 1 100%;
  }
}

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

.testimonials-deco-mesh {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

.testimonials-deco-shape-1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.03);
  border-radius: 50% 30% 60% 40% / 30% 50% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-deco-shape-2 {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: rgba(20, 184, 166, 0.02);
  border-radius: 40% 60% 50% 40% / 50% 40% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

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

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

.testimonials-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonials-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

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

.testimonials-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 300ms ease;
}

.testimonials-card-index:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #14b8a6;
}

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

.testimonials-stars-index i {
  color: #f59e0b;
  font-size: 1rem;
}

.testimonials-quote-index {
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  color: #0f172a;
  line-height: 1.6;
  font-style: italic;
}

.testimonials-author-index {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 0.5rem;
}

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

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

.cta-deco-glow-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  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;
}

.cta-deco-accent {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.cta-content-index {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-text-index {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.6;
}

.cta-button-index {
  display: inline-block;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
  background: #14b8a6;
  color: #000000;
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button-index:hover {
  background: #0d9488;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.3);
}

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

.contact-deco-mesh-1 {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.05) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-mesh-2 {
  position: absolute;
  bottom: 50px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-glow {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.contact-title-index {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
}

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

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

.contact-label-index {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #0f172a;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 300ms ease;
}

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
  background: #ffffff;
}

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

.contact-submit-index {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #14b8a6;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
}

.contact-submit-index:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.2);
}

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

.contact-info-title-index {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.contact-faq-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 1.5vw, 1.25rem);
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 300ms ease;
}

.contact-faq-item-index:hover {
  border-color: #14b8a6;
  background: #ffffff;
}

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

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

.contact-privacy-note-index {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.6;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.contact-privacy-link-index {
  color: #14b8a6;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease;
}

.contact-privacy-link-index:hover {
  color: #0d9488;
  text-decoration: underline;
}

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

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

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

.cookie-banner-text {
  color: #e2e8f0;
  font-size: 0.875rem;
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
  text-align: center;
  line-height: 1.5;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  transition: all 300ms ease;
  font-family: var(--font-primary);
}

.cookie-btn-accept {
  background: #14b8a6;
  color: #000000;
}

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

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

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

@media (max-width: 768px) {
  .hero-buttons-index {
    gap: 1rem;
  }
  
  .hero-stat-number-index {
    font-size: 1.5rem;
  }
  
  .cookie-banner-text {
    flex: 1 1 100%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.25rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: 10px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  text-decoration: none;
}

.btn-primary {
  background: #14b8a6;
  color: #000000;
}

.btn-primary:hover {
  background: #0d9488;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.25);
}

.btn-secondary {
  background: transparent;
  color: #14b8a6;
  border-color: #14b8a6;
}

.btn-secondary:hover {
  background: #14b8a6;
  color: #000000;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.2);
}

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

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

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

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

.footer-content {
  display: block;
}

.footer-about {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(20, 184, 166, 0.15);
}

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

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

.footer-navigation-section,
.footer-contact-section,
.footer-legal-section {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

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

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

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

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

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

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

.footer-contact {
  display: block;
}

.footer-contact-item {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-dark-muted);
  margin-bottom: 0.875rem;
  line-height: 1.6;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

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

.footer-contact-value {
  display: block;
  color: var(--color-text-dark-muted);
}

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

.footer-legal-link {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.875rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

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

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

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

.footer-copyright-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.875rem);
  color: rgba(165, 180, 252, 0.6);
  letter-spacing: 0.3px;
}

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

  .footer-about {
    grid-column: 1 / -1;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }

  .footer-navigation-section,
  .footer-contact-section {
    grid-column: span 1;
  }

  .footer-legal-section {
    grid-column: 1 / -1;
  }

  .footer-legal-links {
    gap: clamp(2rem, 5vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
  }

  .footer-about {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid rgba(20, 184, 166, 0.15);
    padding-right: clamp(2rem, 4vw, 3rem);
  }

  .footer-navigation-section,
  .footer-contact-section,
  .footer-legal-section {
    margin-bottom: 0;
  }

  .footer-legal-section {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(20, 184, 166, 0.1);
    padding-top: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(2rem, 4vw, 3rem);
  }

  .footer-copyright {
    grid-column: 1 / -1;
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid rgba(20, 184, 166, 0.1);
    margin-top: clamp(2rem, 4vw, 2.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-nav-link,
  .footer-nav-link::after,
  .footer-legal-link {
    transition-duration: 0.01ms !important;
  }
}
    

.main.category-page-positive-habits {
  width: 100%;
  overflow: hidden;
}

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

.decoration-glow-hero-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.decoration-shape-hero-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 20%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.decoration-accent-hero {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.3), transparent);
  bottom: 15%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-text-block-positive-habits {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-title-positive-habits {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle-positive-habits {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a5b4fc;
  line-height: 1.6;
}

.hero-stats-positive-habits {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.stat-item-positive-habits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-positive-habits {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
}

.stat-label-positive-habits {
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  color: #94a3b8;
  font-weight: 500;
}

.hero-buttons-positive-habits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.hero-visual-positive-habits {
  flex: 1 1 350px;
  min-height: 350px;
  position: relative;
}

.hero-image-positive-habits {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero-content-positive-habits {
    flex-direction: column;
  }
  
  .hero-visual-positive-habits {
    min-height: 300px;
  }
}

.posts-section-positive-habits {
  background: #ffffff;
  padding: clamp(4rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.decoration-shape-posts-1 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  bottom: 10%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

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

.section-tag-positive-habits {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(20, 184, 166, 0.1);
  color: #0d9488;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.posts-subtitle-positive-habits {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.card-positive-habits {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-positive-habits:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(20, 184, 166, 0.3);
}

.card-image-positive-habits {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

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

.card-description-positive-habits {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-positive-habits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.75rem 0 0.5rem 0;
  border-top: 1px solid #f1f5f9;
}

.meta-badge-positive-habits {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(20, 184, 166, 0.08);
  color: #0d9488;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
}

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

.card-positive-habits .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

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

.features-section-positive-habits {
  background: #f8fafc;
  padding: clamp(4rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.decoration-glow-features-1 {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.decoration-shape-features-1 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 5%;
  left: -50px;
  z-index: 1;
  pointer-events: none;
}

.decoration-accent-features {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(20, 184, 166, 0.1);
  border-radius: 50%;
  top: 15%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.features-content-positive-habits {
  position: relative;
  z-index: 10;
}

.features-header-positive-habits {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.features-header-positive-habits .section-tag-positive-habits {
  background: rgba(20, 184, 166, 0.12);
  color: #0d9488;
}

.features-title-positive-habits {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0a0f1e;
}

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

.feature-card-positive-habits {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.35s ease;
}

.feature-card-positive-habits:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon-positive-habits {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.12);
  border-radius: 10px;
  color: #0d9488;
  font-size: 1.5rem;
}

.feature-icon-positive-helpful {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 10px;
  color: #059669;
  font-size: 1.5rem;
}

.feature-card-title-positive-habits {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0a0f1e;
}

.feature-card-text-positive-habits {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

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

.impact-section-positive-habits {
  background: #0a0f1e;
  padding: clamp(4rem, 10vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.decoration-glow-impact {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.impact-content-positive-habits {
  position: relative;
  z-index: 10;
}

.impact-title-positive-habits {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.impact-quote-positive-habits {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #14b8a6;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 8px;
  margin: clamp(2rem, 5vw, 3rem) auto;
  max-width: 700px;
}

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

.impact-quote-author-positive-habits {
  font-size: 0.9375rem;
  color: #a5b4fc;
  font-style: normal;
}

.impact-steps-positive-habits {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(3rem, 6vw, 4rem);
}

.impact-step-positive-habits {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.05);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.impact-step-positive-habits:hover {
  background: rgba(20, 184, 166, 0.08);
  border-color: rgba(20, 184, 166, 0.3);
}

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

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

.step-title-positive-habits {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.step-text-positive-habits {
  font-size: 0.9375rem;
  color: #a5b4fc;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .impact-step-positive-habits {
    gap: 1rem;
    padding: 1.25rem;
  }
}

.cta-section-positive-habits {
  background: linear-gradient(135deg, #0a0f1e 0%, #111d2f 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.cta-title-positive-habits {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-description-positive-habits {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #a5b4fc;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.btn-large-positive-habits {
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.75rem) !important;
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem) !important;
}

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

.btn-primary {
  background: #14b8a6;
  color: #000000;
}

.btn-primary:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.btn-primary:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #14b8a6;
  color: #14b8a6;
}

.hero-section-positive-habits .btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.hero-section-positive-habits .btn-secondary:hover {
  background: #14b8a6;
  border-color: #14b8a6;
  color: #000000;
}

@media (max-width: 768px) {
  .hero-stats-positive-habits {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
  
  .posts-grid-positive-habits {
    gap: 1.25rem;
  }
  
  .features-cards-positive-habits {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-content-positive-habits {
    gap: 3rem;
  }
  
  .card-positive-habits {
    flex: 1 1 350px;
    max-width: 400px;
  }
}

:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

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

.main-effectief-tijdbeheer {
  width: 100%;
  background: #ffffff;
}

.breadcrumbs-effectief-tijdbeheer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-effectief-tijdbeheer {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.breadcrumb-link-effectief-tijdbeheer:hover {
  color: #14b8a6;
}

.breadcrumb-separator-effectief-tijdbeheer {
  color: #475569;
}

.breadcrumb-current-effectief-tijdbeheer {
  color: #14b8a6;
  font-weight: 600;
}

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

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

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

.hero-text-block-effectief-tijdbeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-effectief-tijdbeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-meta-effectief-tijdbeheer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta-badge-effectief-tijdbeheer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: #2dd4bf;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title-effectief-tijdbeheer {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

.hero-stats-effectief-tijdbeheer {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2.5rem;
}

.stat-item-effectief-tijdbeheer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-effectief-tijdbeheer {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
}

.stat-label-effectief-tijdbeheer {
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-image-effectief-tijdbeheer {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
}

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

  .hero-text-block-effectief-tijdbeheer,
  .hero-image-block-effectief-tijdbeheer {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-effectief-tijdbeheer {
    gap: 1.5rem;
  }
}

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

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

.introduction-content-effectief-tijdbeheer {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-effectief-tijdbeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-effectief-tijdbeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-effectief-tijdbeheer {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-effectief-tijdbeheer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-highlight-effectief-tijdbeheer {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #f1f5f9;
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
  margin-top: 2rem;
}

.highlight-text-effectief-tijdbeheer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #0a0f1e;
  line-height: 1.7;
}

.intro-image-effectief-tijdbeheer {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .introduction-content-effectief-tijdbeheer {
    flex-direction: column;
  }

  .introduction-text-effectief-tijdbeheer,
  .introduction-image-effectief-tijdbeheer {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fundamentals-section-effectief-tijdbeheer {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.fundamentals-header-effectief-tijdbeheer {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-effectief-tijdbeheer {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  color: #2dd4bf;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.fundamentals-title-effectief-tijdbeheer {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.fundamentals-subtitle-effectief-tijdbeheer {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.fundamentals-steps-effectief-tijdbeheer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-effectief-tijdbeheer {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-item-effectief-tijdbeheer:hover {
  background: rgba(20, 184, 166, 0.12);
  transform: translateX(8px);
}

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

.step-content-effectief-tijdbeheer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-effectief-tijdbeheer {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
}

.step-text-effectief-tijdbeheer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #a5b4fc;
  line-height: 1.7;
}

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

  .step-number-effectief-tijdbeheer {
    min-width: auto;
  }
}

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

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

.techniques-header-effectief-tijdbeheer {
  text-align: center;
  margin-bottom: 3rem;
}

.techniques-title-effectief-tijdbeheer {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 800;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

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

.techniques-wrapper-effectief-tijdbeheer {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.technique-left-effectief-tijdbeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-right-effectief-tijdbeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.technique-heading-effectief-tijdbeheer {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.technique-heading-effectief-tijdbeheer:first-child {
  margin-top: 0;
}

.technique-text-effectief-tijdbeheer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.technique-image-effectief-tijdbeheer {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .techniques-wrapper-effectief-tijdbeheer {
    flex-direction: column;
  }

  .technique-left-effectief-tijdbeheer,
  .technique-right-effectief-tijdbeheer {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-effectief-tijdbeheer {
  background: #111d2f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.implementation-header-effectief-tijdbeheer {
  text-align: center;
  margin-bottom: 3rem;
}

.implementation-title-effectief-tijdbeheer {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.implementation-subtitle-effectief-tijdbeheer {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
}

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

.implementation-left-effectief-tijdbeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-right-effectief-tijdbeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-effectief-tijdbeheer {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
}

.implementation-list-effectief-tijdbeheer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-day-effectief-tijdbeheer {
  padding: 1.5rem;
  background: rgba(20, 184, 166, 0.08);
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
}

.day-title-effectief-tijdbeheer {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: #2dd4bf;
  margin-bottom: 0.5rem;
}

.day-text-effectief-tijdbeheer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .implementation-wrapper-effectief-tijdbeheer {
    flex-direction: column;
  }

  .implementation-left-effectief-tijdbeheer,
  .implementation-right-effectief-tijdbeheer {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.results-header-effectief-tijdbeheer {
  text-align: center;
  margin-bottom: 3rem;
}

.results-title-effectief-tijdbeheer {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.results-subtitle-effectief-tijdbeheer {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
}

.results-grid-effectief-tijdbeheer {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.result-card-effectief-tijdbeheer {
  flex: 1 1 calc(50% - 0.75rem);
  max-width: calc(50% - 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.result-card-effectief-tijdbeheer:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #14b8a6;
}

.result-period-effectief-tijdbeheer {
  font-size: 0.875rem;
  font-weight: 700;
  color: #14b8a6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-title-effectief-tijdbeheer {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0a0f1e;
}

.result-text-effectief-tijdbeheer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .result-card-effectief-tijdbeheer {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-content-effectief-tijdbeheer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-quote-effectief-tijdbeheer {
  padding: 2rem 2.5rem;
  border-left: 4px solid #14b8a6;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 8px;
}

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

.quote-author-effectief-tijdbeheer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  font-style: normal;
  opacity: 0.85;
}

.conclusion-title-effectief-tijdbeheer {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.conclusion-description-effectief-tijdbeheer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-button-effectief-tijdbeheer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #14b8a6;
  color: #0a0f1e;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 1rem;
}

.cta-button-effectief-tijdbeheer:hover {
  background: #0d9488;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

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

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

.related-header-effectief-tijdbeheer {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-effectief-tijdbeheer {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.related-subtitle-effectief-tijdbeheer {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
}

.related-cards-effectief-tijdbeheer {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-effectief-tijdbeheer {
  flex: 1 1 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.related-card-effectief-tijdbeheer:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #14b8a6;
}

.related-image-effectief-tijdbeheer {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

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

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

.related-content-effectief-tijdbeheer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.related-card-title-effectief-tijdbeheer {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.4;
}

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

@media (max-width: 1024px) {
  .related-card-effectief-tijdbeheer {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

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

.disclaimer-section-effectief-tijdbeheer {
  background: #0d1526;
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

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

.disclaimer-content-effectief-tijdbeheer {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 10px;
}

.disclaimer-title-effectief-tijdbeheer {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #2dd4bf;
  margin-bottom: 1rem;
}

.disclaimer-text-effectief-tijdbeheer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .container {
    padding-left: clamp(1rem, 3vw, 1.5rem);
    padding-right: clamp(1rem, 3vw, 1.5rem);
  }
}

@media (max-width: 768px) {
  .hero-stats-effectief-tijdbeheer {
    flex-direction: column;
    gap: 1rem;
  }

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

  .step-item-effectief-tijdbeheer {
    padding: 1.5rem;
  }

  .result-card-effectief-tijdbeheer {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-effectief-tijdbeheer {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

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

  .meta-badge-effectief-tijdbeheer {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .hero-meta-effectief-tijdbeheer {
    gap: 0.75rem;
  }

  .fundamentals-steps-effectief-tijdbeheer {
    gap: 1rem;
  }

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

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

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

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

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

.main-mindfulness-routine {
  width: 100%;
}

.breadcrumbs-mindfulness-routine {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-mindfulness-routine {
  color: var(--color-accent-light);
  transition: color 0.3s ease;
}

.breadcrumb-link-mindfulness-routine:hover {
  color: #ffffff;
}

.breadcrumb-separator-mindfulness-routine {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current-mindfulness-routine {
  color: rgba(255, 255, 255, 0.7);
}

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

.hero-content-mindfulness-routine {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.hero-text-wrapper-mindfulness-routine {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-mindfulness-routine {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-meta-mindfulness-routine {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-mindfulness-routine {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-accent-light);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-mindfulness-routine i {
  font-size: 1rem;
}

.hero-stats-mindfulness-routine {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.stat-item-mindfulness-routine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-mindfulness-routine {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-mindfulness-routine {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-image-wrapper-mindfulness-routine {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-mindfulness-routine {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-mindfulness-routine {
    flex-direction: column;
    gap: 2rem;
  }

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

  .hero-image-mindfulness-routine {
    max-height: 300px;
  }

  .hero-stats-mindfulness-routine {
    gap: 1.5rem;
  }
}

.intro-section-mindfulness-routine {
  background: var(--color-bg-light-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

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

.intro-description-mindfulness-routine {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.intro-image-tag-mindfulness-routine {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-mindfulness-routine {
    flex-direction: column;
    gap: 2rem;
  }

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

  .intro-image-tag-mindfulness-routine {
    max-height: 300px;
  }
}

.foundations-section-mindfulness-routine {
  background: var(--color-bg-dark-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.foundations-header-mindfulness-routine {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag-mindfulness-routine {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.2);
  color: var(--color-accent-light);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundations-title-mindfulness-routine {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.foundations-subtitle-mindfulness-routine {
  color: var(--color-text-dark-muted);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.foundations-steps-mindfulness-routine {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.foundations-step-mindfulness-routine {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(20, 184, 166, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.15);
}

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

.foundations-step-content-mindfulness-routine {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.foundations-step-title-mindfulness-routine {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.foundations-step-text-mindfulness-routine {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .foundations-step-mindfulness-routine {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .foundations-step-number-mindfulness-routine {
    min-width: auto;
  }
}

.practices-section-mindfulness-routine {
  background: var(--color-bg-light-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practices-header-mindfulness-routine {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag-practices-mindfulness-routine {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.practices-title-mindfulness-routine {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.practices-content-mindfulness-routine {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: flex-start;
}

.practices-text-mindfulness-routine {
  flex: 1 1 50%;
  max-width: 50%;
}

.practices-content-title-mindfulness-routine {
  color: var(--color-text-light-primary);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.practice-item-mindfulness-routine {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.practice-item-mindfulness-routine:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.practice-item-title-mindfulness-routine {
  color: var(--color-text-light-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.practice-item-text-mindfulness-routine {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

.practices-image-mindfulness-routine {
  flex: 1 1 50%;
  max-width: 50%;
}

.practices-image-tag-mindfulness-routine {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .practices-content-mindfulness-routine {
    flex-direction: column;
    gap: 2rem;
  }

  .practices-text-mindfulness-routine,
  .practices-image-mindfulness-routine {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practices-image-tag-mindfulness-routine {
    max-height: 300px;
  }
}

.integration-section-mindfulness-routine {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.integration-content-mindfulness-routine {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: center;
}

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

.integration-image-tag-mindfulness-routine {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: block;
}

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

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

.integration-description-mindfulness-routine {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.integration-tips-mindfulness-routine {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.integration-tip-mindfulness-routine {
  padding: 1.25rem;
  background: rgba(20, 184, 166, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.integration-tip-title-mindfulness-routine {
  color: var(--color-text-dark-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.integration-tip-text-mindfulness-routine {
  color: var(--color-text-dark-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .integration-content-mindfulness-routine {
    flex-direction: column;
    gap: 2rem;
  }

  .integration-image-mindfulness-routine,
  .integration-text-mindfulness-routine {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .integration-image-tag-mindfulness-routine {
    max-height: 300px;
  }
}

.benefits-section-mindfulness-routine {
  background: var(--color-bg-light-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-header-mindfulness-routine {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag-benefits-mindfulness-routine {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefits-title-mindfulness-routine {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.benefits-subtitle-mindfulness-routine {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.benefits-card-mindfulness-routine {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-card-mindfulness-routine:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefits-card-icon-mindfulness-routine {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.75rem;
}

.benefits-card-title-mindfulness-routine {
  color: var(--color-text-light-primary);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.benefits-card-text-mindfulness-routine {
  color: var(--color-text-light-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex-grow: 1;
}

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

.quote-section-mindfulness-routine {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-mindfulness-routine {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-left: 5px solid var(--color-primary);
  background: rgba(20, 184, 166, 0.08);
  border-radius: var(--radius-md);
}

.quote-text-mindfulness-routine {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-mindfulness-routine {
  color: var(--color-text-dark-secondary);
  font-size: 0.9375rem;
  font-style: normal;
}

.getting-started-section-mindfulness-routine {
  background: var(--color-bg-light-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.getting-started-header-mindfulness-routine {
  text-align: center;
  margin-bottom: 3.5rem;
}

.getting-started-title-mindfulness-routine {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.getting-started-subtitle-mindfulness-routine {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.getting-started-content-mindfulness-routine {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 4rem);
  align-items: flex-start;
}

.getting-started-text-mindfulness-routine {
  flex: 1 1 50%;
  max-width: 50%;
}

.getting-started-content-title-mindfulness-routine {
  color: var(--color-text-light-primary);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.getting-started-content-text-mindfulness-routine {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.getting-started-list-mindfulness-routine {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.getting-started-list-item-mindfulness-routine {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.getting-started-list-item-mindfulness-routine::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.list-label-mindfulness-routine {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

.getting-started-image-mindfulness-routine {
  flex: 1 1 50%;
  max-width: 50%;
}

.getting-started-image-tag-mindfulness-routine {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .getting-started-content-mindfulness-routine {
    flex-direction: column;
    gap: 2rem;
  }

  .getting-started-text-mindfulness-routine,
  .getting-started-image-mindfulness-routine {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .getting-started-image-tag-mindfulness-routine {
    max-height: 300px;
  }
}

.cta-section-mindfulness-routine {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.cta-box-mindfulness-routine {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(16, 185, 129, 0.1));
  border: 2px solid rgba(20, 184, 166, 0.3);
  border-radius: var(--radius-xl);
}

.cta-title-mindfulness-routine {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-description-mindfulness-routine {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-primary-mindfulness-routine {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  font-weight: 600;
  background: var(--color-primary);
  color: #0a0f1e;
  border: none;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: var(--font-primary);
}

.btn-primary-mindfulness-routine:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.disclaimer-section-mindfulness-routine {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-box-mindfulness-routine {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: #f0fdf4;
  border-left: 5px solid var(--color-secondary);
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.disclaimer-title-mindfulness-routine {
  color: #065f46;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-mindfulness-routine {
  color: #374151;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

.related-section-mindfulness-routine {
  background: var(--color-bg-light-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-mindfulness-routine {
  text-align: center;
  margin-bottom: 3.5rem;
}

.related-title-mindfulness-routine {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.related-subtitle-mindfulness-routine {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-mindfulness-routine {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-mindfulness-routine:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-mindfulness-routine {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e5e7eb;
}

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

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

.related-card-title-mindfulness-routine {
  color: var(--color-text-light-primary);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-mindfulness-routine {
  color: var(--color-text-light-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-mindfulness-routine {
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
  display: inline-block;
}

.related-card-link-mindfulness-routine:hover {
  color: var(--color-primary-hover);
}

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

@media (max-width: 768px) {
  .hero-stats-mindfulness-routine {
    gap: 1.5rem;
  }

  .stat-number-mindfulness-routine {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
}

.main-gezonde-eetgewoonten {
  width: 100%;
  background: #ffffff;
}

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

section {
  width: 100%;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

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

h3 {
  font-size: clamp(1.125rem, 3vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}

.btn-primary-gezonde-eetgewoonten {
  background: #14b8a6;
  color: #000000;
}

.btn-primary-gezonde-eetgewoonten:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.hero-section-gezonde-eetgewoonten {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.hero-text-block-gezonde-eetgewoonten {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-image-gezonde-eetgewoonten {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-img-gezonde-eetgewoonten {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.hero-title-gezonde-eetgewoonten {
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-subtitle-gezonde-eetgewoonten {
  color: #a5b4fc;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.meta-badge-gezonde-eetgewoonten {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  color: #a5b4fc;
  border-radius: 20px;
  font-size: 0.875rem;
}

.meta-badge-gezonde-eetgewoonten i {
  color: #8b5cf6;
}

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

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

.stat-number-gezonde-eetgewoonten {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
}

.stat-label-gezonde-eetgewoonten {
  font-size: 0.875rem;
  color: #a5b4fc;
}

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

.breadcrumb-link-gezonde-eetgewoonten {
  color: #a5b4fc;
  transition: color 0.3s ease;
}

.breadcrumb-link-gezonde-eetgewoonten:hover {
  color: #14b8a6;
}

.breadcrumb-separator-gezonde-eetgewoonten {
  color: #6b7280;
}

.breadcrumb-current-gezonde-eetgewoonten {
  color: #14b8a6;
}

.introduction-section-gezonde-eetgewoonten {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.introduction-content-gezonde-eetgewoonten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-gezonde-eetgewoonten {
  flex: 1 1 300px;
  max-width: 50%;
}

.introduction-image-gezonde-eetgewoonten {
  flex: 1 1 300px;
  max-width: 50%;
}

.introduction-img-gezonde-eetgewoonten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.introduction-title-gezonde-eetgewoonten {
  color: #0a0f1e;
  margin-bottom: 1.5rem;
}

.introduction-paragraph-gezonde-eetgewoonten {
  color: #374151;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.foundation-section-gezonde-eetgewoonten {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.foundation-header-gezonde-eetgewoonten {
  margin-bottom: 3rem;
}

.foundation-tag-gezonde-eetgewoonten {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(139, 92, 246, 0.2);
  color: #a5b4fc;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.foundation-title-gezonde-eetgewoonten {
  color: #ffffff;
}

.foundation-content-gezonde-eetgewoonten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.foundation-text-gezonde-eetgewoonten {
  flex: 1 1 300px;
  max-width: 50%;
}

.foundation-image-gezonde-eetgewoonten {
  flex: 1 1 300px;
  max-width: 50%;
}

.foundation-img-gezonde-eetgewoonten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.foundation-paragraph-gezonde-eetgewoonten {
  color: #a5b4fc;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.foundation-list-gezonde-eetgewoonten {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.list-item-gezonde-eetgewoonten {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: #cbd5e1;
}

.list-item-gezonde-eetgewoonten i {
  color: #14b8a6;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.habits-section-gezonde-eetgewoonten {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.habits-header-gezonde-eetgewoonten {
  text-align: center;
  margin-bottom: 3rem;
}

.habits-tag-gezonde-eetgewoonten {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.habits-title-gezonde-eetgewoonten {
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.habits-subtitle-gezonde-eetgewoonten {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.habits-steps-gezonde-eetgewoonten {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.habits-step-gezonde-eetgewoonten {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.habits-step-number-gezonde-eetgewoonten {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

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

.habits-step-title-gezonde-eetgewoonten {
  color: #0a0f1e;
  font-weight: 600;
}

.habits-step-text-gezonde-eetgewoonten {
  color: #64748b;
  line-height: 1.6;
}

.strategies-section-gezonde-eetgewoonten {
  background: #111d2f;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.strategies-header-gezonde-eetgewoonten {
  margin-bottom: 3rem;
}

.strategies-title-gezonde-eetgewoonten {
  color: #ffffff;
}

.strategies-content-gezonde-eetgewoonten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.strategies-text-gezonde-eetgewoonten {
  flex: 1 1 300px;
  max-width: 50%;
}

.strategies-image-gezonde-eetgewoonten {
  flex: 1 1 300px;
  max-width: 50%;
}

.strategies-img-gezonde-eetgewoonten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.strategies-paragraph-gezonde-eetgewoonten {
  color: #a5b4fc;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.strategies-card-gezonde-eetgewoonten {
  background: rgba(139, 92, 246, 0.08);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  margin-bottom: 1rem;
}

.strategies-card-title-gezonde-eetgewoonten {
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.strategies-card-text-gezonde-eetgewoonten {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.challenges-section-gezonde-eetgewoonten {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.challenges-header-gezonde-eetgewoonten {
  text-align: center;
  margin-bottom: 3rem;
}

.challenges-title-gezonde-eetgewoonten {
  color: #0a0f1e;
}

.challenges-cards-gezonde-eetgewoonten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

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

.challenges-card-gezonde-eetgewoonten:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.challenges-card-title-gezonde-eetgewoonten {
  color: #0a0f1e;
  font-weight: 600;
}

.challenges-card-text-gezonde-eetgewoonten {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.transformation-section-gezonde-eetgewoonten {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.transformation-content-gezonde-eetgewoonten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.transformation-text-gezonde-eetgewoonten {
  flex: 1 1 300px;
  max-width: 50%;
}

.transformation-image-gezonde-eetgewoonten {
  flex: 1 1 300px;
  max-width: 50%;
}

.transformation-img-gezonde-eetgewoonten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.transformation-title-gezonde-eetgewoonten {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.transformation-paragraph-gezonde-eetgewoonten {
  color: #a5b4fc;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.transformation-quote-gezonde-eetgewoonten {
  padding: 2rem 2.5rem;
  border-left: 4px solid #14b8a6;
  background: rgba(139, 92, 246, 0.1);
  margin: 2rem 0;
  border-radius: 4px;
}

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

.quote-cite-gezonde-eetgewoonten {
  font-size: 0.875rem;
  color: #a5b4fc;
  font-style: normal;
}

.transformation-list-gezonde-eetgewoonten {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.transformation-list-item-gezonde-eetgewoonten {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: #cbd5e1;
}

.transformation-list-item-gezonde-eetgewoonten i {
  color: #14b8a6;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.conclusion-section-gezonde-eetgewoonten {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.conclusion-title-gezonde-eetgewoonten {
  color: #0a0f1e;
  margin-bottom: 1.5rem;
}

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

.conclusion-cta-gezonde-eetgewoonten {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-top: 2.5rem;
}

.cta-title-gezonde-eetgewoonten {
  color: #0a0f1e;
  margin-bottom: 0.75rem;
}

.cta-text-gezonde-eetgewoonten {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.disclaimer-section-gezonde-eetgewoonten {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.disclaimer-content-gezonde-eetgewoonten {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 12px;
  border-left: 4px solid #8b5cf6;
}

.disclaimer-icon-gezonde-eetgewoonten {
  font-size: 1.5rem;
  color: #8b5cf6;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-text-gezonde-eetgewoonten {
  flex: 1;
}

.disclaimer-title-gezonde-eetgewoonten {
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.disclaimer-paragraph-gezonde-eetgewoonten {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.related-section-gezonde-eetgewoonten {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.related-title-gezonde-eetgewoonten {
  color: #0a0f1e;
  margin-bottom: 0.75rem;
}

.related-subtitle-gezonde-eetgewoonten {
  color: #64748b;
}

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

.related-card-gezonde-eetgewoonten {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-gezonde-eetgewoonten:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.related-card-title-gezonde-eetgewoonten {
  color: #0a0f1e;
  font-weight: 600;
}

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

.related-card-link-gezonde-eetgewoonten {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #14b8a6;
  font-weight: 600;
  transition: all 0.3s ease;
}

.related-card-link-gezonde-eetgewoonten:hover {
  color: #0d9488;
  gap: 0.75rem;
}

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

  .hero-text-block-gezonde-eetgewoonten,
  .hero-image-gezonde-eetgewoonten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .introduction-content-gezonde-eetgewoonten {
    flex-direction: column;
  }

  .introduction-text-gezonde-eetgewoonten,
  .introduction-image-gezonde-eetgewoonten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .foundation-content-gezonde-eetgewoonten {
    flex-direction: column;
  }

  .foundation-text-gezonde-eetgewoonten,
  .foundation-image-gezonde-eetgewoonten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .habits-step-gezonde-eetgewoonten {
    flex-direction: column;
    gap: 1rem;
  }

  .strategies-content-gezonde-eetgewoonten {
    flex-direction: column;
  }

  .strategies-text-gezonde-eetgewoonten,
  .strategies-image-gezonde-eetgewoonten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .transformation-content-gezonde-eetgewoonten {
    flex-direction: column;
  }

  .transformation-text-gezonde-eetgewoonten,
  .transformation-image-gezonde-eetgewoonten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-gezonde-eetgewoonten {
    flex-direction: column;
  }

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

.main-leesgewoonten-groei {
  width: 100%;
}

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

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

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

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

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

.hero-subtitle-leesgewoonten-groei {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a5b4fc;
  line-height: 1.6;
}

.hero-meta-leesgewoonten-groei {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-leesgewoonten-groei {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #a5b4fc;
}

.meta-badge-leesgewoonten-groei i {
  color: #8b5cf6;
}

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

.stat-item-leesgewoonten-groei {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-leesgewoonten-groei {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #8b5cf6;
  line-height: 1;
}

.stat-label-leesgewoonten-groei {
  font-size: 0.875rem;
  color: #a5b4fc;
  opacity: 0.8;
}

.hero-image-block-leesgewoonten-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-leesgewoonten-groei {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

  .hero-text-block-leesgewoonten-groei,
  .hero-image-block-leesgewoonten-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-leesgewoonten-groei {
    gap: 1.5rem;
  }
}

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

.introduction-content-leesgewoonten-groei {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-leesgewoonten-groei {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.introduction-description-leesgewoonten-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.introduction-highlight-leesgewoonten-groei {
  padding: 1.5rem;
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.highlight-text-leesgewoonten-groei {
  font-size: 0.9375rem;
  color: #1e293b;
  line-height: 1.6;
}

.introduction-image-leesgewoonten-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-leesgewoonten-groei {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .introduction-content-leesgewoonten-groei {
    flex-direction: column;
  }

  .introduction-text-leesgewoonten-groei,
  .introduction-image-leesgewoonten-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.foundation-section-leesgewoonten-groei {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.foundation-header-leesgewoonten-groei {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-leesgewoonten-groei {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(139, 92, 246, 0.2);
  color: #a5b4fc;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.foundation-subtitle-leesgewoonten-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a5b4fc;
  max-width: 600px;
  margin: 0 auto;
}

.steps-wrapper-leesgewoonten-groei {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-leesgewoonten-groei {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

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

.step-content-leesgewoonten-groei {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.step-text-leesgewoonten-groei {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-item-leesgewoonten-groei {
    flex-direction: column;
  }

  .step-number-leesgewoonten-groei {
    font-size: 2rem;
  }
}

.techniques-section-leesgewoonten-groei {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-header-leesgewoonten-groei {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.techniques-text-leesgewoonten-groei {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-block-leesgewoonten-groei {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.technique-heading-leesgewoonten-groei {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.technique-text-leesgewoonten-groei {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.featured-quote-leesgewoonten-groei {
  padding: 2rem 2.5rem;
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin-top: 1rem;
}

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

.quote-author-leesgewoonten-groei {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.techniques-image-leesgewoonten-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-img-leesgewoonten-groei {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .techniques-content-leesgewoonten-groei {
    flex-direction: column;
  }

  .techniques-text-leesgewoonten-groei,
  .techniques-image-leesgewoonten-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-section-leesgewoonten-groei {
  background: #111d2f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-header-leesgewoonten-groei {
  text-align: center;
  margin-bottom: 3rem;
}

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

.strategies-cards-leesgewoonten-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.strategy-card-leesgewoonten-groei {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card-leesgewoonten-groei:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
}

.card-icon-leesgewoonten-groei {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  color: #a5b4fc;
  font-size: 1.5rem;
}

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

.card-text-leesgewoonten-groei {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

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

.implementation-section-leesgewoonten-groei {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-image-leesgewoonten-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.impl-image-leesgewoonten-groei {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

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

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

.implementation-description-leesgewoonten-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.7;
}

.implementation-list-leesgewoonten-groei {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list-item-leesgewoonten-groei {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.list-item-leesgewoonten-groei i {
  color: #3b82f6;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.list-content-leesgewoonten-groei {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .implementation-content-leesgewoonten-groei {
    flex-direction: column;
  }

  .implementation-image-leesgewoonten-groei,
  .implementation-text-leesgewoonten-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-leesgewoonten-groei {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-leesgewoonten-groei {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.conclusion-text-leesgewoonten-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.conclusion-cta-leesgewoonten-groei {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.cta-button-leesgewoonten-groei {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #8b5cf6;
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button-leesgewoonten-groei:hover {
  background: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.cta-button-secondary-leesgewoonten-groei {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border: 2px solid #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button-secondary-leesgewoonten-groei:hover {
  background: #ffffff;
  color: #0a0f1e;
}

.disclaimer-section-leesgewoonten-groei {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-leesgewoonten-groei {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.disclaimer-icon-leesgewoonten-groei {
  font-size: 1.5rem;
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-text-leesgewoonten-groei {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disclaimer-title-leesgewoonten-groei {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.disclaimer-description-leesgewoonten-groei {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.related-section-leesgewoonten-groei {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-leesgewoonten-groei {
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-subtitle-leesgewoonten-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #a5b4fc;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-leesgewoonten-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-leesgewoonten-groei {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-content-leesgewoonten-groei {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
}

.related-card-leesgewoonten-groei:hover .related-card-content-leesgewoonten-groei {
  background: rgba(139, 92, 246, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
}

.related-card-title-leesgewoonten-groei {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.related-card-description-leesgewoonten-groei {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-arrow-leesgewoonten-groei {
  display: flex;
  align-items: center;
  color: #a5b4fc;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  transition: transform 0.3s ease;
}

.related-card-leesgewoonten-groei:hover .related-card-arrow-leesgewoonten-groei {
  transform: translateX(4px);
  color: #8b5cf6;
}

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

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

.breadcrumb-link-leesgewoonten-groei {
  color: #a5b4fc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-leesgewoonten-groei:hover {
  color: #8b5cf6;
}

.breadcrumb-separator-leesgewoonten-groei {
  color: #64748b;
  margin: 0 0.25rem;
}

.breadcrumb-current-leesgewoonten-groei {
  color: #cbd5e1;
}

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

  .introduction-section-leesgewoonten-groei,
  .foundation-section-leesgewoonten-groei,
  .techniques-section-leesgewoonten-groei,
  .strategies-section-leesgewoonten-groei,
  .implementation-section-leesgewoonten-groei,
  .conclusion-section-leesgewoonten-groei,
  .disclaimer-section-leesgewoonten-groei,
  .related-section-leesgewoonten-groei {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

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

  .introduction-section-leesgewoonten-groei,
  .foundation-section-leesgewoonten-groei,
  .techniques-section-leesgewoonten-groei,
  .strategies-section-leesgewoonten-groei,
  .implementation-section-leesgewoonten-groei,
  .conclusion-section-leesgewoonten-groei,
  .disclaimer-section-leesgewoonten-groei,
  .related-section-leesgewoonten-groei {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

.main-dagboekschrijven-transformatie {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-text-wrapper-dagboekschrijven-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.article-meta-dagboekschrijven-transformatie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-dagboekschrijven-transformatie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(20, 184, 166, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #99f6e4;
}

.meta-badge-dagboekschrijven-transformatie i {
  color: #14b8a6;
  font-size: 1rem;
}

.hero-image-wrapper-dagboekschrijven-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-featured-image-dagboekschrijven-transformatie {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: block;
}

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

.breadcrumb-link-dagboekschrijven-transformatie {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.breadcrumb-link-dagboekschrijven-transformatie:hover {
  color: #14b8a6;
}

.breadcrumb-separator-dagboekschrijven-transformatie {
  color: #64748b;
}

.breadcrumb-current-dagboekschrijven-transformatie {
  color: #14b8a6;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-content-dagboekschrijven-transformatie {
    flex-direction: column;
  }
  
  .hero-text-wrapper-dagboekschrijven-transformatie,
  .hero-image-wrapper-dagboekschrijven-transformatie {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

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

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

.intro-description-dagboekschrijven-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
}

.intro-image-dagboekschrijven-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-element-dagboekschrijven-transformatie {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

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

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

.section-header-dagboekschrijven-transformatie {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-dagboekschrijven-transformatie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.section-subtitle-dagboekschrijven-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.benefit-card-dagboekschrijven-transformatie {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-card-dagboekschrijven-transformatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon-dagboekschrijven-transformatie {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #14b8a6;
  border-radius: 10px;
  font-size: 1.5rem;
}

.benefit-card-title-dagboekschrijven-transformatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.benefit-card-text-dagboekschrijven-transformatie {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.process-section-dagboekschrijven-transformatie {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-section-dagboekschrijven-transformatie .section-tag-dagboekschrijven-transformatie {
  background: rgba(20, 184, 166, 0.2);
  color: #2dd4bf;
}

.process-section-dagboekschrijven-transformatie .section-title-dagboekschrijven-transformatie {
  color: #ffffff;
}

.process-steps-wrapper-dagboekschrijven-transformatie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-dagboekschrijven-transformatie {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(20, 184, 166, 0.08);
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
}

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

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

.process-step-title-dagboekschrijven-transformatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.process-step-text-dagboekschrijven-transformatie {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
}

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

.featured-quote-section-dagboekschrijven-transformatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-dagboekschrijven-transformatie {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  border-left: 4px solid #14b8a6;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  margin: 0 auto;
}

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

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

.tips-section-dagboekschrijven-transformatie {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-grid-dagboekschrijven-transformatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tip-item-dagboekschrijven-transformatie {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.tip-item-dagboekschrijven-transformatie:hover {
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.tip-number-dagboekschrijven-transformatie {
  font-size: 2rem;
  font-weight: 800;
  color: #14b8a6;
  line-height: 1;
}

.tip-title-dagboekschrijven-transformatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.tip-text-dagboekschrijven-transformatie {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

.practices-section-dagboekschrijven-transformatie {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practices-text-dagboekschrijven-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practices-title-dagboekschrijven-transformatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
}

.practices-description-dagboekschrijven-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
}

.techniques-list-dagboekschrijven-transformatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.technique-item-dagboekschrijven-transformatie {
  padding: 1rem;
  background: #ffffff;
  border-left: 3px solid #14b8a6;
  border-radius: 4px;
}

.technique-title-dagboekschrijven-transformatie {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.technique-text-dagboekschrijven-transformatie {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.practices-image-dagboekschrijven-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.practices-image-element-dagboekschrijven-transformatie {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .practices-content-wrapper-dagboekschrijven-transformatie {
    flex-direction: column;
  }
  
  .practices-text-dagboekschrijven-transformatie,
  .practices-image-dagboekschrijven-transformatie {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.transformation-image-dagboekschrijven-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.transformation-image-element-dagboekschrijven-transformatie {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

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

.transformation-title-dagboekschrijven-transformatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
}

.transformation-description-dagboekschrijven-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
}

.transformation-highlights-dagboekschrijven-transformatie {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item-dagboekschrijven-transformatie {
  padding: 1rem;
  background: #f8fafc;
  border-left: 3px solid #14b8a6;
  border-radius: 4px;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .transformation-content-wrapper-dagboekschrijven-transformatie {
    flex-direction: column;
  }
  
  .transformation-image-dagboekschrijven-transformatie,
  .transformation-text-dagboekschrijven-transformatie {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.conclusion-content-dagboekschrijven-transformatie {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.conclusion-title-dagboekschrijven-transformatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
}

.conclusion-text-dagboekschrijven-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
}

.cta-box-dagboekschrijven-transformatie {
  background: linear-gradient(135deg, #0a0f1e, #1a1a2e);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: 1rem;
}

.cta-title-dagboekschrijven-transformatie {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-dagboekschrijven-transformatie {
  font-size: 0.9375rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.btn-primary-dagboekschrijven-transformatie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #14b8a6;
  color: #000000;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary-dagboekschrijven-transformatie:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
}

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

.related-title-dagboekschrijven-transformatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
}

.related-subtitle-dagboekschrijven-transformatie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 0.5rem;
}

.related-cards-wrapper-dagboekschrijven-transformatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

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

.related-card-dagboekschrijven-transformatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.related-card-image-dagboekschrijven-transformatie {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-image-dagboekschrijven-transformatie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-dagboekschrijven-transformatie {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

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

.related-card-link-dagboekschrijven-transformatie {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #14b8a6;
  transition: color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.related-card-link-dagboekschrijven-transformatie:hover {
  color: #0d9488;
}

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

.disclaimer-section-dagboekschrijven-transformatie {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-box-dagboekschrijven-transformatie {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #14b8a6;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-dagboekschrijven-transformatie {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.disclaimer-text-dagboekschrijven-transformatie {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-dagboekschrijven-transformatie:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-section-dagboekschrijven-transformatie {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
  
  .intro-section-dagboekschrijven-transformatie {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
  
  .benefits-section-dagboekschrijven-transformatie {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
  
  .process-section-dagboekschrijven-transformatie {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
  
  .featured-quote-section-dagboekschrijven-transformatie {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
  
  .tips-section-dagboekschrijven-transformatie {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
  
  .practices-section-dagboekschrijven-transformatie {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
  
  .transformation-section-dagboekschrijven-transformatie {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
  
  .conclusion-section-dagboekschrijven-transformatie {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
  
  .related-section-dagboekschrijven-transformatie {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
  
  .disclaimer-section-dagboekschrijven-transformatie {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-dagboekschrijven-transformatie {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .intro-section-dagboekschrijven-transformatie {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .benefits-section-dagboekschrijven-transformatie {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .process-section-dagboekschrijven-transformatie {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .featured-quote-section-dagboekschrijven-transformatie {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .tips-section-dagboekschrijven-transformatie {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .practices-section-dagboekschrijven-transformatie {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .transformation-section-dagboekschrijven-transformatie {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .conclusion-section-dagboekschrijven-transformatie {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .related-section-dagboekschrijven-transformatie {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .disclaimer-section-dagboekschrijven-transformatie {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

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

:focus-visible {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

@media (max-width: 320px) {
  .hero-title-dagboekschrijven-transformatie {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .section-title-dagboekschrijven-transformatie {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0d1526;
  --color-bg-dark-tertiary: #111d2f;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(20, 184, 166, 0.08);
  --color-bg-card-light: #ffffff;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #99f6e4;
  --color-text-dark-muted: #a5b4fc;
  --color-text-light-primary: #0a0f1e;
  --color-text-light-secondary: #374151;
  --color-text-light-muted: #6b7280;
  --color-primary: #14b8a6;
  --color-primary-hover: #0d9488;
  --color-secondary: #10b981;
  --color-accent-light: #2dd4bf;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.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-inline: clamp(1rem, 5vw, 2rem);
}

.routina-habit-journey-about {
  width: 100%;
  background: var(--color-bg-light-primary);
}

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

.hero-opening-about .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero-opening-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
}

.hero-opening-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
}

.hero-opening-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.hero-opening-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-bg-light-tertiary);
}

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

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

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

.hero-opening-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .hero-opening-about .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .hero-opening-content-about {
    flex: 0 0 45%;
  }

  .hero-opening-image-about {
    flex: 1 1 50%;
  }
}

.foundation-philosophy-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-secondary);
  position: relative;
  overflow: hidden;
}

.foundation-philosophy-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.philosophy-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.philosophy-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.philosophy-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.philosophy-intro-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.philosophy-pillars-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2rem;
}

.pillar-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-light-tertiary);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pillar-icon-about {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.pillar-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
}

.pillar-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

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

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

.impact-content-about {
  display: flex;
  flex-direction: column !important;
  gap: clamp(2rem, 4vw, 3rem);
}

.impact-text-block-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.impact-subtitle-about {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.impact-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

.impact-highlights-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1rem;
}

.highlight-item-about {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1 1 280px;
}

.highlight-icon-about {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1rem;
}

.highlight-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.5;
}

.impact-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .impact-content-about {
    flex-direction: row;
    align-items: center;
  }

  .impact-text-block-about {
    flex: 1 1 45%;
  }

  .impact-image-about {
    flex: 1 1 50%;
  }
}

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

.methodology-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.methodology-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.methodology-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.methodology-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.step-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  font-family: var(--font-heading);
}

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

.step-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
}

.step-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .methodology-step-about {
    flex-direction: column;
    gap: 0.75rem;
    border-left: 4px solid var(--color-primary);
  }

  .step-number-about {
    min-width: auto;
  }
}

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

.commitment-wrapper-about {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(16, 185, 129, 0.08));
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--color-bg-light-tertiary);
}

.commitment-quote-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-heading);
}

.commitment-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.commitment-cta-about {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  background: var(--color-primary);
  color: var(--color-text-light-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.commitment-cta-about:hover {
  background: var(--color-primary-hover);
  transform: translateX(4px);
}

.disclaimer-section-about {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--color-bg-light-secondary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-bg-light-tertiary);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-light-primary);
  font-family: var(--font-heading);
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-light-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .disclaimer-section-about {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .methodology-step-about {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-opening-about .container {
    gap: 4rem;
  }

  .impact-content-about {
    gap: 4rem;
  }

  .methodology-steps-about {
    gap: 1.5rem;
  }
}

.legal-docs {
  width: 100%;
  font-family: var(--font-primary);
}

.legal-docs-hero {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.legal-docs-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-docs-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-docs-hero-meta {
  font-size: 0.9375rem;
  color: var(--color-text-dark-secondary);
}

.legal-docs-content {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.legal-docs-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.legal-docs-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-docs-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-light-primary);
}

.legal-docs-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-light-primary);
  margin-top: 0.5rem;
}

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

.legal-docs-section ul,
.legal-docs-section ol {
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-docs-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
}

.legal-docs-section a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-docs-section a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.legal-docs-contact {
  background: var(--color-bg-light-tertiary);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.legal-docs-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-light-primary);
}

.legal-docs-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: var(--color-text-light-secondary);
}

.legal-docs-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-docs-contact-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.legal-docs-contact-label {
  font-weight: 600;
  color: var(--color-text-light-primary);
}

@media (min-width: 768px) {
  .legal-docs-hero {
    padding: 5rem 0;
  }

  .legal-docs-content {
    padding: 5rem 0;
  }

  .legal-docs-section {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs-hero {
    padding: 6rem 0;
  }

  .legal-docs-content {
    padding: 6rem 0;
  }

  .legal-docs-section {
    gap: 1.5rem;
  }
}

.thank-you-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(2rem, 6vw, 4rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 15vw, 100px);
  height: clamp(60px, 15vw, 100px);
  background: rgba(20, 184, 166, 0.15);
  border-radius: 50%;
  animation: scale-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

.thank-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-primary);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  gap: 0.5rem;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

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

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

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

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
    padding: clamp(3rem, 8vw, 5rem);
  }

  .thank-section h1 {
    font-size: clamp(2.25rem, 6vw + 1rem, 3.75rem);
  }

  .thank-subtitle {
    font-size: clamp(1.125rem, 3vw + 0.5rem, 1.5rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2.5rem, 6vw, 3.5rem);
    padding: clamp(4rem, 10vw, 6rem);
  }

  .thank-section h1 {
    font-size: clamp(2.75rem, 7vw + 1rem, 4rem);
  }

  .thank-subtitle {
    font-size: clamp(1.25rem, 3.5vw + 0.5rem, 1.75rem);
  }

  .thank-description,
  .thank-next-steps {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  }
}

@media (min-width: 1440px) {
  .thank-section h1 {
    font-size: 3.5rem;
  }

  .thank-subtitle {
    font-size: 1.5rem;
  }

  .thank-description,
  .thank-next-steps {
    font-size: 1.0625rem;
  }
}

@media (max-width: 480px) {
  .thank-content {
    padding: clamp(1.5rem, 4vw, 2rem);
  }

  .thank-icon {
    width: 60px;
    height: 60px;
  }

  .thank-icon i {
    font-size: 2.5rem;
  }
}

  .error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  
  .error-section {
    background: var(--color-bg-dark-primary);
    width: 100%;
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

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

  
  .error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  
  .error-decoration {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .error-decoration i {
    font-size: 4rem;
    color: var(--color-primary);
    animation: spin 3s linear infinite;
  }

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  
  .error-code {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    line-height: 1;
    margin: 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  
  .error-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-dark-primary);
    line-height: 1.2;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .error-description {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--color-text-dark-muted);
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .error-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 184, 166, 0.1);
    border-radius: var(--radius-lg);
    margin: 1rem 0;
  }

  .error-icon i {
    font-size: 3.5rem;
    color: var(--color-accent-light);
    opacity: 0.8;
  }

  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--color-primary);
    color: var(--color-text-light-primary);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
  }

  .btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
  }

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

  
  .error-hint {
    font-family: var(--font-primary);
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    color: var(--color-text-dark-secondary);
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  @media (min-width: 768px) {
    .error-section {
      padding: 3rem 0;
      min-height: 100vh;
    }

    .error-content {
      gap: 2rem;
    }

    .error-decoration {
      margin-bottom: 1.5rem;
    }

    .error-icon {
      width: 140px;
      height: 140px;
      margin: 1.5rem 0;
    }

    .error-icon i {
      font-size: 4rem;
    }
  }

  
  @media (min-width: 1024px) {
    .error-section {
      padding: 4rem 0;
      min-height: 100vh;
    }

    .error-content {
      gap: 2.5rem;
    }

    .error-decoration {
      margin-bottom: 2rem;
    }

    .error-code {
      margin-bottom: 0.5rem;
    }

    .error-icon {
      width: 160px;
      height: 160px;
      margin: 2rem 0;
    }

    .error-icon i {
      font-size: 4.5rem;
    }
  }

  
  @media (min-width: 1440px) {
    .error-section {
      padding: 6rem 0;
    }

    .error-content {
      gap: 3rem;
    }
  }

  
  @media (prefers-reduced-motion: reduce) {
    .error-decoration i,
    .btn {
      animation: none;
      transition: none;
    }
  }

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

  
  @media print {
    .error-section {
      min-height: auto;
      padding: 2rem 0;
    }

    .error-decoration {
      display: none;
    }

    .btn {
      display: none;
    }
  }
  img{
    max-width: 100%;
  }