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

:root {
  
  
  
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-bg-accent: #f0fdfa;
  
  
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  --color-text-light: #d6d3d1;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #ccfbf1;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;
  
  
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  
  
  --shadow-xs: 0 1px 1px rgba(28, 25, 23, 0.05);
  --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
  --shadow-md: 0 4px 6px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 10px 15px rgba(28, 25, 23, 0.1);
  --shadow-xl: 0 20px 25px rgba(28, 25, 23, 0.12);
  --shadow-2xl: 0 25px 50px rgba(28, 25, 23, 0.15);
  
  
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  
  --z-dropdown: 1000;
  --z-modal: 2000;
  --z-notification: 3000;
}

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

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

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-text-primary);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: 1.875rem;
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

h5 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

strong {
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
}

em {
  font-style: italic;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.card-minimal {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.card-accent {
  background: var(--color-bg-accent);
  border: 1px solid rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  border: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.btn-primary:active {
  transform: scale(0.98);
}

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

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

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

.btn-outline:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  padding: var(--space-sm) var(--space-lg);
}

.btn-ghost:hover {
  background: var(--color-bg-secondary);
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-primary-light);
  color: var(--color-primary-hover);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
}

.badge-secondary {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-secondary-hover);
}

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  border: 2px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

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

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

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

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

code {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

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

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

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

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

.mx-auto { margin-left: auto; margin-right: auto; }

.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }

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

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

.font-regular { font-weight: var(--fw-regular); }
.font-medium { font-weight: var(--fw-medium); }
.font-semibold { font-weight: var(--fw-semibold); }
.font-bold { font-weight: var(--fw-bold); }

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

.line-clamp-1 { 
  overflow: hidden; 
  text-overflow: ellipsis; 
  white-space: nowrap; 
}

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

.hidden { display: none !important; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

.animate-fade-in {
  animation: fadeIn var(--transition-base) ease-in-out;
}

.animate-slide-up {
  animation: slideInUp var(--transition-base) ease-in-out;
}

.animate-slide-down {
  animation: slideInDown var(--transition-base) ease-in-out;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

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

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

  .hidden-mobile {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .btn {
    width: 100%;
  }

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

@media print {
  body {
    background: #ffffff;
  }

  .btn,
  button {
    display: none;
  }
}
.header-balance-hub {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-text-light);
  position: static;
  z-index: 100;
}

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

.header-balance-hub-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-balance-hub-brand:hover {
  opacity: 0.85;
}

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

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

.header-balance-hub-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-grow: 1;
}

.header-balance-hub-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: var(--fw-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.header-balance-hub-nav-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.header-balance-hub-cta-button {
  display: none;
  padding: clamp(0.625rem, 1vw, 0.875rem) clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-balance-hub-cta-button:hover {
  background: var(--color-primary-hover);
}

.header-balance-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  z-index: 1001;
}

.header-balance-hub-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.header-balance-hub-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.header-balance-hub-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-balance-hub-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

.header-balance-hub-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-tertiary);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.header-balance-hub-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(1rem, 4vw, 1.5rem);
  border-bottom: 1px solid var(--color-text-light);
  gap: 1rem;
}

.header-balance-hub-mobile-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base);
}

.header-balance-hub-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-balance-hub-mobile-link {
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1rem, 4vw, 1.5rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  border-bottom: 1px solid var(--color-text-light);
  transition: background var(--transition-base);
}

.header-balance-hub-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
}

.header-balance-hub-mobile-cta {
  margin: clamp(1rem, 4vw, 1.5rem);
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-primary);
  color: var(--color-bg-tertiary);
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
  font-size: clamp(0.875rem, 1vw, 1rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  text-align: center;
  transition: background var(--transition-base);
  display: block;
}

.header-balance-hub-mobile-cta:hover {
  background: var(--color-primary-hover);
}

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

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

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

  .header-balance-hub-mobile-menu {
    display: none !important;
  }
}

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

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

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

.hero-text-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-index {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  line-height: 1.2;
  margin: 0;
}

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

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

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 2px solid var(--color-bg-secondary);
}

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

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

.stat-label-index {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.hero-image-index {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

.hero-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.how-it-works-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.section-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
}

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  background: rgba(13, 148, 136, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.how-it-works-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin: 0;
  line-height: 1.2;
}

.how-it-works-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

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

.step-card-index {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.step-number-index {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
  min-width: 70px;
}

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

.step-title-index {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
}

.step-text-index {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

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

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

.features-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin: 0;
  line-height: 1.2;
}

.features-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

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

.card-icon-index {
  font-size: 2rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-lg);
}

.card-title-index {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
}

.card-text-index {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

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

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

.benefits-text-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.benefits-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin: 0;
  line-height: 1.2;
}

.benefits-intro-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  margin: 0;
  line-height: 1.6;
}

