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

:root {
  
  
  
  
  --color-bg-primary: #022c22;
  --color-bg-secondary: #064e3b;
  --color-bg-tertiary: #065f46;
  --color-bg-light: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-card: rgba(16, 185, 129, 0.08);
  
  
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #a7f3d0;
  --color-text-muted-dark: #6ee7b7;
  
  --color-text-primary-light: #022c22;
  --color-text-secondary-light: #374151;
  --color-text-muted-light: #6b7280;
  
  
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-light: #d1fae5;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(16, 185, 129, 0.3);
}

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

.btn-secondary:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--color-primary-hover);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

.grid {
  display: grid;
}

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

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

.hidden {
  display: none !important;
}

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

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 768px) {
  .grid-auto {
    grid-template-columns: 1fr;
  }
}

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

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

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}

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

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

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

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

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

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a, a:visited {
    text-decoration: underline;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
  
  img {
    max-width: 100% !important;
  }
}

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

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

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

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
  }
}

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

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all var(--transition-base);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.3);
}

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

.card-light:hover {
  box-shadow: var(--shadow-lg);
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--color-primary);
  color: #000000;
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-secondary {
  background: var(--color-secondary);
  color: #000000;
}

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

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

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

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

.icon-circle {
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
}

.decoration-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.3;
}

.decoration-line {
  height: 2px;
  background: var(--color-secondary);
  opacity: 0.5;
}

.accent-border-top {
  border-top: 3px solid var(--color-primary);
}

.accent-border-left {
  border-left: 4px solid var(--color-primary);
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }
  
  .flex-column-mobile {
    flex-direction: column;
  }
}

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

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

@media (prefers-color-scheme: dark) {
  
}

@media (prefers-color-scheme: light) {
  
}

.flex, .flex-center, .flex-between {
  display: -webkit-flex;
  display: flex;
}

.grid {
  display: -ms-grid;
  display: grid;
}

a, button, input, textarea, select {
  -webkit-transition: all var(--transition-base);
  -moz-transition: all var(--transition-base);
  -ms-transition: all var(--transition-base);
  -o-transition: all var(--transition-base);
  transition: all var(--transition-base);
}
:root {
  --color-bg-primary: #022c22;
  --color-bg-secondary: #064e3b;
  --color-bg-tertiary: #065f46;
  --color-bg-light: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-card: rgba(16, 185, 129, 0.08);
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #a7f3d0;
  --color-text-muted-dark: #6ee7b7;
  --color-text-primary-light: #022c22;
  --color-text-secondary-light: #374151;
  --color-text-muted-light: #6b7280;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-light: #d1fae5;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --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;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

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

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

.header-balance-hub {
  background: var(--color-bg-primary);
  padding: clamp(0.75rem, 2vw, 1.25rem) 0;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

.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-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  letter-spacing: -0.5px;
}

.header-balance-hub-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.header-balance-hub-nav-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
  position: relative;
}

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

.header-balance-hub-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition-base);
}

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

.header-balance-hub-cta-button {
  background: var(--color-primary);
  color: #0f172a;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 2vw, 1.5rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

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

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

.header-balance-hub-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-primary-dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-sm);
  transition: color var(--transition-base);
  z-index: 101;
}

.header-balance-hub-mobile-toggle:hover {
  color: var(--color-secondary);
}

.header-balance-hub-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

.header-balance-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-secondary);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

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

.header-balance-hub-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.header-balance-hub-mobile-title {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  font-family: var(--font-heading);
}

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

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

.header-balance-hub-mobile-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

.header-balance-hub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1rem, 3vw, 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-secondary-dark);
  text-decoration: none;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.header-balance-hub-mobile-link:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-secondary);
  padding-left: clamp(1.5rem, 5vw, 2rem);
}

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