.benefits-list-index {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item-index {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefit-icon-index {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.benefit-text-index {
  display: block;
  color: var(--color-text-secondary);
}

.benefits-closing-index {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin: clamp(1rem, 2vw, 1.5rem) 0 0 0;
  line-height: 1.6;
}

.benefits-image-index {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 450px;
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

.benefits-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.blog-preview-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.blog-preview-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin: 0;
  line-height: 1.2;
}

.blog-preview-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

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

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

.featured-card-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

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

.card-heading-index {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.card-description-index {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.card-link-index {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
}

.card-link-index:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.blog-preview-cta-index {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

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

.faq-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin: 0;
  line-height: 1.2;
}

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

.faq-item-index {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.faq-question-index {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.faq-answer-index {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

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

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

.testimonials-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin: 0;
  line-height: 1.2;
}

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

.testimonial-quote-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin: 0;
}

.quote-text-index {
  color: var(--color-text-primary);
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
  line-height: 1.7;
  font-style: italic;
}

.quote-author-index {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  display: block;
  font-weight: 600;
}

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

.partners-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.partners-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin: 0;
  line-height: 1.2;
}

.partners-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

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

.partner-item-index {
  background: var(--color-bg-tertiary);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  color: var(--color-text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.partners-closing-index {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin: clamp(1rem, 2vw, 1.5rem) auto 0 auto;
  max-width: 600px;
  line-height: 1.6;
}

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

.cta-final-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary), #10b981);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-box-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  margin: 0;
  line-height: 1.2;
}

.cta-box-text-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  margin: 0;
  max-width: 500px;
  line-height: 1.6;
}

.cookie-banner-index {
  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);
  overflow: hidden;
}

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

.cookie-banner-text-index {
  color: #ffffff;
  font-size: 0.875rem;
  margin: 0;
  flex: 1 1 auto;
  min-width: 250px;
  line-height: 1.5;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.cookie-btn-accept-index:hover {
  background: var(--color-primary-hover);
}

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

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

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

  .hero-text-index,
  .hero-image-index {
    flex: 1 1 100%;
  }

  .hero-image-index {
    max-height: 350px;
    min-height: 250px;
  }

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

  .benefits-text-index,
  .benefits-image-index {
    flex: 1 1 100%;
  }

  .benefits-image-index {
    max-height: 350px;
    min-height: 250px;
  }

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

  .cookie-banner-index {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-banner-text-index {
    text-align: center;
    min-width: 100%;
  }

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

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

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

  .hero-buttons-index a {
    width: 100%;
    text-align: center;
  }

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

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

  .testimonials-wrapper-index {
    flex-direction: column;
  }

  .testimonial-quote-index {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .partners-list-index {
    flex-direction: column;
  }

  .partner-item-index {
    width: 100%;
  }

  .cta-box-index {
    padding: 1.5rem;
  }

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

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

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

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

.footer-about {
  display: block;
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-about p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 600px;
}

.footer-nav {
  display: block;
}

.footer-nav h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-contact {
  display: block;
}

.footer-contact h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-contact p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-legal {
  display: block;
}

.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-legal-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--color-text-light);
}

.footer-copyright p {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2.5rem, 4vw, 4rem);
    grid-auto-rows: max-content;
  }

  .footer-copyright {
    grid-column: 1 / -1;
    border-top: 1px solid var(--color-text-light);
    padding-top: clamp(1.5rem, 3vw, 2rem);
  }
}

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

  .footer-about {
    grid-column: 1;
  }

  .footer-nav {
    grid-column: 2;
  }

  .footer-contact {
    grid-column: 3;
  }

  .footer-legal {
    grid-column: 4;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }
}
    

.category-page-work-life-balance {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.hero-header-work-life-balance {
  flex: 1 1 100%;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-title-work-life-balance {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle-work-life-balance {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.15rem);
  line-height: 1.7;
  margin-bottom: 0;
}

.hero-visual-work-life-balance {
  flex: 1 1 100%;
  width: 100%;
  max-width: 600px;
}

.hero-image-work-life-balance {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .hero-content-work-life-balance {
    flex-direction: row;
    align-items: center;
  }

  .hero-header-work-life-balance {
    flex: 1 1 50%;
    text-align: left;
    max-width: none;
    margin: 0;
  }

  .hero-visual-work-life-balance {
    flex: 1 1 50%;
    max-width: none;
  }
}

.posts-section-work-life-balance {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-work-life-balance {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.posts-header-work-life-balance {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.posts-title-work-life-balance {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.posts-description-work-life-balance {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: 1.6;
  margin-bottom: 0;
}

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

.card-work-life-balance {
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.card-image-work-life-balance {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.card-title-work-life-balance {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) var(--space-sm);
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.card-text-work-life-balance {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.4rem, 1rem);
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-work-life-balance {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  margin-bottom: var(--space-md);
  border-top: 1px solid var(--color-bg-secondary);
  padding-top: var(--space-md);
}

.meta-item-work-life-balance {
  color: var(--color-text-secondary);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.meta-item-work-life-balance i {
  color: var(--color-primary);
  font-size: 0.75rem;
}

.card-link-work-life-balance {
  color: var(--color-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.4rem, 1rem);
  font-weight: 600;
  padding: var(--space-md) clamp(1rem, 3vw, 1.5rem);
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
  margin-top: auto;
}

.card-link-work-life-balance:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.insight-section-work-life-balance {
  background: var(--color-bg-accent);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insight-content-work-life-balance {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.insight-header-work-life-balance {
  text-align: center;
}

.insight-title-work-life-balance {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 0;
  font-weight: 700;
}

.insight-quote-work-life-balance {
  max-width: 650px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-primary);
}

.quote-text-work-life-balance {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
  line-height: 1.8;
  margin: 0 0 var(--space-md) 0;
  font-style: italic;
}

.quote-author-work-life-balance {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.insight-context-work-life-balance {
  max-width: 700px;
  margin: 0 auto;
}

.insight-text-work-life-balance {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: 1.8;
  margin: 0;
}

.steps-section-work-life-balance {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-content-work-life-balance {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.steps-header-work-life-balance {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.steps-title-work-life-balance {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.steps-subtitle-work-life-balance {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem);
  line-height: 1.6;
  margin: 0;
}

.steps-list-work-life-balance {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-item-work-life-balance {
  flex: 1 1 100%;
  min-width: 250px;
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.step-number-work-life-balance {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-title-work-life-balance {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.step-text-work-life-balance {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1.5vw + 0.4rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .hero-content-work-life-balance {
    flex-direction: column;
  }

  .hero-header-work-life-balance {
    text-align: center;
    max-width: 100%;
  }

  .hero-visual-work-life-balance {
    max-width: 100%;
  }

  .card-work-life-balance {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-work-life-balance {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .posts-grid-work-life-balance {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .card-work-life-balance {
    flex: 1 1 calc(50% - 1rem);
    max-width: 100%;
  }

  .step-item-work-life-balance {
    flex: 1 1 calc(50% - 1rem);
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .posts-grid-work-life-balance {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .card-work-life-balance {
    flex: 1 1 22%;
    max-width: 420px;
  }

  .steps-list-work-life-balance {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .step-item-work-life-balance {
    flex: 1 1 calc(25% - 1.5rem);
    max-width: 100%;
  }
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.main-tijdblokken-simpel-effectief {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

.hero-section-tijdblokken-simpel-effectief {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.hero-section-tijdblokken-simpel-effectief .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.breadcrumbs-tijdblokken-simpel-effectief {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.breadcrumbs-tijdblokken-simpel-effectief a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-tijdblokken-simpel-effectief a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-tijdblokken-simpel-effectief span {
  color: var(--color-text-secondary);
}

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

.hero-text-tijdblokken-simpel-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-tijdblokken-simpel-effectief {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.hero-subtitle-tijdblokken-simpel-effectief {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.hero-meta-tijdblokken-simpel-effectief {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.meta-item-tijdblokken-simpel-effectief {
  color: var(--color-text-secondary);
}

.meta-divider-tijdblokken-simpel-effectief {
  color: var(--color-bg-secondary);
}

.hero-image-tijdblokken-simpel-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-tijdblokken-simpel-effectief {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.intro-section-tijdblokken-simpel-effectief {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.intro-section-tijdblokken-simpel-effectief .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.intro-text-tijdblokken-simpel-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-tijdblokken-simpel-effectief {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
}

.intro-paragraph-tijdblokken-simpel-effectief {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.1rem);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.intro-image-tijdblokken-simpel-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-tijdblokken-simpel-effectief img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.concept-section-tijdblokken-simpel-effectief {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.concept-section-tijdblokken-simpel-effectief .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.concept-text-tijdblokken-simpel-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.concept-title-tijdblokken-simpel-effectief {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
}

.concept-intro-tijdblokken-simpel-effectief {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.1rem);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.concept-blocks-tijdblokken-simpel-effectief {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.block-item-tijdblokken-simpel-effectief {
  background: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.block-title-tijdblokken-simpel-effectief {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw + 0.25rem, 1.4rem);
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-semibold);
}

.block-text-tijdblokken-simpel-effectief {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: var(--lh-relaxed);
}

.concept-image-tijdblokken-simpel-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.concept-image-tijdblokken-simpel-effectief img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.implementation-section-tijdblokken-simpel-effectief {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.implementation-section-tijdblokken-simpel-effectief .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.implementation-image-tijdblokken-simpel-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-tijdblokken-simpel-effectief img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.implementation-text-tijdblokken-simpel-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-tijdblokken-simpel-effectief {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
}

.implementation-subtitle-tijdblokken-simpel-effectief {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw + 0.25rem, 1.4rem);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-semibold);
}

.implementation-paragraph-tijdblokken-simpel-effectief {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.1rem);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.benefits-section-tijdblokken-simpel-effectief {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.benefits-section-tijdblokken-simpel-effectief .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.benefits-content-tijdblokken-simpel-effectief {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.benefits-title-tijdblokken-simpel-effectief {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.5rem);
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
}

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

.benefits-text-tijdblokken-simpel-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-paragraph-tijdblokken-simpel-effectief {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.1rem);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.benefits-image-tijdblokken-simpel-effectief {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-tijdblokken-simpel-effectief img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.closing-section-tijdblokken-simpel-effectief {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.closing-section-tijdblokken-simpel-effectief .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.closing-content-tijdblokken-simpel-effectief {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.closing-text-tijdblokken-simpel-effectief {
  max-width: 800px;
  margin: 0 auto;
}

.closing-title-tijdblokken-simpel-effectief {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.5rem);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
}

.closing-paragraph-tijdblokken-simpel-effectief {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.1rem);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.closing-cta-tijdblokken-simpel-effectief {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.cta-card-tijdblokken-simpel-effectief {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
}

.cta-title-tijdblokken-simpel-effectief {
  color: #ffffff;
  font-size: clamp(1.4rem, 3vw + 0.25rem, 1.875rem);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-bold);
}

.cta-text-tijdblokken-simpel-effectief {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.cta-button-tijdblokken-simpel-effectief {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: var(--radius-lg);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

.cta-button-tijdblokken-simpel-effectief:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.disclaimer-section-tijdblokken-simpel-effectief {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-section-tijdblokken-simpel-effectief .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.disclaimer-content-tijdblokken-simpel-effectief {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-text-tijdblokken-simpel-effectief {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: var(--lh-relaxed);
  margin: 0;
}

.disclaimer-label-tijdblokken-simpel-effectief {
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
}

.related-section-tijdblokken-simpel-effectief {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.related-section-tijdblokken-simpel-effectief .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.related-content-tijdblokken-simpel-effectief {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.related-title-tijdblokken-simpel-effectief {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.5rem);
  text-align: center;
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
}

.related-cards-tijdblokken-simpel-effectief {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-tijdblokken-simpel-effectief {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.related-image-tijdblokken-simpel-effectief {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-tijdblokken-simpel-effectief img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-title-tijdblokken-simpel-effectief {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  padding: var(--space-lg) var(--space-lg) 0 var(--space-lg);
  margin: 0;
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
}

.related-card-text-tijdblokken-simpel-effectief {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  padding: var(--space-md) var(--space-lg) var(--space-lg) var(--space-lg);
  margin: 0;
  line-height: var(--lh-normal);
}

@media (max-width: 768px) {
  .hero-content-tijdblokken-simpel-effectief,
  .intro-content-tijdblokken-simpel-effectief,
  .concept-content-tijdblokken-simpel-effectief,
  .implementation-content-tijdblokken-simpel-effectief,
  .benefits-wrapper-tijdblokken-simpel-effectief {
    flex-direction: column;
  }

  .hero-text-tijdblokken-simpel-effectief,
  .intro-text-tijdblokken-simpel-effectief,
  .concept-text-tijdblokken-simpel-effectief,
  .implementation-text-tijdblokken-simpel-effectief,
  .benefits-text-tijdblokken-simpel-effectief,
  .hero-image-tijdblokken-simpel-effectief,
  .intro-image-tijdblokken-simpel-effectief,
  .concept-image-tijdblokken-simpel-effectief,
  .implementation-image-tijdblokken-simpel-effectief,
  .benefits-image-tijdblokken-simpel-effectief {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-img-tijdblokken-simpel-effectief,
  .intro-image-tijdblokken-simpel-effectief img,
  .concept-image-tijdblokken-simpel-effectief img,
  .implementation-image-tijdblokken-simpel-effectief img,
  .benefits-image-tijdblokken-simpel-effectief img {
    max-height: 300px;
  }
}

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

  .hero-section-tijdblokken-simpel-effectief .container,
  .intro-section-tijdblokken-simpel-effectief .container,
  .concept-section-tijdblokken-simpel-effectief .container,
  .implementation-section-tijdblokken-simpel-effectief .container,
  .benefits-section-tijdblokken-simpel-effectief .container,
  .closing-section-tijdblokken-simpel-effectief .container,
  .related-section-tijdblokken-simpel-effectief .container {
    padding: 0 var(--space-md);
  }

  .block-item-tijdblokken-simpel-effectief {
    padding: var(--space-md);
  }

  .cta-card-tijdblokken-simpel-effectief {
    padding: var(--space-lg);
  }

  .related-cards-tijdblokken-simpel-effectief {
    flex-direction: column;
  }

  .related-card-tijdblokken-simpel-effectief {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-grenzen-stellen-werk {
  width: 100%;
  background: var(--color-bg-primary);
  overflow-x: hidden;
}

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

.hero-content-grenzen-stelling-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

.hero-text-grenzen-stelling-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-grenzen-stelling-werk {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-text-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.breadcrumbs-grenzen-stelling-werk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-grenzen-stelling-werk a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-grenzen-stelling-werk a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-grenzen-stelling-werk span {
  color: var(--color-text-secondary);
}

.hero-subtitle-grenzen-stelling-werk {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
  font-weight: var(--fw-regular);
}

.hero-meta-grenzen-stelling-werk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-grenzen-stelling-werk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-grenzen-stelling-werk i {
  color: var(--color-primary);
  font-size: 1em;
}

.hero-image-grenzen-stelling-werk {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-img-grenzen-stelling-werk {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.intro-section-grenzen-stelling-werk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-grenzen-stelling-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

.intro-text-grenzen-stelling-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 100%;
}

.intro-title-grenzen-stelling-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.intro-paragraph-grenzen-stelling-werk {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.intro-image-grenzen-stelling-werk {
  width: 100%;
  flex: 1 1 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.intro-img-grenzen-stelling-werk {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.content-section-one-grenzen-stelling-werk {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-one-grenzen-stelling-werk {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-one-grenzen-stelling-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.content-paragraph-one-grenzen-stelling-werk {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.content-list-one-grenzen-stelling-werk {
  list-style: none;
  padding: 0;
  margin: clamp(1rem, 2vw, 1.5rem) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.content-list-one-grenzen-stelling-werk li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--lh-normal);
}

.content-list-one-grenzen-stelling-werk li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.content-image-one-grenzen-stelling-werk {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.content-img-one-grenzen-stelling-werk {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.content-section-two-grenzen-stelling-werk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-grenzen-stelling-werk {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.content-img-two-grenzen-stelling-werk {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.content-text-two-grenzen-stelling-werk {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-two-grenzen-stelling-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.content-paragraph-two-grenzen-stelling-werk {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.highlight-box-grenzen-stelling-werk {
  background: var(--color-bg-accent);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-lg);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-grenzen-stelling-werk {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

.highlight-text-grenzen-stelling-werk strong {
  color: var(--color-text-primary);
  font-weight: var(--fw-bold);
}

.content-section-three-grenzen-stelling-werk {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-three-grenzen-stelling-werk {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-three-grenzen-stelling-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.content-paragraph-three-grenzen-stelling-werk {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.stats-box-grenzen-stelling-werk {
  background: var(--color-bg-accent);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  margin-top: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.stat-item-grenzen-stelling-werk {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-grenzen-stelling-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: var(--lh-tight);
}

.stat-label-grenzen-stelling-werk {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
}

.content-image-three-grenzen-stelling-werk {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.content-img-three-grenzen-stelling-werk {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.conclusion-section-grenzen-stelling-werk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-grenzen-stelling-werk {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-title-grenzen-stelling-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.conclusion-paragraph-grenzen-stelling-werk {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.final-quote-grenzen-stelling-werk {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.quote-text-grenzen-stelling-werk {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: var(--lh-relaxed);
  margin: 0;
}

.conclusion-closing-grenzen-stelling-werk {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
  font-weight: var(--fw-medium);
}

.related-section-grenzen-stelling-werk {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-grenzen-stelling-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-header-grenzen-stelling-werk {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.related-title-grenzen-stelling-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.related-subtitle-grenzen-stelling-werk {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

.related-cards-grenzen-stelling-werk {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-grenzen-stelling-werk {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.related-card-image-grenzen-stelling-werk {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.related-img-grenzen-stelling-werk {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-grenzen-stelling-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex: 1;
}

.related-card-title-grenzen-stelling-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.related-card-text-grenzen-stelling-werk {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
  flex: 1;
}

.related-card-link-grenzen-stelling-werk {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  transition: color var(--transition-base);
  display: inline-block;
}

.related-card-link-grenzen-stelling-werk:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.disclaimer-section-grenzen-stelling-werk {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-grenzen-stelling-werk {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-title-grenzen-stelling-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.disclaimer-text-grenzen-stelling-werk {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

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

  .intro-content-grenzen-stelling-werk {
    flex-direction: column;
  }

  .content-wrapper-one-grenzen-stelling-werk,
  .content-wrapper-two-grenzen-stelling-werk,
  .content-wrapper-three-grenzen-stelling-werk {
    flex-direction: column;
  }

  .content-text-one-grenzen-stelling-werk,
  .content-text-two-grenzen-stelling-werk,
  .content-text-three-grenzen-stelling-werk,
  .content-image-one-grenzen-stelling-werk,
  .content-image-two-grenzen-stelling-werk,
  .content-image-three-grenzen-stelling-werk,
  .intro-text-grenzen-stelling-werk,
  .intro-image-grenzen-stelling-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-grenzen-stelling-werk {
    flex-direction: column;
  }

  .related-card-grenzen-stelling-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .stats-box-grenzen-stelling-werk {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .stat-item-grenzen-stelling-werk {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .hero-section-grenzen-stelling-werk,
  .intro-section-grenzen-stelling-werk,
  .content-section-one-grenzen-stelling-werk,
  .content-section-two-grenzen-stelling-werk,
  .content-section-three-grenzen-stelling-werk,
  .conclusion-section-grenzen-stelling-werk,
  .related-section-grenzen-stelling-werk,
  .disclaimer-section-grenzen-stelling-werk {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .meta-item-grenzen-stelling-werk {
    font-size: 0.8rem;
  }

  .stats-box-grenzen-stelling-werk {
    flex-direction: column;
  }

  .stat-item-grenzen-stelling-werk {
    flex: 1 1 100%;
  }
}

.main-dagelijkse-gewoontes-energie {
  width: 100%;
  overflow-x: hidden;
}

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

.hero-section-dagelijkse-gewoontes-energie {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.hero-text-dagelijkse-gewoontes-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-dagelijkse-gewoontes-energie {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.meta-item-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 500;
}

.meta-divider-dagelijkse-gewoontes-energie {
  color: var(--color-text-muted);
}

.hero-image-dagelijkse-gewoontes-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-dagelijkse-gewoontes-energie {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.breadcrumbs-dagelijkse-gewoontes-energie {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs-dagelijkse-gewoontes-energie a {
  color: var(--color-primary);
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-dagelijkse-gewoontes-energie a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-dagelijkse-gewoontes-energie span {
  color: var(--color-text-muted);
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
}

.intro-section-dagelijkse-gewoontes-energie {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-dagelijkse-gewoontes-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-dagelijkse-gewoontes-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-dagelijkse-gewoontes-energie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.tip-cards-section-dagelijkse-gewoontes-energie {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tip-cards-content-dagelijkse-gewoontes-energie {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tip-cards-header-dagelijkse-gewoontes-energie {
  text-align: center;
}

.tip-cards-title-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tip-cards-subtitle-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.tip-cards-grid-dagelijkse-gewoontes-energie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.tip-card-dagelijkse-gewoontes-energie {
  flex: 1 1 clamp(280px, 30%, 380px);
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all var(--transition-base);
}

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

.card-number-dagelijkse-gewoontes-energie {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.card-title-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.75;
}

.detail-section-dagelijkse-gewoontes-energie {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.detail-text-dagelijkse-gewoontes-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

.detail-title-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.detail-paragraph-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.detail-highlight-dagelijkse-gewoontes-energie {
  background: var(--color-bg-accent);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  line-height: 1.7;
}

.detail-image-dagelijkse-gewoontes-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

.detail-img-dagelijkse-gewoontes-energie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.science-section-dagelijkse-gewoontes-energie {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.science-image-dagelijkse-gewoontes-energie {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.science-img-dagelijkse-gewoontes-energie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.science-text-dagelijkse-gewoontes-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

.science-title-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.science-paragraph-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.implementation-section-dagelijkse-gewoontes-energie {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.implementation-content-dagelijkse-gewoontes-energie {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.implementation-header-dagelijkse-gewoontes-energie {
  text-align: center;
}

.implementation-title-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-subtitle-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.implementation-steps-dagelijkse-gewoontes-energie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-item-dagelijkse-gewoontes-energie {
  flex: 1 1 clamp(240px, 25%, 320px);
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.step-number-dagelijkse-gewoontes-energie {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.step-title-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.step-text-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.7;
}

.results-section-dagelijkse-gewoontes-energie {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.results-image-dagelijkse-gewoontes-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

.results-img-dagelijkse-gewoontes-energie {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.results-text-dagelijkse-gewoontes-energie {
  flex: 1 1 50%;
  max-width: 50%;
}

.results-title-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.results-paragraph-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-section-dagelijkse-gewoontes-energie {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-dagelijkse-gewoontes-energie {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.125rem);
  line-height: 1.75;
}

.conclusion-quote-dagelijkse-gewoontes-energie {
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.quote-text-dagelijkse-gewoontes-energie {
  color: var(--color-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
  font-style: italic;
  line-height: 1.7;
  border-left: 4px solid var(--color-primary);
  padding-left: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
}

.disclaimer-section-dagelijkse-gewoontes-energie {
  background: var(--color-bg-accent);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-dagelijkse-gewoontes-energie {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  line-height: 1.75;
}

.related-section-dagelijkse-gewoontes-energie {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-dagelijkse-gewoontes-energie {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-header-dagelijkse-gewoontes-energie {
  text-align: center;
}

.related-title-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.related-cards-dagelijkse-gewoontes-energie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-dagelijkse-gewoontes-energie {
  flex: 1 1 clamp(280px, 30%, 380px);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

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

.related-card-image-dagelijkse-gewoontes-energie {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.related-card-text-dagelijkse-gewoontes-energie {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex: 1;
}

.related-card-title-dagelijkse-gewoontes-energie {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-desc-dagelijkse-gewoontes-energie {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 0.9vw + 0.4rem, 0.95rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content-dagelijkse-gewoontes-energie,
  .intro-content-dagelijkse-gewoontes-energie,
  .detail-content-dagelijkse-gewoontes-energie,
  .science-content-dagelijkse-gewoontes-energie,
  .results-content-dagelijkse-gewoontes-energie {
    flex-direction: column;
  }

  .hero-text-dagelijkse-gewoontes-energie,
  .hero-image-dagelijkse-gewoontes-energie,
  .intro-text-dagelijkse-gewoontes-energie,
  .intro-image-dagelijkse-gewoontes-energie,
  .detail-text-dagelijkse-gewoontes-energie,
  .detail-image-dagelijkse-gewoontes-energie,
  .science-image-dagelijkse-gewoontes-energie,
  .science-text-dagelijkse-gewoontes-energie,
  .results-image-dagelijkse-gewoontes-energie,
  .results-text-dagelijkse-gewoontes-energie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .science-image-dagelijkse-gewoontes-energie {
    order: 0;
  }

  .tip-cards-grid-dagelijkse-gewoontes-energie {
    flex-direction: column;
  }

  .tip-card-dagelijkse-gewoontes-energie {
    flex: 1 1 100%;
  }

  .implementation-steps-dagelijkse-gewoontes-energie {
    flex-direction: column;
  }

  .step-item-dagelijkse-gewoontes-energie {
    flex: 1 1 100%;
  }

  .related-cards-dagelijkse-gewoontes-energie {
    flex-direction: column;
  }

  .related-card-dagelijkse-gewoontes-energie {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .hero-title-dagelijkse-gewoontes-energie,
  .intro-title-dagelijkse-gewoontes-energie,
  .detail-title-dagelijkse-gewoontes-energie,
  .science-title-dagelijkse-gewoontes-energie,
  .results-title-dagelijkse-gewoontes-energie,
  .conclusion-title-dagelijkse-gewoontes-energie,
  .tip-cards-title-dagelijkse-gewoontes-energie,
  .implementation-title-dagelijkse-gewoontes-energie,
  .related-title-dagelijkse-gewoontes-energie {
    font-size: 1.75rem;
  }

  .hero-meta-dagelijkse-gewoontes-energie {
    gap: 0.5rem;
  }

  .breadcrumbs-dagelijkse-gewoontes-energie {
    font-size: 0.75rem;
    gap: 0.25rem;
  }
}

.main-kwaliteitstijd-gezin-plannen {
  width: 100%;
  overflow-x: hidden;
}

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

.hero-section-kwaliteitstijd-gezin-plannen {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-kwaliteitstijd-gezin-plannen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
}

.breadcrumbs-kwaliteitstijd-gezin-plannen a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-kwaliteitstijd-gezin-plannen a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

.hero-text-kwaliteitstijd-gezin-plannen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-kwaliteitstijd-gezin-plannen {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.meta-item-kwaliteitstijd-gezin-plannen {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  padding: 0.5rem 1rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-full);
}

.hero-image-kwaliteitstijd-gezin-plannen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-kwaliteitstijd-gezin-plannen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

  .hero-text-kwaliteitstijd-gezin-plannen,
  .hero-image-kwaliteitstijd-gezin-plannen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-kwaliteitstijd-gezin-plannen {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
}

.intro-section-kwaliteitstijd-gezin-plannen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-kwaliteitstijd-gezin-plannen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
}

.intro-text-kwaliteitstijd-gezin-plannen {
  flex: 1 1 55%;
  max-width: 55%;
}

.intro-paragraph-kwaliteitstijd-gezin-plannen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-highlight-kwaliteitstijd-gezin-plannen {
  flex: 1 1 45%;
  max-width: 45%;
}

.highlight-box-kwaliteitstijd-gezin-plannen {
  background: var(--color-bg-accent);
  border: 2px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.highlight-title-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.highlight-list-kwaliteitstijd-gezin-plannen {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-list-kwaliteitstijd-gezin-plannen li {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-list-kwaliteitstijd-gezin-plannen li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .intro-content-kwaliteitstijd-gezin-plannen {
    flex-direction: column;
  }

  .intro-text-kwaliteitstijd-gezin-plannen,
  .intro-highlight-kwaliteitstijd-gezin-plannen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-kwaliteitstijd-gezin-plannen {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-text-kwaliteitstijd-gezin-plannen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-paragraph-kwaliteitstijd-gezin-plannen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-image-kwaliteitstijd-gezin-plannen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-kwaliteitstijd-gezin-plannen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .content-wrapper-kwaliteitstijd-gezin-plannen {
    flex-direction: column;
  }

  .content-text-kwaliteitstijd-gezin-plannen,
  .content-image-kwaliteitstijd-gezin-plannen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-kwaliteitstijd-gezin-plannen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-wrapper-reversed-kwaliteitstijd-gezin-plannen {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-list-kwaliteitstijd-gezin-plannen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.list-item-kwaliteitstijd-gezin-plannen {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.list-title-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.list-text-kwaliteitstijd-gezin-plannen {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-wrapper-reversed-kwaliteitstijd-gezin-plannen {
    flex-direction: column;
  }

  .content-text-kwaliteitstijd-gezin-plannen,
  .content-image-kwaliteitstijd-gezin-plannen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategy-section-kwaliteitstijd-gezin-plannen {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.strategy-content-kwaliteitstijd-gezin-plannen {
  display: flex;
  flex-direction: column;
}

.strategy-header-kwaliteitstijd-gezin-plannen {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.strategy-title-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-subtitle-kwaliteitstijd-gezin-plannen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.strategy-cards-kwaliteitstijd-gezin-plannen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.strategy-card-kwaliteitstijd-gezin-plannen {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.strategy-card-kwaliteitstijd-gezin-plannen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-number-kwaliteitstijd-gezin-plannen {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.card-title-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
}

.card-text-kwaliteitstijd-gezin-plannen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .strategy-cards-kwaliteitstijd-gezin-plannen {
    flex-direction: column;
    align-items: stretch;
  }

  .strategy-card-kwaliteitstijd-gezin-plannen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mindset-section-kwaliteitstijd-gezin-plannen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.mindset-wrapper-kwaliteitstijd-gezin-plannen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mindset-text-kwaliteitstijd-gezin-plannen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-title-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mindset-paragraph-kwaliteitstijd-gezin-plannen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.mindset-quote-kwaliteitstijd-gezin-plannen {
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border-radius: var(--radius-lg);
}

.quote-text-kwaliteitstijd-gezin-plannen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.quote-cite-kwaliteitstijd-gezin-plannen {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  display: block;
}

.mindset-image-kwaliteitstijd-gezin-plannen {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindset-img-kwaliteitstijd-gezin-plannen {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .mindset-wrapper-kwaliteitstijd-gezin-plannen {
    flex-direction: column;
  }

  .mindset-text-kwaliteitstijd-gezin-plannen,
  .mindset-image-kwaliteitstijd-gezin-plannen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-kwaliteitstijd-gezin-plannen {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.implementation-content-kwaliteitstijd-gezin-plannen {
  display: flex;
  flex-direction: column;
}

.implementation-title-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-intro-kwaliteitstijd-gezin-plannen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.steps-container-kwaliteitstijd-gezin-plannen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-kwaliteitstijd-gezin-plannen {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-header-kwaliteitstijd-gezin-plannen {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number-kwaliteitstijd-gezin-plannen {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  min-width: 2.5rem;
  text-align: center;
}

.step-title-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  margin-top: 0.25rem;
}

.step-text-kwaliteitstijd-gezin-plannen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-left: 3rem;
}

.conclusion-section-kwaliteitstijd-gezin-plannen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-kwaliteitstijd-gezin-plannen {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-title-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-kwaliteitstijd-gezin-plannen {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  text-align: center;
}

.conclusion-cta-kwaliteitstijd-gezin-plannen {
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.cta-button-kwaliteitstijd-gezin-plannen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.cta-button-kwaliteitstijd-gezin-plannen:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.disclaimer-section-kwaliteitstijd-gezin-plannen {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-kwaliteitstijd-gezin-plannen {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.disclaimer-title-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-kwaliteitstijd-gezin-plannen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.related-section-kwaliteitstijd-gezin-plannen {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-kwaliteitstijd-gezin-plannen {
  display: flex;
  flex-direction: column;
}

.related-title-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-kwaliteitstijd-gezin-plannen {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.related-image-kwaliteitstijd-gezin-plannen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-kwaliteitstijd-gezin-plannen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-kwaliteitstijd-gezin-plannen {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-kwaliteitstijd-gezin-plannen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.related-card-description-kwaliteitstijd-gezin-plannen {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .related-cards-kwaliteitstijd-gezin-plannen {
    flex-direction: column;
  }

  .related-card-kwaliteitstijd-gezin-plannen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-text-kwaliteitstijd-gezin-plannen {
    margin-left: 0;
  }

  .step-header-kwaliteitstijd-gezin-plannen {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-content-kwaliteitstijd-gezin-plannen,
  .intro-content-kwaliteitstijd-gezin-plannen,
  .content-wrapper-kwaliteitstijd-gezin-plannen,
  .content-wrapper-reversed-kwaliteitstijd-gezin-plannen,
  .mindset-wrapper-kwaliteitstijd-gezin-plannen {
    flex-direction: column;
  }

  .hero-text-kwaliteitstijd-gezin-plannen,
  .hero-image-kwaliteitstijd-gezin-plannen,
  .intro-text-kwaliteitstijd-gezin-plannen,
  .intro-highlight-kwaliteitstijd-gezin-plannen,
  .content-text-kwaliteitstijd-gezin-plannen,
  .content-image-kwaliteitstijd-gezin-plannen,
  .mindset-text-kwaliteitstijd-gezin-plannen,
  .mindset-image-kwaliteitstijd-gezin-plannen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .strategy-cards-kwaliteitstijd-gezin-plannen {
    flex-direction: column;
    align-items: stretch;
  }

  .strategy-card-kwaliteitstijd-gezin-plannen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.balance-journey-about {
  overflow: hidden;
}

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

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

.hero-header-about {
  text-align: center;
  max-width: 800px;
}

.hero-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin-bottom: 1rem;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.story-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.story-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-tag-about {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.story-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin-bottom: 1rem;
}

.story-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

.story-main-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.story-text-block-about {
  flex: 1 1 100%;
  max-width: 700px;
}

.story-text-block-about p {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: var(--lh-relaxed);
  margin-bottom: 1.25rem;
}

.story-text-block-about p:last-child {
  margin-bottom: 0;
}

.story-image-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

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

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

.approach-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin-bottom: 1rem;
}

.approach-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.process-step-about {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}

.step-number-about {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  min-width: 80px;
}

.step-content-about {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.step-text-about {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

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

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

.values-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.values-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin-bottom: 1rem;
}

.values-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

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

.value-card-about {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.card-icon-about {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.card-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.card-text-about {
  font-size: clamp(0.875rem, 1.2vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

.featured-quote-about {
  background: var(--color-bg-accent);
  border-left: 4px solid var(--color-primary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-md);
  max-width: 700px;
  margin: 0 auto;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: var(--lh-relaxed);
  margin-bottom: 1.5rem;
}

.quote-author-about {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.disclaimer-section-about {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(13, 148, 136, 0.15);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-heading-about {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1.2vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

@media (min-width: 768px) {
  .process-step-about {
    gap: 3rem;
  }

  .step-number-about {
    min-width: 100px;
  }

  .value-card-about {
    flex: 1 1 300px;
  }
}

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

  .story-section-about {
    padding: 6rem 0;
  }

  .approach-section-about {
    padding: 6rem 0;
  }

  .values-section-about {
    padding: 6rem 0;
  }

  .process-step-about {
    gap: 4rem;
  }

  .value-cards-about {
    gap: 2.5rem;
  }
}

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

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0 var(--space-3xl) 0;
  overflow: hidden;
}

.portfolio-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.portfolio-hero-content {
  text-align: center;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-sm) 0;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.portfolio-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.05);
}

.portfolio-card-content {
  padding: var(--space-lg);
}

.portfolio-card-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-sm) 0;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0 0 var(--space-md) 0;
}

.portfolio-card-meta {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.portfolio-cta {
  background-color: var(--color-bg-accent);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.portfolio-cta-content {
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-md) 0;
}

.portfolio-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.1rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0 0 var(--space-2xl) 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  color: var(--color-bg-tertiary);
  background-color: var(--color-primary);
  padding: var(--space-sm) var(--space-2xl);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: 2px solid var(--color-primary);
}

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

.portfolio-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) 0 var(--space-4xl) 0;
  }

  .portfolio-projects {
    padding: var(--space-3xl) 0;
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card {
    display: flex;
    flex-direction: column;
  }

  .portfolio-card-image {
    height: 280px;
  }

  .portfolio-cta {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) 0;
  }

  .portfolio-projects {
    padding: var(--space-4xl) 0;
  }

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

  .portfolio-card-image {
    height: 300px;
  }

  .portfolio-cta {
    padding: var(--space-4xl) 0;
  }
}

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

.faq-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
}

.faq-hero {
  background-color: var(--color-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-bg-primary);
  margin: 0;
  line-height: var(--lh-tight);
  margin-bottom: var(--space-sm);
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: var(--fw-regular);
  color: var(--color-primary-light);
  margin: 0;
  line-height: var(--lh-normal);
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-hero-title {
    margin-bottom: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

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

.faq-item {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.faq-question:hover {
  background-color: var(--color-bg-secondary);
  color: var(--color-primary);
}

.faq-question-text {
  text-align: left;
  flex: 1;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
  transition: max-height var(--transition-base);
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer p {
  padding: var(--space-md);
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

.faq-image {
  display: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.faq-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-container {
    grid-template-columns: 1fr 350px;
    gap: var(--space-2xl);
  }

  .faq-image {
    display: block;
    position: sticky;
    top: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--space-3xl) var(--space-xl);
  }

  .faq-container {
    gap: var(--space-3xl);
  }

  .faq-question {
    padding: var(--space-lg);
    font-size: 1.05rem;
  }

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

.faq-cta {
  background-color: var(--color-bg-accent);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: var(--fw-regular);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--lh-normal);
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: var(--fw-semibold);
  transition: background-color var(--transition-base), transform var(--transition-base);
  box-shadow: var(--shadow-md);
}

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

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-cta-title {
    margin-bottom: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.wellness-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  min-height: 100vh;
  padding: var(--space-lg) 0;
}

.wellness-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.wellness-docs .content {
  max-width: 800px;
  margin: 0 auto;
}

.wellness-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.wellness-docs .last-updated {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  font-weight: var(--fw-regular);
}

.wellness-docs section {
  margin-bottom: var(--space-2xl);
}

.wellness-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.wellness-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--lh-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.wellness-docs ul,
.wellness-docs ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--lh-relaxed);
  color: var(--color-text-secondary);
}

.wellness-docs li {
  margin-bottom: var(--space-sm);
}

.wellness-docs strong {
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
}

.wellness-docs .contact-section {
  background-color: var(--color-bg-accent);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

.wellness-docs .contact-section h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.wellness-docs .contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--lh-normal);
}

.wellness-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: var(--fw-semibold);
}

@media (min-width: 768px) {
  .wellness-docs {
    padding: var(--space-xl) 0;
  }

  .wellness-docs .container {
    padding: 0 var(--space-xl);
  }

  .wellness-docs section {
    margin-bottom: var(--space-3xl);
  }

  .wellness-docs .contact-section {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .wellness-docs {
    padding: var(--space-2xl) 0;
  }

  .wellness-docs .container {
    padding: 0 var(--space-2xl);
  }

  .wellness-docs h1 {
    margin-bottom: var(--space-lg);
  }

  .wellness-docs section {
    margin-bottom: var(--space-4xl);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) 0;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.thank-wrapper {
  text-align: center;
  animation: slideInUp 0.6s ease-out;
}

.thank-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-xl);
  animation: scaleIn 0.6s ease-out 0.1s both;
}

.thank-icon svg {
  width: clamp(60px, 15vw, 80px);
  height: clamp(60px, 15vw, 80px);
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
  letter-spacing: -0.5px;
}

.thank-lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.thank-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-relaxed);
}

.thank-next-steps {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: var(--lh-relaxed);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border-color: var(--color-primary);
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-md);
  }

  .thank-wrapper {
    padding: var(--space-xl) 0;
  }

  .thank-icon {
    margin-bottom: var(--space-2xl);
  }

  .btn {
    padding: var(--space-md) var(--space-2xl);
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-lg);
  }

  .thank-wrapper {
    padding: var(--space-2xl) 0;
  }

  .thank-icon {
    margin-bottom: var(--space-2xl);
  }

  .btn {
    padding: 0.875rem 2.5rem;
  }
}

@media (max-width: 480px) {
  .thank-title {
    margin-bottom: var(--space-sm);
  }

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

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

  .thank-next-steps {
    margin-bottom: var(--space-lg);
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.error-code-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

.error-decoration {
  position: absolute;
  width: clamp(150px, 40vw, 300px);
  height: clamp(150px, 40vw, 300px);
  border: 3px solid var(--color-primary-light);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

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

.error-message {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
}

.error-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
  font-weight: var(--fw-medium);
}

.error-description {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: var(--fw-semibold);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  margin-top: var(--space-md);
}

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

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

.btn-primary:active {
  transform: translateY(0px);
}

.error-hints {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--color-primary-light);
}

.hint-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: var(--color-bg-accent);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.hint-item:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-4px);
}

.hint-icon {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  display: block;
  line-height: 1;
}

.hint-item p {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-primary);
  line-height: var(--lh-normal);
  margin: 0;
  font-weight: var(--fw-medium);
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .error-hints {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

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

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .error-wrapper {
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
  }

  .error-code {
    font-size: clamp(5rem, 18vw, 8rem);
  }

  .error-decoration {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 639px) {
  .error-code-container {
    margin-bottom: var(--space-lg);
  }

  .error-decoration {
    animation: float 8s ease-in-out infinite;
  }
}

.contact-get-started-page {
  background-color: var(--color-bg-primary);
  width: 100%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

.contact-get-started-hero {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
}

.contact-get-started-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
}

.contact-get-started-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
}

.contact-get-started-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
  max-width: 600px;
}

@media (min-width: 768px) {
  .contact-get-started-hero {
    padding: var(--space-3xl) 0;
  }

  .contact-get-started-hero-content {
    padding: var(--space-2xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-get-started-hero {
    padding: var(--space-4xl) 0;
  }
}

.contact-get-started-main {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.contact-get-started-main-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-get-started-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  width: 100%;
}

.contact-get-started-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-get-started-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-get-started-main {
    padding: var(--space-3xl) 0;
  }

  .contact-get-started-grid {
    gap: var(--space-3xl);
  }

  .contact-get-started-form-wrapper {
    flex: 1 1 calc(50% - var(--space-lg));
  }

  .contact-get-started-info-wrapper {
    flex: 1 1 calc(50% - var(--space-lg));
  }
}

@media (min-width: 1024px) {
  .contact-get-started-main {
    padding: var(--space-4xl) 0;
  }

  .contact-get-started-grid {
    gap: var(--space-4xl);
  }
}

.contact-get-started-form-header {
  margin-bottom: var(--space-xl);
}

.contact-get-started-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-sm) 0;
}

.contact-get-started-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

.contact-get-started-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.contact-get-started-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  display: block;
}

.contact-get-started-input,
.contact-get-started-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-secondary);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  line-height: var(--lh-normal);
}

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

.contact-get-started-input:focus,
.contact-get-started-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-tertiary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.contact-get-started-input:hover:not(:focus),
.contact-get-started-textarea:hover:not(:focus) {
  border-color: var(--color-primary-light);
}

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

.contact-get-started-form-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.contact-get-started-submit {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--fw-semibold);
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: none;
  letter-spacing: 0;
}

.contact-get-started-submit:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-get-started-submit:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.contact-get-started-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.contact-get-started-privacy-notice {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
  text-align: center;
}

.contact-get-started-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  transition: color var(--transition-fast);
}

.contact-get-started-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-started-privacy-link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.contact-get-started-info-header {
  margin-bottom: var(--space-xl);
}

.contact-get-started-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-sm) 0;
}

.contact-get-started-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

.contact-get-started-info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-get-started-info-item {
  display: flex;
  gap: var(--space-md);
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-get-started-info-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-get-started-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-accent);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-get-started-info-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-get-started-info-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1;
}

.contact-get-started-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
}

.contact-get-started-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  margin: 0;
}

.contact-get-started-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  transition: color var(--transition-fast);
}

.contact-get-started-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-get-started-info-link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.contact-get-started-info-box {
  background: linear-gradient(135deg, var(--color-bg-accent) 0%, var(--color-bg-tertiary) 100%);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.contact-get-started-info-box-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-md) 0;
}

.contact-get-started-info-box-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-get-started-info-box-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-get-started-info-box-item::before {
  content: "";
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (min-width: 1024px) {
  .contact-get-started-form {
    padding: var(--space-3xl);
  }

  .contact-get-started-info-box {
    padding: var(--space-3xl);
  }
}

@media (max-width: 767px) {
  .contact-get-started-form {
    padding: var(--space-lg);
  }

  .contact-get-started-info-box {
    padding: var(--space-lg);
  }

  .contact-get-started-info-item {
    padding: var(--space-md);
  }
}
.header-balance-hub-mobile-toggle.active{
  display: none;
}
.hero-section-grenzen-stellen-werk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-grenzen-stellen-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

.hero-text-grenzen-stellen-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-grenzen-stellen-werk {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-text-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.breadcrumbs-grenzen-stellen-werk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-grenzen-stellen-werk a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-grenzen-stellen-werk a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-grenzen-stellen-werk span {
  color: var(--color-text-secondary);
}

.hero-subtitle-grenzen-stellen-werk {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
  font-weight: var(--fw-regular);
}

.hero-meta-grenzen-stellen-werk {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-grenzen-stellen-werk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-grenzen-stellen-werk i {
  color: var(--color-primary);
  font-size: 1em;
}

.hero-image-grenzen-stellen-werk {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-img-grenzen-stellen-werk {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.intro-section-grenzen-stellen-werk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-grenzen-stellen-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

.intro-text-grenzen-stellen-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 100%;
}

.intro-title-grenzen-stellen-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.intro-paragraph-grenzen-stellen-werk {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.intro-image-grenzen-stellen-werk {
  width: 100%;
  flex: 1 1 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.intro-img-grenzen-stellen-werk {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.content-section-one-grenzen-stellen-werk {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-one-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-one-grenzen-stellen-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.content-paragraph-one-grenzen-stellen-werk {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.content-list-one-grenzen-stellen-werk {
  list-style: none;
  padding: 0;
  margin: clamp(1rem, 2vw, 1.5rem) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.content-list-one-grenzen-stellen-werk li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--lh-normal);
}

.content-list-one-grenzen-stellen-werk li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.content-image-one-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.content-img-one-grenzen-stellen-werk {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.content-section-two-grenzen-stellen-werk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.content-img-two-grenzen-stellen-werk {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.content-text-two-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-two-grenzen-stellen-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.content-paragraph-two-grenzen-stellen-werk {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.highlight-box-grenzen-stellen-werk {
  background: var(--color-bg-accent);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-lg);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.content-section-three-grenzen-stellen-werk {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-three-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-three-grenzen-stellen-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.stats-box-grenzen-stellen-werk {
  background: var(--color-bg-accent);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  margin-top: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.stat-item-grenzen-stellen-werk {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-grenzen-stellen-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: var(--lh-tight);
}

.stat-label-grenzen-stellen-werk {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--lh-normal);
}

.content-image-three-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.content-img-three-grenzen-stellen-werk {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.conclusion-section-grenzen-stellen-werk {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-grenzen-stellen-werk {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-title-grenzen-stellen-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.final-quote-grenzen-stellen-werk {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.related-section-grenzen-stellen-werk {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-grenzen-stellen-werk {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-header-grenzen-stellen-werk {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.related-title-grenzen-stellen-werk {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
  margin: 0;
  word-wrap: break-word;
}

.related-cards-grenzen-stellen-werk {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

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

  .intro-content-grenzen-stellen-werk {
    flex-direction: column;
  }

  .content-wrapper-one-grenzen-stellen-werk,
  .content-wrapper-two-grenzen-stellen-werk,
  .content-wrapper-three-grenzen-stellen-werk {
    flex-direction: column;
  }

  .content-text-one-grenzen-stellen-werk,
  .content-text-two-grenzen-stellen-werk,
  .content-text-three-grenzen-stellen-werk,
  .content-image-one-grenzen-stellen-werk,
  .content-image-two-grenzen-stellen-werk,
  .content-image-three-grenzen-stellen-werk,
  .intro-text-grenzen-stellen-werk,
  .intro-image-grenzen-stellen-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-grenzen-stellen-werk {
    flex-direction: column;
  }

  .stats-box-grenzen-stellen-werk {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .stat-item-grenzen-stellen-werk {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .hero-section-grenzen-stellen-werk,
  .intro-section-grenzen-stellen-werk,
  .content-section-one-grenzen-stellen-werk,
  .content-section-two-grenzen-stellen-werk,
  .content-section-three-grenzen-stellen-werk,
  .conclusion-section-grenzen-stellen-werk,
  .related-section-grenzen-stellen-werk {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .meta-item-grenzen-stellen-werk {
    font-size: 0.8rem;
  }

  .stats-box-grenzen-stellen-werk {
    flex-direction: column;
  }

  .stat-item-grenzen-stellen-werk {
    flex: 1 1 100%;
  }
}