.header-balance-hub-mobile-cta {
  background: var(--color-primary);
  color: #0f172a;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1rem, 4vw, 1.5rem);
  margin: clamp(1rem, 3vw, 1.5rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  text-align: center;
  transition: all var(--transition-base);
  display: block;
}

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

.header-balance-hub-mobile-cta:active {
  transform: translateY(0);
}

.header-balance-hub-mobile-cta:focus-visible {
  outline: 2px solid var(--color-accent-light);
  outline-offset: 2px;
}

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

  .header-balance-hub-container {
    gap: var(--space-xl);
  }

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

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

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

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

@media (min-width: 1024px) {
  .header-balance-hub-container {
    gap: var(--space-2xl);
  }

  .header-balance-hub-logo-img {
    width: 48px;
    height: 48px;
  }

  .header-balance-hub-logo-text {
    font-size: 1.75rem;
  }

  .header-balance-hub-nav-link {
    font-size: 1rem;
  }

  .header-balance-hub-cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

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

    .balans-hub {
  width: 100%;
}

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

.hero-deco-gradient-field {
  position: absolute;
  top: 10%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-glow-primary {
  position: absolute;
  bottom: 20%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-accent-orb-left {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(167, 243, 208, 0.04);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-accent-orb-right {
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: rgba(110, 231, 183, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 2;
  pointer-events: none;
}

.hero-deco-floating-shape {
  position: absolute;
  top: 20%;
  right: 20%;
  width: 180px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-line-accent {
  position: absolute;
  top: 50%;
  left: 0;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-deco-corner-element {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 120px;
  height: 120px;
  background: rgba(34, 197, 94, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-secondary-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.07) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-subtitle-balans {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #a7f3d0;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

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

.hero-stats-balans {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(52, 211, 153, 0.2);
  border-bottom: 1px solid rgba(52, 211, 153, 0.2);
}

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

.hero-stat-number-balans {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #34d399;
  line-height: 1;
}

.hero-stat-label-balans {
  font-size: 0.875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero-cta-group-balans {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-cta-group-balans .btn {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
}

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

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

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

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

.benefits-deco-shape-accent {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 300px;
  height: 280px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.benefits-deco-glow-soft {
  position: absolute;
  top: 50%;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.benefits-deco-line-divider {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.benefits-deco-floating-element {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 160px;
  height: 160px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.benefits-deco-corner-accent {
  position: absolute;
  top: 5%;
  left: 3%;
  width: 140px;
  height: 140px;
  background: rgba(110, 231, 183, 0.05);
  border-radius: 70% 30% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.benefits-deco-secondary-shape {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.benefits-header-balans {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

.benefits-tag-balans {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.benefits-title-balans {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.benefits-card-balans {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-card-balans:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.2);
}

.benefits-card-icon-balans {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  color: #10b981;
  font-size: 1.75rem;
}

.benefits-card-title-balans {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.benefits-card-text-balans {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

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

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

.featured-deco-gradient-1 {
  position: absolute;
  top: 5%;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.featured-deco-orb-accent {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-deco-shape-organic {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 200px;
  height: 220px;
  background: rgba(52, 211, 153, 0.05);
  border-radius: 65% 35% 40% 60% / 35% 65% 35% 65%;
  z-index: 1;
  pointer-events: none;
}

.featured-deco-glow-subtle {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-deco-line-element {
  position: absolute;
  top: 25%;
  right: 20%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.featured-deco-float-shape {
  position: absolute;
  bottom: 10%;
  left: 15%;
  width: 170px;
  height: 170px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 50%;
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
}

.featured-deco-corner-detail {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 130px;
  height: 130px;
  background: rgba(110, 231, 183, 0.05);
  border-radius: 35% 65% 65% 35% / 65% 35% 65% 35%;
  z-index: 1;
  pointer-events: none;
}

.featured-header-balans {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

.featured-tag-balans {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.featured-title-balans {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.featured-cards-balans {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.featured-card-balans {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: 14px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.featured-card-balans:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow: 0 15px 40px rgba(52, 211, 153, 0.15);
}

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

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

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

.featured-card-text-balans {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.featured-card-link-balans {
  font-size: 0.9375rem;
  color: #34d399;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.featured-card-link-balans:hover {
  color: #6ee7b7;
  transform: translateX(4px);
}

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

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

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

.process-deco-mesh-gradient {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-glow-primary {
  position: absolute;
  bottom: 20%;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-shape-accent {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 180px;
  height: 200px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.process-deco-floating-element {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(110, 231, 183, 0.06) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-line-accent {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.process-deco-secondary-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.process-header-balans {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

.process-tag-balans {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.process-title-balans {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.process-step-balans {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #10b981;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-balans:hover {
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.1);
  transform: translateX(4px);
}

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

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

.process-step-title-balans {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.process-step-text-balans {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-step-balans {
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

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

.values-deco-accent-1 {
  position: absolute;
  top: 15%;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.values-deco-accent-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.values-deco-shape {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 200px;
  height: 220px;
  background: rgba(52, 211, 153, 0.04);
  border-radius: 70% 30% 40% 60% / 30% 70% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.values-deco-glow {
  position: absolute;
  bottom: 30%;
  right: 10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.05) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.values-deco-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.values-split-balans {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: flex-start;
}

.values-left-balans {
  flex: 1 1 350px;
  max-width: 550px;
}

.values-right-balans {
  flex: 1 1 300px;
  max-width: 450px;
}

.values-tag-balans {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.values-title-balans {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.values-points-balans {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.values-point-balans {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.values-point-balans i {
  color: #34d399;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.values-point-text-balans {
  font-size: 0.9375rem;
  color: #a7f3d0;
  line-height: 1.6;
}

.values-quote-balans {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #34d399;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  justify-content: center;
}

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

.values-quote-author-balans {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .values-split-balans {
    flex-direction: column;
  }

  .values-left-balans,
  .values-right-balans {
    flex: 1 1 100%;
    max-width: none;
  }

  .values-quote-balans {
    min-height: 250px;
  }
}

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

.testimonials-deco-gradient {
  position: absolute;
  top: -100px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-deco-glow-1 {
  position: absolute;
  bottom: 20%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-deco-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-deco-shape {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 180px;
  height: 200px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 60% 40% 50% 50% / 50% 50% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.testimonials-deco-accent {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 160px;
  height: 160px;
  background: rgba(110, 231, 183, 0.04);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-header-balans {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-tag-balans {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.testimonials-title-balans {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

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

.testimonials-card-balans:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.2);
}

.testimonials-stars-balans {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 1rem;
}

.testimonials-text-balans {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.testimonials-author-balans {
  font-size: 0.875rem;
  color: #1e293b;
  font-weight: 600;
  margin: 0;
}

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

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

.cta-deco-mesh-1 {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  filter: blur(95px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-glow-primary {
  position: absolute;
  bottom: -50px;
  left: 10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.09) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-shape-accent {
  position: absolute;
  top: 30%;
  left: -80px;
  width: 220px;
  height: 240px;
  background: rgba(52, 211, 153, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.cta-deco-floating {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(167, 243, 208, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.cta-deco-line {
  position: absolute;
  bottom: 40%;
  left: 5%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.cta-deco-secondary {
  position: absolute;
  bottom: 15%;
  right: 20%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 50%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.cta-content-balans .btn {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 3vw, 3rem);
}

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

.contact-deco-accent-1 {
  position: absolute;
  top: 10%;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-accent-2 {
  position: absolute;
  bottom: 15%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-shape {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 200px;
  height: 220px;
  background: rgba(34, 197, 94, 0.04);
  border-radius: 60% 40% 50% 50% / 50% 50% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-deco-glow {
  position: absolute;
  bottom: 30%;
  right: 20%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(110, 231, 183, 0.05) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.contact-header-balans {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-tag-balans {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.contact-title-balans {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.contact-content-balans {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 4vw, 3.5rem);
  align-items: flex-start;
}

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

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

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

.contact-label-balans {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
}

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

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

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

.contact-submit-balans {
  padding: 1rem 2rem;
  background: #10b981;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
}

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

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

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

.contact-info-block-balans {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.contact-info-title-balans {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.contact-faq-item-balans {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

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

.contact-faq-question-balans {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.contact-faq-answer-balans {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.contact-faq-link-balans {
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease;
}

.contact-faq-link-balans:hover {
  color: #059669;
  text-decoration: underline;
}

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

  .contact-form-wrapper-balans,
  .contact-info-wrapper-balans {
    flex: 1 1 100%;
    max-width: none;
  }

  .contact-info-block-balans {
    padding: 1.5rem;
  }
}

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

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

.cookie-banner-text {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

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

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

.cookie-btn-accept {
  background: #10b981;
  color: #000000;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .hero-stat-number-balans {
    font-size: 2rem;
  }

  .values-split-balans {
    flex-direction: column;
  }

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

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

*:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

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

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

.footer-content {
  display: block;
}

.footer-about {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

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

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

.footer-navigation {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

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

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

.footer-nav-link {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

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

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

.footer-contact {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.footer-contact-label {
  color: var(--color-text-muted-dark);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(0.75rem, 0.9vw + 0.3rem, 0.875rem);
  letter-spacing: 0.5px;
}

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

.footer-legal {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

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

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

.footer-legal-link {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

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

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

.footer-copyright {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.footer-copyright-text {
  font-size: clamp(0.8125rem, 0.9vw + 0.4rem, 0.9375rem);
  color: var(--color-text-muted-dark);
  letter-spacing: 0.3px;
}

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

  .footer-about-title,
  .footer-nav-title,
  .footer-contact-title,
  .footer-legal-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  }

  .footer-about-text {
    font-size: clamp(0.9375rem, 1.2vw + 0.4rem, 1.125rem);
  }

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

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

  .footer-about {
    grid-column: 1 / 2;
    border-bottom: none;
    border-right: 1px solid rgba(16, 185, 129, 0.2);
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .footer-navigation {
    grid-column: 2 / 3;
    border-bottom: none;
    border-right: 1px solid rgba(16, 185, 129, 0.2);
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .footer-contact {
    grid-column: 3 / 4;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .footer-legal {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  }

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

  .footer-nav-links,
  .footer-legal-links {
    flex-direction: column;
    gap: clamp(0.875rem, 1.5vw, 1.25rem);
  }
}

@media (min-width: 1440px) {
  .footer {
    padding: 6rem 0;
  }

  .footer-about-title,
  .footer-nav-title,
  .footer-contact-title,
  .footer-legal-title {
    font-size: 1.5rem;
  }

  .footer-about-text {
    font-size: 1.0625rem;
  }

  .footer-copyright-text {
    font-size: 0.9375rem;
  }
}

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

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

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

.main.category-page-work-life-balance {
  width: 100%;
}

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

.hero-ambient-glow-category {
  position: absolute;
  top: 5%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field-category {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-category {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(52, 211, 153, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

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

.hero-header-category {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-tag-category {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(52, 211, 153, 0.15);
  color: #a7f3d0;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.hero-title-category {
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
}

.hero-subtitle-category {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  max-width: 600px;
  line-height: 1.6;
}

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

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

.stat-number-category {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  display: block;
}

.stat-label-category {
  font-size: 0.875rem;
  color: #6ee7b7;
  opacity: 0.9;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-section-category {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

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

.posts-header-category {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.posts-title-category {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.2;
}

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

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

.card-category {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.card-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: #a7f3d0;
}

.card-image-category {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

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

.card-title-category {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #022c22;
  line-height: 1.25;
}

.card-description-category {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.card-meta-category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

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

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

.card-link-category {
  align-self: flex-start;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #10b981;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 300ms ease-in-out;
}

.card-link-category:hover {
  border-bottom-color: #10b981;
  color: #059669;
}

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

.principles-section-category {
  position: relative;
  overflow: hidden;
  background: #064e3b;
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.principles-ambient-glow-category {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.principles-accent-shape-category {
  position: absolute;
  bottom: 5%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

.principles-subtitle-category {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  max-width: 500px;
  margin: 0 auto;
}

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

.principle-item-category {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(167, 243, 208, 0.2);
}

.principle-number-category {
  font-size: 2.5rem;
  font-weight: 800;
  color: #34d399;
  line-height: 1;
}

.principle-text-category {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.principle-heading-category {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.principle-description-category {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #a7f3d0;
}

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

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

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

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

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

.featured-quote-category {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #10b981;
  background: #ffffff;
  margin: clamp(2rem, 4vw, 4rem) 0;
  border-radius: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-category {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #022c22;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.quote-author-category {
  font-size: 0.9375rem;
  color: #64748b;
  font-style: normal;
}

.benefits-list-category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item-category {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

.benefit-title-category {
  font-size: 1.125rem;
  font-weight: 700;
  color: #022c22;
}

.benefit-text-category {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

@media (max-width: 768px) {
  .benefits-list-category {
    grid-template-columns: 1fr;
  }
}

.cta-section-category {
  position: relative;
  overflow: hidden;
  background: #022c22;
  padding: clamp(4rem, 10vw, 6rem) 0;
}

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

.cta-shape-accent-category {
  position: absolute;
  bottom: -100px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(52, 211, 153, 0.06);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.cta-title-category {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-text-category {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #a7f3d0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
  background: #10b981;
  color: #000000;
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  border-radius: 8px;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (max-width: 480px) {
  .hero-title-category {
    font-size: 1.75rem;
  }

  .posts-title-category {
    font-size: 1.5rem;
  }

  .principles-title-category {
    font-size: 1.5rem;
  }

  .benefits-title-category {
    font-size: 1.5rem;
  }

  .cta-title-category {
    font-size: 1.5rem;
  }

  .stat-number-category {
    font-size: 1.5rem;
  }

  .principle-number-category {
    font-size: 2rem;
  }
}

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

.card-category:focus-visible,
.card-link-category:focus-visible,
.cta-button-category:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

.main-stress-reduceren-werkplek {
  width: 100%;
  background: #ffffff;
}

.hero-section-stress-reduceren-werkplek {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-block-stress-reduceren-werkplek {
  flex: 1 1 300px;
  max-width: 55%;
}

.hero-image-block-stress-reduceren-werkplek {
  flex: 1 1 300px;
  max-width: 45%;
}

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

.hero-title-stress-reduceren-werkplek {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle-stress-reduceren-werkplek {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.article-meta-stress-reduceren-werkplek {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.meta-badge-stress-reducieren-werkplek i {
  color: #34d399;
}

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

.breadcrumb-link-stress-reduceren-werkplek {
  color: #a7f3d0;
  transition: color 0.2s ease;
}

.breadcrumb-link-stress-reduceren-werkplek:hover {
  color: #d1fae5;
  text-decoration: underline;
}

.breadcrumb-separator-stress-reduceren-werkplek {
  color: #6ee7b7;
  margin: 0 0.25rem;
}

.breadcrumb-current-stress-reduceren-werkplek {
  color: #d1fae5;
}

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

.intro-content-stress-reduceren-werkplek {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-block-stress-reduceren-werkplek {
  flex: 1 1 300px;
  max-width: 55%;
}

.intro-image-block-stress-reduceren-werkplek {
  flex: 1 1 300px;
  max-width: 45%;
}

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

.intro-paragraph-stress-reduceren-werkplek {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.techniques-section-stress-reduceren-werkplek {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-header-stress-reduceren-werkplek {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-stress-reduceren-werkplek {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

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

.techniques-content-stress-reduceren-werkplek {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.techniques-text-block-stress-reduceren-werkplek {
  flex: 1 1 300px;
  max-width: 55%;
}

.techniques-image-block-stress-reduceren-werkplek {
  flex: 1 1 300px;
  max-width: 45%;
}

.techniques-image-stress-reduceren-werkplek {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.techniques-paragraph-stress-reduceren-werkplek {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.techniques-note-stress-reduceren-werkplek {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid #10b981;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.steps-container-stress-reduceren-werkplek {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.step-item-stress-reduceren-werkplek {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-stress-reduceren-werkplek {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-stress-reduceren-werkplek {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.step-title-stress-reduceren-werkplek {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.step-text-stress-reduceren-werkplek {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.mindfulness-section-stress-reduceren-werkplek {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mindfulness-content-stress-reduceren-werkplek {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mindfulness-image-block-stress-reduceren-werkplek {
  flex: 1 1 300px;
  max-width: 45%;
  order: -1;
}

.mindfulness-text-block-stress-reduceren-werkplek {
  flex: 1 1 300px;
  max-width: 55%;
}

.mindfulness-image-stress-reduceren-werkplek {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mindfulness-title-stress-reduceren-werkplek {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.mindfulness-paragraph-stress-reduceren-werkplek {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.benefits-box-stress-reduceren-werkplek {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.benefits-heading-stress-reduceren-werkplek {
  font-size: 1.125rem;
  font-weight: 600;
  color: #d1fae5;
  margin-bottom: 1rem;
}

.benefits-list-stress-reduceren-werkplek {
  list-style: none;
  padding: 0;
}

.benefits-item-stress-reduceren-werkplek {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: #a7f3d0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.benefits-item-stress-reduceren-werkplek::before {
  content: "";
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: 700;
}

.mindfulness-tip-stress-reduceren-werkplek {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.15);
  border-left: 4px solid #34d399;
  border-radius: 8px;
  font-style: italic;
}

.strategies-section-stress-reduceren-werkplek {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-header-stress-reduceren-werkplek {
  text-align: center;
  margin-bottom: 3rem;
}

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

.strategies-cards-stress-reduceren-werkplek {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.strategy-card-stress-reduceren-werkplek {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.strategy-card-stress-reduceren-werkplek:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.strategy-card-icon-stress-reduceren-werkplek {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border-radius: 10px;
  font-size: 1.5rem;
}

.strategy-card-title-stress-reduceren-werkplek {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.strategy-card-text-stress-reduceren-werkplek {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.quote-section-stress-reduceren-werkplek {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-stress-reduceren-werkplek {
  padding: 2.5rem;
  border-left: 4px solid #34d399;
  background: rgba(16, 185, 129, 0.08);
  margin: 0;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

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

.quote-author-stress-reduceren-werkplek {
  font-size: 0.9375rem;
  color: #a7f3d0;
  font-style: normal;
  font-weight: 500;
}

.practical-section-stress-reduceren-werkplek {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-content-stress-reduceren-werkplek {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-text-block-stress-reduceren-werkplek {
  flex: 1 1 300px;
  max-width: 55%;
}

.practical-image-block-stress-reduceren-werkplek {
  flex: 1 1 300px;
  max-width: 45%;
}

.practical-image-stress-reduceren-werkplek {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practical-title-stress-reduceren-werkplek {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.practical-paragraph-stress-reduceren-werkplek {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tips-list-stress-reduceren-werkplek {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tip-item-stress-reduceren-werkplek {
  padding: 1rem;
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #10b981;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tip-title-stress-reduceren-werkplek {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.tip-text-stress-reduceren-werkplek {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.conclusion-section-stress-reduceren-werkplek {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-stress-reduceren-werkplek {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-stress-reduceren-werkplek {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.conclusion-paragraph-stress-reduceren-werkplek {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-stress-reduceren-werkplek {
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid #34d399;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  margin-top: 2.5rem;
}

.cta-title-stress-reduceren-werkplek {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-stress-reduceren-werkplek {
  font-size: 0.9375rem;
  color: #a7f3d0;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.btn-primary-stress-reduceren-werkplek:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

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

.disclaimer-content-stress-reduceren-werkplek {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-stress-reduceren-werkplek {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-stress-reduceren-werkplek {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

.related-section-stress-reduceren-werkplek {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-stress-reduceren-werkplek {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-stress-reduceren-werkplek {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.related-subtitle-stress-reduceren-werkplek {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #a7f3d0;
}

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

.related-card-stress-reduceren-werkplek {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-stress-reduceren-werkplek:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.related-card-content-stress-reduceren-werkplek {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-stress-reduceren-werkplek {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.related-card-text-stress-reduceren-werkplek {
  font-size: 0.9375rem;
  color: #a7f3d0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content-stress-reduceren-werkplek,
  .intro-content-stress-reduceren-werkplek,
  .techniques-content-stress-reduceren-werkplek,
  .mindfulness-content-stress-reduceren-werkplek,
  .practical-content-stress-reduceren-werkplek {
    flex-direction: column;
  }

  .hero-text-block-stress-reduceren-werkplek,
  .hero-image-block-stress-reduceren-werkplek,
  .intro-text-block-stress-reduceren-werkplek,
  .intro-image-block-stress-reduceren-werkplek,
  .techniques-text-block-stress-reduceren-werkplek,
  .techniques-image-block-stress-reduceren-werkplek,
  .mindfulness-image-block-stress-reduceren-werkplek,
  .mindfulness-text-block-stress-reduceren-werkplek,
  .practical-text-block-stress-reduceren-werkplek,
  .practical-image-block-stress-reduceren-werkplek {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .mindfulness-image-block-stress-reduceren-werkplek {
    order: 0;
  }

  .breadcrumbs-stress-reduceren-werkplek {
    font-size: 0.75rem;
  }

  .step-item-stress-reduceren-werkplek {
    gap: 1rem;
  }

  .step-number-stress-reduceren-werkplek {
    font-size: 2rem;
    min-width: 50px;
  }

  .strategy-card-stress-reduceren-werkplek {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-stress-reduceren-werkplek {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .hero-content-stress-reduceren-werkplek,
  .intro-content-stress-reduceren-werkplek,
  .techniques-content-stress-reduceren-werkplek,
  .mindfulness-content-stress-reduceren-werkplek,
  .practical-content-stress-reduceren-werkplek {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-text-block-stress-reduceren-werkplek,
  .techniques-text-block-stress-reduceren-werkplek,
  .practical-text-block-stress-reduceren-werkplek {
    flex: 1 1 45%;
    max-width: 50%;
  }

  .hero-image-block-stress-reduceren-werkplek,
  .techniques-image-block-stress-reduceren-werkplek,
  .practical-image-block-stress-reducieren-werkplek {
    flex: 1 1 45%;
    max-width: 50%;
  }

  .strategy-card-stress-reduceren-werkplek {
    flex: 1 1 45%;
    max-width: none;
  }

  .related-card-stress-reduceren-werkplek {
    flex: 1 1 45%;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .hero-content-stress-reduceren-werkplek,
  .intro-content-stress-reduceren-werkplek,
  .techniques-content-stress-reduceren-werkplek,
  .mindfulness-content-stress-reduceren-werkplek,
  .practical-content-stress-reduceren-werkplek {
    gap: clamp(2rem, 4vw, 4rem);
  }

  .hero-text-block-stress-reduceren-werkplek,
  .intro-text-block-stress-reduceren-werkplek,
  .techniques-text-block-stress-reduceren-werkplek,
  .mindfulness-text-block-stress-reduceren-werkplek,
  .practical-text-block-stress-reduceren-werkplek {
    flex: 1 1 50%;
    max-width: 55%;
  }

  .hero-image-block-stress-reduceren-werkplek,
  .intro-image-block-stress-reduceren-werkplek,
  .techniques-image-block-stress-reduceren-werkplek,
  .mindfulness-image-block-stress-reduceren-werkplek,
  .practical-image-block-stress-reduceren-werkplek {
    flex: 1 1 50%;
    max-width: 45%;
  }

  .strategy-card-stress-reduceren-werkplek {
    flex: 1 1 22%;
    max-width: 300px;
  }

  .related-card-stress-reduceren-werkplek {
    flex: 1 1 30%;
    max-width: 380px;
  }
}

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

*:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

.main-efficiënt-tijdbeheer-professionals {
  width: 100%;
}

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

.hero-section-efficiënt-tijdbeheer-professionals {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-text-block-efficiënt-tijdbeheer-professionals {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-efficiënt-tijdbeheer-professionals {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-efficiënt-tijdbeheer-professionals {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #a7f3d0;
  line-height: 1.6;
}

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

.breadcrumb-link-efficiënt-tijdbeheer-professionals {
  color: #6ee7b7;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-efficiënt-tijdbeheer-professionals:hover {
  color: #34d399;
}

.breadcrumb-separator-efficiënt-tijdbeheer-professionals {
  color: #6ee7b7;
  opacity: 0.5;
}

.breadcrumb-current-efficiënt-tijdbeheer-professionals {
  color: #a7f3d0;
  font-weight: 500;
}

.hero-meta-efficiënt-tijdbeheer-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.meta-badge-efficiënt-tijdbeheer-professionals i {
  color: #34d399;
}

.hero-stats-efficiënt-tijdbeheer-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
}

.stat-item-efficiënt-tijdbeheer-professionals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-efficiënt-tijdbeheer-professionals {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #34d399;
  line-height: 1;
}

.stat-label-efficiënt-tijdbeheer-professionals {
  font-size: 0.875rem;
  color: #a7f3d0;
}

.hero-image-block-efficiënt-tijdbeheer-professionals {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-efficiënt-tijdbeheer-professionals {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 768px) {
  .hero-content-efficiënt-tijdbeheer-professionals {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-text-block-efficiënt-tijdbeheer-professionals {
    flex: 1 1 100%;
  }
  
  .hero-image-block-efficiënt-tijdbeheer-professionals {
    flex: 1 1 100%;
  }
  
  .hero-stats-efficiënt-tijdbeheer-professionals {
    gap: 1.5rem;
  }
}

.intro-section-efficiënt-tijdbeheer-professionals {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-efficiënt-tijdbeheer-professionals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-block-efficiënt-tijdbeheer-professionals {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-efficiënt-tijdbeheer-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.intro-description-efficiënt-tijdbeheer-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #d1fae5;
  line-height: 1.7;
}

.intro-image-block-efficiënt-tijdbeheer-professionals {
  flex: 1 1 50%;
}

.intro-image-efficiënt-tijdbeheer-professionals {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 768px) {
  .intro-content-efficiënt-tijdbeheer-professionals {
    flex-direction: column;
    gap: 2rem;
  }
  
  .intro-text-block-efficiënt-tijdbeheer-professionals {
    flex: 1 1 100%;
  }
  
  .intro-image-block-efficiënt-tijdbeheer-professionals {
    flex: 1 1 100%;
  }
}

.methods-section-efficiënt-tijdbeheer-professionals {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-header-efficiënt-tijdbeheer-professionals {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-efficiënt-tijdbeheer-professionals {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.methods-title-efficiënt-tijdbeheer-professionals {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
}

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

.methods-steps-efficiënt-tijdbeheer-professionals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methods-step-efficiënt-tijdbeheer-professionals {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #10b981;
  align-items: flex-start;
}

.methods-step-number-efficiënt-tijdbeheer-professionals {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.methods-step-content-efficiënt-tijdbeheer-professionals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.methods-step-title-efficiënt-tijdbeheer-professionals {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #022c22;
}

.methods-step-text-efficiënt-tijdbeheer-professionals {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .methods-step-efficiënt-tijdbeheer-professionals {
    flex-direction: column;
    gap: 1rem;
  }
  
  .methods-step-number-efficiënt-tijdbeheer-professionals {
    min-width: auto;
  }
}

.implementation-section-efficiënt-tijdbeheer-professionals {
  background: #065f46;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-text-efficiënt-tijdbeheer-professionals {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-title-efficiënt-tijdbeheer-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.implementation-description-efficiënt-tijdbeheer-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #d1fae5;
  line-height: 1.7;
}

.implementation-list-efficiënt-tijdbeheer-professionals {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.implementation-list-item-efficiënt-tijdbeheer-professionals {
  font-size: 0.9375rem;
  color: #a7f3d0;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.implementation-list-item-efficiënt-tijdbeheer-professionals::before {
  content: "";
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: bold;
}

.implementation-quote-efficiënt-tijdbeheer-professionals {
  margin-top: 1rem;
}

.featured-quote-efficiënt-tijdbeheer-professionals {
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 4px solid #34d399;
  background: rgba(16, 185, 129, 0.1);
  margin: 0;
  font-style: italic;
}

.quote-text-efficiënt-tijdbeheer-professionals {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-efficiënt-tijdbeheer-professionals {
  font-size: 0.875rem;
  color: #a7f3d0;
  font-style: normal;
}

.implementation-image-efficiënt-tijdbeheer-professionals {
  flex: 1 1 50%;
}

.implementation-image-img-efficiënt-tijdbeheer-professionals {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 768px) {
  .implementation-wrapper-efficiënt-tijdbeheer-professionals {
    flex-direction: column;
    gap: 2rem;
  }
  
  .implementation-text-efficiënt-tijdbeheer-professionals {
    flex: 1 1 100%;
  }
  
  .implementation-image-efficiënt-tijdbeheer-professionals {
    flex: 1 1 100%;
  }
}

.tools-section-efficiënt-tijdbeheer-professionals {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-efficiënt-tijdbeheer-professionals {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-efficiënt-tijdbeheer-professionals {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
}

.tools-grid-efficiënt-tijdbeheer-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tools-card-efficiënt-tijdbeheer-professionals {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tools-card-efficiënt-tijdbeheer-professionals:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.15);
}

.tools-card-icon-efficiënt-tijdbeheer-professionals {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 12px;
  font-size: 1.5rem;
}

.tools-card-title-efficiënt-tijdbeheer-professionals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #022c22;
}

.tools-card-text-efficiënt-tijdbeheer-professionals {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tools-card-efficiënt-tijdbeheer-professionals {
    flex: 1 1 100%;
    max-width: none;
  }
}

.challenges-section-efficiënt-tijdbeheer-professionals {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-wrapper-efficiënt-tijdbeheer-professionals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenges-image-efficiënt-tijdbeheer-professionals {
  flex: 1 1 50%;
}

.challenges-image-img-efficiënt-tijdbeheer-professionals {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.challenges-text-efficiënt-tijdbeheer-professionals {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.challenges-title-efficiënt-tijdbeheer-professionals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.challenges-item-efficiënt-tijdbeheer-professionals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.challenges-item-title-efficiënt-tijdbeheer-professionals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #34d399;
}

.challenges-item-text-efficiënt-tijdbeheer-professionals {
  font-size: 0.9375rem;
  color: #d1fae5;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .challenges-wrapper-efficiënt-tijdbeheer-professionals {
    flex-direction: column;
    gap: 2rem;
  }
  
  .challenges-image-efficiënt-tijdbeheer-professionals {
    flex: 1 1 100%;
  }
  
  .challenges-text-efficiënt-tijdbeheer-professionals {
    flex: 1 1 100%;
  }
}

.conclusion-section-efficiënt-tijdbeheer-professionals {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-efficiënt-tijdbeheer-professionals {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-efficiënt-tijdbeheer-professionals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  text-align: center;
}

.conclusion-text-efficiënt-tijdbeheer-professionals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  text-align: center;
}

.conclusion-cta-efficiënt-tijdbeheer-professionals {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
  margin-top: 1rem;
}

.cta-title-efficiënt-tijdbeheer-professionals {
  font-size: 1.375rem;
  font-weight: 600;
  color: #022c22;
  margin-bottom: 0.75rem;
}

.cta-text-efficiënt-tijdbeheer-professionals {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-primary-efficiënt-tijdbeheer-professionals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  background: #10b981;
  color: #0a0a0a;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary-efficiënt-tijdbeheer-professionals:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.disclaimer-section-efficiënt-tijdbeheer-professionals {
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-efficiënt-tijdbeheer-professionals {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.disclaimer-title-efficiënt-tijdbeheer-professionals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #022c22;
  margin-bottom: 1rem;
}

.disclaimer-text-efficiënt-tijdbeheer-professionals {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

.related-section-efficiënt-tijdbeheer-professionals {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.related-header-efficiënt-tijdbeheer-professionals {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-efficiënt-tijdbeheer-professionals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 0.75rem;
}

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

.related-cards-efficiënt-tijdbeheer-professionals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-efficiënt-tijdbeheer-professionals {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card-efficiënt-tijdbeheer-professionals:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.related-card-image-efficiënt-tijdbeheer-professionals {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.related-card-image-efficiënt-tijdbeheer-professionals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-title-efficiënt-tijdbeheer-professionals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #022c22;
}

.related-card-text-efficiënt-tijdbeheer-professionals {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-efficiënt-tijdbeheer-professionals {
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-card-link-efficiënt-tijdbeheer-professionals:hover {
  color: #059669;
}

@media (max-width: 768px) {
  .related-card-efficiënt-tijdbeheer-professionals {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-section-efficiënt-tijdbeheer-professionals {
    padding: 5rem 0;
  }
  
  .intro-section-efficiënt-tijdbeheer-professionals {
    padding: 5rem 0;
  }
  
  .methods-section-efficiënt-tijdbeheer-professionals {
    padding: 5rem 0;
  }
  
  .implementation-section-efficiënt-tijdbeheer-professionals {
    padding: 5rem 0;
  }
  
  .tools-section-efficiënt-tijdbeheer-professionals {
    padding: 5rem 0;
  }
  
  .challenges-section-efficiënt-tijdbeheer-professionals {
    padding: 5rem 0;
  }
  
  .conclusion-section-efficiënt-tijdbeheer-professionals {
    padding: 5rem 0;
  }
  
  .related-section-efficiënt-tijdbeheer-professionals {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-efficiënt-tijdbeheer-professionals {
    padding: 6rem 0;
  }
  
  .intro-section-efficiënt-tijdbeheer-professionals {
    padding: 6rem 0;
  }
  
  .methods-section-efficiënt-tijdbeheer-professionals {
    padding: 6rem 0;
  }
  
  .implementation-section-efficiënt-tijdbeheer-professionals {
    padding: 6rem 0;
  }
  
  .tools-section-efficiënt-tijdbeheer-professionals {
    padding: 6rem 0;
  }
  
  .challenges-section-efficiënt-tijdbeheer-professionals {
    padding: 6rem 0;
  }
  
  .conclusion-section-efficiënt-tijdbeheer-professionals {
    padding: 6rem 0;
  }
  
  .related-section-efficiënt-tijdbeheer-professionals {
    padding: 6rem 0;
  }
}

*:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

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

.main-grenzen-stellen-werk {
  width: 100%;
  background: #ffffff;
  color: #1a1a1a;
}

.hero-section-grenzen-stellen-werk {
  background: #022c22;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text-block-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-grenzen-stellen-werk {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-grenzen-stellen-werk {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #a7f3d0;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.hero-meta-grenzen-stellen-werk {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-grenzen-stellen-werk i {
  color: #10b981;
  font-size: 0.875rem;
}

.hero-stats-grenzen-stellen-werk {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-item-grenzen-stellen-werk {
  flex: 0 1 auto;
}

.stat-number-grenzen-stellen-werk {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label-grenzen-stellen-werk {
  display: block;
  font-size: 0.875rem;
  color: #6ee7b7;
  font-weight: 500;
}

.hero-image-block-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-grenzen-stellen-werk {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.breadcrumbs-grenzen-stellen-werk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-grenzen-stellen-werk {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-grenzen-stellen-werk:hover {
  color: #10b981;
}

.breadcrumb-separator-grenzen-stellen-werk {
  color: rgba(167, 243, 208, 0.5);
  margin: 0 0.25rem;
}

.breadcrumb-current-grenzen-stellen-werk {
  color: rgba(167, 243, 208, 0.7);
}

.intro-section-grenzen-stellen-werk {
  background: #f8fafc;
  color: #1a1a1a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-grenzen-stellen-werk {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-grenzen-stellen-werk {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-description-grenzen-stellen-werk:last-child {
  margin-bottom: 0;
}

.intro-image-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-grenzen-stellen-werk {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.content-section-one-grenzen-stellen-werk {
  background: #ffffff;
  color: #1a1a1a;
  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%;
}

.content-title-one-grenzen-stellen-werk {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.content-text-one-grenzen-stellen-werk {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-highlight-one-grenzen-stellen-werk {
  background: #f0fdf4;
  border-left: 4px solid #10b981;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.highlight-title-one-grenzen-stellen-werk {
  font-size: 1rem;
  font-weight: 600;
  color: #022c22;
  margin-bottom: 1rem;
}

.highlight-list-one-grenzen-stellen-werk {
  list-style: none;
  padding: 0;
}

.list-item-one-grenzen-stellen-werk {
  font-size: 0.9375rem;
  color: #374151;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  line-height: 1.6;
}

.list-item-one-grenzen-stellen-werk:before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.content-image-one-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-grenzen-stellen-werk {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-section-two-grenzen-stellen-werk {
  background: #f8fafc;
  color: #1a1a1a;
  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%;
  order: -1;
}

.content-image-two-grenzen-stellen-werk {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-text-two-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-grenzen-stellen-werk {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.content-text-two-grenzen-stellen-werk {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-grenzen-stellen-werk {
  padding: 1.5rem 1.75rem;
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 8px;
  margin: 2rem 0;
  font-style: italic;
}

.quote-text-grenzen-stellen-werk {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: #022c22;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.quote-author-grenzen-stellen-werk {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.steps-section-grenzen-stellen-werk {
  background: #022c22;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-grenzen-stellen-werk {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-grenzen-stellen-werk {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title-grenzen-stellen-werk {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-grenzen-stellen-werk {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-container-grenzen-stellen-werk {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-grenzen-stellen-werk {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

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

.step-content-grenzen-stellen-werk {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-grenzen-stellen-werk {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.step-text-grenzen-stellen-werk {
  font-size: 0.9375rem;
  color: #a7f3d0;
  line-height: 1.6;
}

.strategies-section-grenzen-stellen-werk {
  background: #ffffff;
  color: #1a1a1a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.strategies-text-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-grenzen-stellen-werk {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.strategies-description-grenzen-stellen-werk {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.strategies-list-grenzen-stellen-werk {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.strategy-card-grenzen-stellen-werk {
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #10b981;
}

.strategy-card-title-grenzen-stellen-werk {
  font-size: 1rem;
  font-weight: 600;
  color: #022c22;
  margin-bottom: 0.5rem;
}

.strategy-card-text-grenzen-stellen-werk {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.strategies-image-grenzen-stellen-werk {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-image-grenzen-stellen-werk {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.conclusion-section-grenzen-stellen-werk {
  background: #022c22;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-grenzen-stellen-werk {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-grenzen-stellen-werk {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-grenzen-stellen-werk {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #a7f3d0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-grenzen-stellen-werk {
  margin-top: 2rem;
}

.btn-primary-grenzen-stellen-werk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #10b981;
  color: #000000;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.btn-primary-grenzen-stellen-werk:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.related-section-grenzen-stellen-werk {
  background: #f8fafc;
  color: #1a1a1a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-grenzen-stellen-werk {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-grenzen-stellen-werk {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-grenzen-stellen-werk {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

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

.related-card-grenzen-stellen-werk {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.related-card-grenzen-stellen-werk:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-card-image-grenzen-stellen-werk {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.related-card-content-grenzen-stellen-werk {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.related-card-title-grenzen-stellen-werk {
  font-size: 1.125rem;
  font-weight: 600;
  color: #022c22;
  line-height: 1.3;
}

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

.related-card-link-grenzen-stellen-werk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-card-link-grenzen-stellen-werk:hover {
  color: #059669;
  transform: translateX(4px);
}

.disclaimer-section-grenzen-stellen-werk {
  background: #f0fdf4;
  color: #1a1a1a;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-grenzen-stellen-werk {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border: 2px solid #d1fae5;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.disclaimer-title-grenzen-stellen-werk {
  font-size: 1.125rem;
  font-weight: 600;
  color: #022c22;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-title-grenzen-stellen-werk:before {
  content: "";
  color: #10b981;
  font-weight: bold;
  font-size: 1.25rem;
}

.disclaimer-text-grenzen-stellen-werk {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero-content-grenzen-stellen-werk,
  .intro-content-grenzen-stellen-werk,
  .content-wrapper-one-grenzen-stellen-werk,
  .content-wrapper-two-grenzen-stellen-werk,
  .strategies-wrapper-grenzen-stellen-werk {
    flex-direction: column;
  }

  .hero-text-block-grenzen-stellen-werk,
  .hero-image-block-grenzen-stellen-werk,
  .intro-text-grenzen-stellen-werk,
  .intro-image-grenzen-stellen-werk,
  .content-text-one-grenzen-stellen-werk,
  .content-image-one-grenzen-stellen-werk,
  .content-text-two-grenzen-stellen-werk,
  .content-image-two-grenzen-stellen-werk,
  .strategies-text-grenzen-stellen-werk,
  .strategies-image-grenzen-stellen-werk {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-two-grenzen-stellen-werk {
    order: 0;
  }

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

  .step-item-grenzen-stellen-werk {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .step-number-grenzen-stellen-werk {
    min-width: auto;
  }

  .step-content-grenzen-stellen-werk {
    gap: 0.75rem;
  }

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

  .hero-stats-grenzen-stellen-werk {
    flex-direction: column;
    gap: 1.5rem;
    border-top: none;
    padding-top: 0;
    margin-top: 1.5rem;
  }

  .stat-item-grenzen-stellen-werk {
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .hero-stats-grenzen-stellen-werk {
    gap: 1.5rem;
  }

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

  .related-card-grenzen-stellen-werk {
    max-width: 100%;
  }
}

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

*:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

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

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

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

.breadcrumb-link-lichaamsbeweging-energie {
  color: #a7f3d0;
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumb-link-lichaamsbeweging-energie:hover {
  color: #d1fae5;
}

.breadcrumb-separator-lichaamsbeweging-energie {
  color: #6ee7b7;
  opacity: 0.5;
}

.breadcrumb-current-lichaamsbeweging-energie {
  color: #d1fae5;
  font-weight: 500;
}

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

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

.hero-text-wrapper-lichaamsbeweging-energie {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-title-lichaamsbeweging-energie {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

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

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

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

.meta-badge-lichaamsbeweging-energie i {
  color: #10b981;
}

.hero-image-wrapper-lichaamsbeweging-energie {
  flex: 1 1 300px;
  max-width: 50%;
}

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

.hero-stats-lichaamsbeweging-energie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  justify-content: center;
}

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

.stat-number-lichaamsbeweging-energie {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-label-lichaamsbeweging-energie {
  color: #a7f3d0;
  font-size: 0.875rem;
  font-weight: 500;
}

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

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

  .hero-stats-lichaamsbeweging-energie {
    gap: 1.5rem;
  }
}

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

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

.intro-text-lichaamsbeweging-energie {
  flex: 1 1 300px;
  max-width: 50%;
}

.intro-title-lichaamsbeweging-energie {
  color: #022c22;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.intro-image-lichaamsbeweging-energie {
  flex: 1 1 300px;
  max-width: 50%;
}

.intro-image-lichaamsbeweging-energie img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

.benefits-header-lichaamsbeweging-energie {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-lichaamsbeweging-energie {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

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

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

.benefits-card-lichaamsbeweging-energie {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.benefits-card-lichaamsbeweging-energie:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.12);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
}

.benefits-card-icon-lichaamsbeweging-energie {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  color: #10b981;
  font-size: 1.75rem;
}

.benefits-card-title-lichaamsbeweging-energie {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.benefits-card-text-lichaamsbeweging-energie {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

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

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

.strategy-text-lichaamsbeweging-energie {
  flex: 1 1 300px;
  max-width: 50%;
}

.strategy-title-lichaamsbeweging-energie {
  color: #022c22;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.strategy-steps-lichaamsbeweging-energie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-step-lichaamsbeweging-energie {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid #10b981;
}

.strategy-step-number-lichaamsbeweging-energie {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10b981;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
  font-family: var(--font-heading);
}

.strategy-step-content-lichaamsbeweging-energie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.strategy-step-title-lichaamsbeweging-energie {
  color: #022c22;
  font-size: 1.125rem;
  font-weight: 600;
}

.strategy-step-text-lichaamsbeweging-energie {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.strategy-image-lichaamsbeweging-energie {
  flex: 1 1 300px;
  max-width: 50%;
}

.strategy-image-lichaamsbeweging-energie img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .strategy-content-lichaamsbeweging-energie {
    flex-direction: column;
  }

  .strategy-text-lichaamsbeweging-energie,
  .strategy-image-lichaamsbeweging-energie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .strategy-step-lichaamsbeweging-energie {
    padding: 1rem;
  }
}

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

.activities-header-lichaamsbeweging-energie {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.activities-text-lichaamsbeweging-energie {
  flex: 1 1 300px;
  max-width: 50%;
}

.activities-intro-lichaamsbeweging-energie {
  color: #a7f3d0;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.activities-subheading-lichaamsbeweging-energie {
  color: #d1fae5;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.activities-description-lichaamsbeweging-energie {
  color: #cbd5e1;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.featured-quote-lichaamsbeweging-energie {
  padding: 2rem 2.5rem;
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.08);
  margin: 2rem 0;
  border-radius: var(--radius-lg);
}

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

.quote-author-lichaamsbeweging-energie {
  color: #a7f3d0;
  font-size: 0.875rem;
  font-style: normal;
}

.activities-image-lichaamsbeweging-energie {
  flex: 1 1 300px;
  max-width: 50%;
}

.activities-image-lichaamsbeweging-energie img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .activities-content-lichaamsbeweging-energie {
    flex-direction: column;
  }

  .activities-text-lichaamsbeweging-energie,
  .activities-image-lichaamsbeweging-energie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .featured-quote-lichaamsbeweging-energie {
    padding: 1.5rem 1.5rem;
  }
}

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

.tips-header-lichaamsbeweging-energie {
  text-align: center;
  margin-bottom: 3rem;
}

.tips-title-lichaamsbeweging-energie {
  color: #022c22;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tips-subtitle-lichaamsbeweging-energie {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.tips-card-lichaamsbeweging-energie {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.tips-card-lichaamsbeweging-energie:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(16, 185, 129, 0.12);
  border-color: #10b981;
}

.tips-card-title-lichaamsbeweging-energie {
  color: #022c22;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.tips-card-text-lichaamsbeweging-energie {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

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

.conclusion-content-lichaamsbeweging-energie {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

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

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

.conclusion-cta-lichaamsbeweging-energie {
  background: rgba(16, 185, 129, 0.1);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-top: 2.5rem;
}

.conclusion-cta-title-lichaamsbeweging-energie {
  color: #d1fae5;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.conclusion-cta-text-lichaamsbeweging-energie {
  color: #a7f3d0;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.btn-primary-lichaamsbeweging-energie {
  background: #10b981;
  color: #000000;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-base);
}

.btn-primary-lichaamsbeweging-energie:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(16, 185, 129, 0.3);
}

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

.related-header-lichaamsbeweging-energie {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-lichaamsbeweging-energie {
  color: #022c22;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-lichaamsbeweging-energie {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

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

.related-card-lichaamsbeweging-energie {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.related-card-lichaamsbeweging-energie:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.related-card-image-lichaamsbeweging-energie {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.related-card-image-lichaamsbeweging-energie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-title-lichaamsbeweging-energie {
  color: #022c22;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

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

.related-card-link-lichaamsbeweging-energie {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-base);
  display: inline-block;
}

.related-card-link-lichaamsbeweging-energie:hover {
  color: #059669;
  transform: translateX(4px);
}

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

.disclaimer-section-lichaamsbeweging-energie {
  background: #f8fafc;
  color: var(--color-text-primary-light);
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-lichaamsbeweging-energie {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-left: 4px solid #3b82f6;
  border-radius: var(--radius-lg);
}

.disclaimer-title-lichaamsbeweging-energie {
  color: #022c22;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-lichaamsbeweging-energie {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .container {
    padding: 0 clamp(1rem, 4vw, 1.5rem);
  }

  .hero-section-lichaamsbeweging-energie {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  .intro-section-lichaamsbeweging-energie,
  .benefits-section-lichaamsbeweging-energie,
  .strategy-section-lichaamsbeweging-energie,
  .activities-section-lichaamsbeweging-energie,
  .tips-section-lichaamsbeweging-energie,
  .conclusion-section-lichaamsbeweging-energie,
  .related-section-lichaamsbeweging-energie {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
}

@media (max-width: 480px) {
  .hero-stats-lichaamsbeweging-energie {
    gap: 1rem;
  }

  .stat-number-lichaamsbeweging-energie {
    font-size: 1.75rem;
  }

  .stat-label-lichaamsbeweging-energie {
    font-size: 0.75rem;
  }

  .strategy-step-lichaamsbeweging-energie {
    padding: 1rem;
    gap: 1rem;
  }

  .strategy-step-number-lichaamsbeweging-energie {
    font-size: 1.75rem;
    min-width: 50px;
  }

  .disclaimer-content-lichaamsbeweging-energie {
    padding: 1rem;
  }
}

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

*:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

@media print {
  .breadcrumbs-lichaamsbeweging-energie,
  .disclaimer-section-lichaamsbeweging-energie {
    display: none;
  }

  .hero-section-lichaamsbeweging-energie,
  .intro-section-lichaamsbeweging-energie,
  .benefits-section-lichaamsbeweging-energie,
  .strategy-section-lichaamsbeweging-energie,
  .activities-section-lichaamsbeweging-energie,
  .tips-section-lichaamsbeweging-energie,
  .conclusion-section-lichaamsbeweging-energie,
  .related-section-lichaamsbeweging-energie {
    page-break-inside: avoid;
  }
}

.main-familie-carriere-integreren {
  width: 100%;
}

.hero-section-familie-carriere-integreren {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

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

.breadcrumbs-familie-carriere-integreren {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-familie-carriere-integreren {
  color: #a7f3d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-familie-carriere-integreren:hover {
  color: #10b981;
  text-decoration: underline;
}

.breadcrumb-separator-familie-carriere-integreren {
  color: #6ee7b7;
  opacity: 0.6;
}

.breadcrumb-current-familie-carriere-integreren {
  color: #d1fae5;
}

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

.hero-text-block-familie-carriere-integreren {
  flex: 1 1 350px;
  max-width: 50%;
}

.hero-title-familie-carriere-integreren {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.article-meta-familie-carriere-integreren {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-familie-carriere-integreren i {
  color: #10b981;
}

.hero-image-block-familie-carriere-integreren {
  flex: 1 1 350px;
  max-width: 50%;
}

.hero-image-familie-carriere-integreren {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero-text-block-familie-carriere-integreren,
  .hero-image-block-familie-carriere-integreren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-content-familie-carriere-integreren {
    flex-direction: column;
  }
}

.introduction-section-familie-carriere-integreren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.introduction-wrapper-familie-carriere-integreren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-familie-carriere-integreren {
  flex: 1 1 350px;
  max-width: 50%;
}

.introduction-title-familie-carriere-integreren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-content-familie-carriere-integreren {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-image-familie-carriere-integreren {
  flex: 1 1 350px;
  max-width: 50%;
}

.introduction-image-content-familie-carriere-integreren {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .introduction-text-familie-carriere-integreren,
  .introduction-image-familie-carriere-integreren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .introduction-wrapper-familie-carriere-integreren {
    flex-direction: column;
  }
}

.strategies-section-familie-carriere-integreren {
  background: #064e3b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-section-familie-carriere-integreren .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.strategies-header-familie-carriere-integreren {
  text-align: center;
  margin-bottom: 3rem;
}

.strategies-tag-familie-carriere-integreren {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.2);
  color: #d1fae5;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.strategies-title-familie-carriere-integreren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.strategies-subtitle-familie-carriere-integreren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #a7f3d0;
  max-width: 600px;
  margin: 0 auto;
}

.strategies-steps-familie-carriere-integreren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategies-step-familie-carriere-integreren {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

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

.strategies-step-content-familie-carriere-integreren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.strategies-step-title-familie-carriere-integreren {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.strategies-step-text-familie-carriere-integreren {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #a7f3d0;
}

@media (max-width: 768px) {
  .strategies-step-familie-carriere-integreren {
    flex-direction: column;
    gap: 1rem;
  }

  .strategies-step-number-familie-carriere-integreren {
    font-size: 1.75rem;
    min-width: auto;
  }
}

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

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

.implementation-wrapper-familie-carriere-integreren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.implementation-image-familie-carriere-integreren {
  flex: 1 1 350px;
  max-width: 50%;
}

.implementation-image-content-familie-carriere-integreren {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.implementation-text-familie-carriere-integreren {
  flex: 1 1 350px;
  max-width: 50%;
}

.implementation-title-familie-carriere-integreren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.implementation-content-familie-carriere-integreren {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.implementation-tips-familie-carriere-integreren {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-tip-familie-carriere-integreren {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.implementation-tip-icon-familie-carriere-integreren {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0f2fe;
  color: #10b981;
  border-radius: 8px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.implementation-tip-content-familie-carriere-integreren {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.implementation-tip-title-familie-carriere-integreren {
  font-size: 1rem;
  font-weight: 600;
  color: #022c22;
}

.implementation-tip-text-familie-carriere-integreren {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .implementation-image-familie-carriere-integreren,
  .implementation-text-familie-carriere-integreren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-wrapper-familie-carriere-integreren {
    flex-direction: column;
  }
}

.featured-quote-section-familie-carriere-integreren {
  background: #022c22;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-section-familie-carriere-integreren .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.featured-quote-familie-carriere-integreren {
  padding: 2.5rem;
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.08);
  margin: 0;
  border-radius: 8px;
}

.featured-quote-text-familie-carriere-integreren {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.6;
}

.featured-quote-cite-familie-carriere-integreren {
  font-size: 0.9375rem;
  color: #a7f3d0;
  font-style: normal;
}

.benefits-section-familie-carriere-integreren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.benefits-header-familie-carriere-integreren {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-title-familie-carriere-integreren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.benefits-subtitle-familie-carriere-integreren {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-wrapper-familie-carriere-integreren {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.benefits-image-familie-carriere-integreren {
  flex: 1 1 350px;
  max-width: 50%;
}

.benefits-image-content-familie-carriere-integreren {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-list-familie-carriere-integreren {
  flex: 1 1 350px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefits-item-familie-carriere-integreren {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits-item-icon-familie-carriere-integreren {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 12px;
  font-size: 1.5rem;
}

.benefits-item-title-familie-carriere-integreren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #022c22;
}

.benefits-item-text-familie-carriere-integreren {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .benefits-image-familie-carriere-integreren,
  .benefits-list-familie-carriere-integreren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .benefits-wrapper-familie-carriere-integreren {
    flex-direction: column;
  }
}

.conclusion-section-familie-carriere-integreren {
  background: #065f46;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-content-familie-carriere-integreren {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-familie-carriere-integreren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-familie-carriere-integreren {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #d1fae5;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-familie-carriere-integreren {
  margin-top: 2rem;
}

.conclusion-cta-familie-carriere-integreren .btn {
  background: #10b981;
  color: #000000;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.conclusion-cta-familie-carriere-integreren .btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

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

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

.related-header-familie-carriere-integreren {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-familie-carriere-integreren {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #022c22;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

.related-card-familie-carriere-integreren {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.related-card-familie-carriere-integreren:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
}

.related-card-image-familie-carriere-integreren {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.related-card-content-familie-carriere-integreren {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-familie-carriere-integreren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #022c22;
  line-height: 1.3;
}

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

.related-card-link-familie-carriere-integreren {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-card-link-familie-carriere-integreren:hover {
  color: #059669;
  transform: translateX(4px);
}

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

.disclaimer-section-familie-carriere-integreren {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.disclaimer-box-familie-carriere-integreren {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}

.disclaimer-title-familie-carriere-integreren {
  font-size: 1.125rem;
  font-weight: 600;
  color: #022c22;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.disclaimer-title-familie-carriere-integreren i {
  color: #10b981;
  font-size: 1.25rem;
}

.disclaimer-text-familie-carriere-integreren {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.8;
}

@media (max-width: 480px) {
  .hero-title-familie-carriere-integreren {
    font-size: 1.75rem;
  }

  .strategies-title-familie-carriere-integreren,
  .implementation-title-familie-carriere-integreren,
  .benefits-title-familie-carriere-integreren,
  .conclusion-title-familie-carriere-integreren,
  .related-title-familie-carriere-integreren {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content-familie-carriere-integreren,
  .introduction-wrapper-familie-carriere-integreren,
  .implementation-wrapper-familie-carriere-integreren,
  .benefits-wrapper-familie-carriere-integreren {
    flex-direction: column;
  }

  .hero-text-block-familie-carriere-integreren,
  .hero-image-block-familie-carriere-integreren,
  .introduction-text-familie-carriere-integreren,
  .introduction-image-familie-carriere-integreren,
  .implementation-image-familie-carriere-integreren,
  .implementation-text-familie-carriere-integreren,
  .benefits-image-familie-carriere-integreren,
  .benefits-list-familie-carriere-integreren {
    max-width: 100%;
  }
}

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

*:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

.breadcrumb-link-familie-carriere-integreren:focus-visible,
.related-card-link-familie-carriere-integreren:focus-visible {
  border-radius: 4px;
}

:root {
  --color-bg-primary: #022c22;
  --color-bg-secondary: #064e3b;
  --color-bg-tertiary: #065f46;
  --color-bg-light: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-card: rgba(16, 185, 129, 0.08);
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #a7f3d0;
  --color-text-muted-dark: #6ee7b7;
  --color-text-primary-light: #022c22;
  --color-text-secondary-light: #374151;
  --color-text-muted-light: #6b7280;
  --color-primary: #10b981;
  --color-primary-hover: #059669;
  --color-secondary: #34d399;
  --color-accent-light: #d1fae5;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
}

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

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

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

.equilibrium-journey-about {
  width: 100%;
}

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

.hero-awakening-about .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.hero-awakening-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-awakening-subtitle-about {
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  color: var(--color-text-secondary-dark);
  max-width: 700px;
  line-height: 1.5;
}

.hero-awakening-visual-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1rem;
}

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

.stat-item-awakening-about {
  flex: 1 1 150px;
}

.stat-number-awakening-about {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-awakening-about {
  font-size: 0.875rem;
  color: var(--color-text-muted-dark);
  font-weight: 500;
}

.philosophy-foundation-about {
  background: var(--color-bg-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.philosophy-header-about {
  text-align: center;
  margin-bottom: 2rem;
}

.philosophy-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.philosophy-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.philosophy-description-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.value-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.value-card-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary-light);
}

.value-card-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary-light);
  line-height: 1.6;
}

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

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

.transformation-intro-about {
  max-width: 800px;
}

.transformation-intro-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.transformation-intro-text-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

.transformation-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 1.5rem;
}

.approach-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.approach-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

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

.approach-step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.approach-step-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary-dark);
}

.approach-step-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.commitment-essence-about {
  background: var(--color-bg-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.commitment-header-about {
  text-align: center;
  margin-bottom: 2rem;
}

.commitment-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.commitment-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 1.5rem;
}

.featured-quote-about {
  padding: 2rem clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-light-secondary);
  margin: 2rem 0;
  border-radius: var(--radius-md);
}

.featured-quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-primary-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-quote-author-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary-light);
  font-style: normal;
  font-weight: 500;
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.cta-evenwicht-about {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--color-text-primary-dark);
  margin-top: 2rem;
}

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

.cta-text-about {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: var(--color-bg-light);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  border: none;
}

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

.disclaimer-foundation-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-about {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.disclaimer-title-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  margin-bottom: 1rem;
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  text-align: center;
}

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

  .stat-item-awakening-about {
    flex: 1 1 120px;
  }

  .values-grid-about {
    flex-direction: column;
  }

  .value-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .approach-step-about {
    gap: 1rem;
    padding: 1.25rem;
  }

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

  .featured-quote-about {
    padding: 1.5rem;
  }

  .cta-evenwicht-about {
    padding: clamp(1.5rem, 4vw, 2rem);
  }
}

@media (min-width: 768px) {
  .hero-awakening-about .container {
    gap: 2.5rem;
  }

  .philosophy-content-about {
    gap: 3rem;
  }

  .transformation-content-about {
    gap: 3rem;
  }

  .commitment-content-about {
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-stats-awakening-about {
    gap: 4rem;
  }

  .values-grid-about {
    gap: 2rem;
  }
}

.section-divider-about {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: clamp(2rem, 5vw, 3rem) 0;
}

.balance-legal {
  font-family: var(--font-primary);
  background: var(--color-bg-light);
  color: var(--color-text-primary-light);
}

.balance-legal section {
  width: 100%;
  overflow: hidden;
}

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

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

.balance-legal-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.balance-legal-hero h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary-dark);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.balance-legal-hero-meta {
  font-size: 0.9375rem;
  color: var(--color-text-secondary-dark);
}

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

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

.balance-legal-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.balance-legal-content h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-primary-light);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.balance-legal-content p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary-light);
  margin: 0;
}

.balance-legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.balance-legal-content li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary-light);
  padding-left: 1.5rem;
  position: relative;
}

.balance-legal-content li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.balance-legal-contact {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-light-secondary);
}

.balance-legal-contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.balance-legal-contact h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-primary-light);
  margin: 0;
}

.balance-legal-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary-light);
  margin: 0;
}

.balance-legal-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.balance-legal-contact-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary-light);
  margin: 0;
}

.balance-legal-contact-item strong {
  color: var(--color-text-primary-light);
  font-weight: 600;
}

@media (min-width: 768px) {
  .balance-legal-hero {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .balance-legal-content {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .balance-legal-contact {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .balance-legal-content-wrapper {
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

@media (min-width: 1024px) {
  .balance-legal-hero {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .balance-legal-content {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .balance-legal-contact {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

.thank-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  background: var(--color-bg-primary);
  width: 100%;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  animation: bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

.thank-section h1 {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-text-secondary-dark);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-muted-dark);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.3px;
}

.thank-next-steps {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  gap: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(2rem, 8vw, 6rem) 0;
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .thank-icon {
    width: clamp(100px, 18vw, 140px);
    height: clamp(100px, 18vw, 140px);
  }

  .thank-icon i {
    font-size: clamp(3rem, 9vw, 4.5rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(3rem, 10vw, 8rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: 2.5rem;
  }

  .btn:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3rem;
  }
}

.main.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-section {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-lg) 0;
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-visual {
  position: relative;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-icon {
  font-size: clamp(3rem, 8vw, 4.5rem);
  color: var(--color-secondary);
  animation: spin 4s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 2.75rem);
  color: var(--color-text-primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.error-subtitle {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-md);
  line-height: 1.5;
  font-weight: 600;
}

.error-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-muted-dark);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.7;
}

.error-actions {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.error-suggestions {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: left;
}

.suggestions-label {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-align: center;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestions-list li {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-muted-dark);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  line-height: 1.5;
}

.suggestions-list i {
  color: var(--color-secondary);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) 0;
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

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

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

  .suggestions-list li {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) 0;
  }

  .error-visual {
    margin-bottom: var(--space-4xl);
  }

  .error-code:hover {
    animation: none;
    transform: scale(1.05);
  }

  .error-icon:hover {
    animation: none;
    transform: rotate(360deg) scale(1.1);
    transition: transform var(--transition-base);
  }
}

@media (min-width: 1440px) {
  .error-section::before {
    width: 600px;
    height: 600px;
    top: -40%;
    right: -5%;
  }

  .error-section::after {
    width: 500px;
    height: 500px;
    bottom: -20%;
    left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }

  .error-icon {
    animation: none;
  }

  .btn {
    transition: none;
  }
}

.error-title,
.error-subtitle,
.error-description,
.suggestions-label,
.suggestions-list li {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.header-balance-hub-mobile-toggle[aria-expanded="true"]{
  display: none;
} 
