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

:root {
  
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  
  
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-secondary: #10b981;
  --color-accent-light: #d1fae5;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Merriweather', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.card-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.card-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

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

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

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

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

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

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

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

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

ul, ol {
  margin-left: 1.5rem;
}

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

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

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

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

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
  width: 100%;
}

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

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

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

label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.95rem;
}

.form-submit-btn,
.contact-form-submit {
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.375rem 0.75rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.decoration-blob {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}

.line-accent {
  height: 4px;
  width: clamp(40px, 10vw, 80px);
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

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

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

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

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

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

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

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.hover-lift {
  transition: all 0.3s ease;
}

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

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

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

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

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

.font-serif {
  font-family: var(--font-heading);
}

.font-sans {
  font-family: var(--font-primary);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

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

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

.pt-4 { padding-top: var(--space-3xl); }
.pb-4 { padding-bottom: var(--space-3xl); }

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

.icon-lg {
  font-size: 2rem;
}

.icon-xl {
  font-size: 3rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

small {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-lg);
  font-style: italic;
  color: var(--color-text-secondary);
  margin: var(--space-lg) 0;
}

hr {
  border: none;
  height: 1px;
  background: #e5e7eb;
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }
  
  h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: clamp(3rem, 7vw, 4rem);
  }
  
  h2 {
    font-size: clamp(2.25rem, 5vw, 3rem);
  }
  
  h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
}
.header-mindful-essence {
    position: static;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-accent-light);
    padding: clamp(0.75rem, 2vw, 1rem) 0;
    width: 100%;
    z-index: 100;
  }

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

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

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

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

  .header-mindful-essence-brand:hover .header-mindful-essence-logo-text {
    color: var(--color-primary-hover);
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-mindful-essence-desktop-nav {
    display: none;
    gap: clamp(1rem, 2vw, 2.5rem);
    align-items: center;
    flex: 1;
  }

  .header-mindful-essence-nav-link {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
  }

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

  .header-mindful-essence-nav-link:hover {
    color: var(--color-primary);
  }

  .header-mindful-essence-nav-link:hover::after {
    width: 100%;
  }

  .header-mindful-essence-cta-button {
    display: none;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: #ffffff;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
  }

  .header-mindful-essence-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.2);
  }

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

  .header-mindful-essence-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-md);
  }

  .header-mindful-essence-mobile-toggle:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
  }

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

  .header-mindful-essence-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-secondary);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
  }

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

  .header-mindful-essence-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1rem, 4vw, 1.5rem);
    border-bottom: 1px solid var(--color-accent-light);
  }

  .header-mindful-essence-mobile-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }

  .header-mindful-essence-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-md);
  }

  .header-mindful-essence-mobile-close:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
  }

  .header-mindful-essence-mobile-close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

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

  .header-mindful-essence-mobile-link {
    padding: clamp(0.875rem, 2vw, 1.125rem);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-md);
    border-left: 3px solid transparent;
    padding-left: calc(clamp(0.875rem, 2vw, 1.125rem) - 3px);
  }

  .header-mindful-essence-mobile-link:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
  }

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

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

  .header-mindful-essence-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.2);
  }

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

  .header-mindful-essence-mobile-cta:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
  }

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

    .header-mindful-essence-cta-button {
      display: inline-block;
    }

    .header-mindful-essence-mobile-toggle {
      display: none;
    }

    .header-mindful-essence-mobile-menu {
      display: none !important;
    }
  }

  @media (min-width: 1024px) {
    .header-mindful-essence-container {
      gap: 2rem;
    }

    .header-mindful-essence-desktop-nav {
      gap: 2.5rem;
    }

    .header-mindful-essence-nav-link {
      font-size: 1rem;
    }

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

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

    .header-mindful-essence-mobile-menu.active {
      transform: translateX(0);
    }
  }

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

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

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

.hero-gradient-field {
  position: absolute;
  top: 20%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-accent-orb {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-corner-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.03), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-line-element {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.hero-title {
  font-size: clamp(2.25rem, 6vw + 1rem, 4rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.15;
  word-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  color: #059669;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

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

.stat-number {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #059669;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  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 + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.2);
}

.btn-primary:active {
  transform: translateY(-1px);
  transition-duration: 150ms;
}

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

.btn-secondary:hover {
  background: var(--color-accent-light);
  border-color: var(--color-primary-hover);
  transform: translateY(-3px);
}

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

.about-shape-accent-1 {
  position: absolute;
  top: 15%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.about-glow-element {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-floating-panel {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

.about-corner-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.03), transparent);
  z-index: 1;
  pointer-events: none;
}

.about-line-accent {
  position: absolute;
  top: 25%;
  left: 15%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-organic-blob {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 220px;
  height: 220px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

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

.about-text-block {
  flex: 1 1 400px;
}

.about-image-block {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

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

.about-subtitle {
  font-size: 1.125rem;
  color: #059669;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.about-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.benefit-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
}

.benefit-text {
  flex: 1;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

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

.features-mesh-gradient {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-left {
  position: absolute;
  top: 30%;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-right {
  position: absolute;
  bottom: 10%;
  right: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-accent-shape {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 200px;
  height: 240px;
  background: rgba(34, 197, 94, 0.04);
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

.features-floating-element {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 160px;
  height: 160px;
  background: rgba(5, 150, 105, 0.03);
  border: 2px solid rgba(5, 150, 105, 0.08);
  border-radius: 30%;
  z-index: 2;
  pointer-events: none;
}

.features-corner-mark {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: linear-gradient(225deg, rgba(34, 197, 94, 0.03), transparent);
  z-index: 1;
  pointer-events: none;
}

.features-line-separator {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.features-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

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

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

.features-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.features-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(5, 150, 105, 0.2);
}

.features-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
}

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

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

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

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

.path-glow-accent {
  position: absolute;
  top: 5%;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.path-shape-element {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(34, 197, 94, 0.04);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.path-floating-card {
  position: absolute;
  top: 30%;
  left: 8%;
  width: 150px;
  height: 120px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(5, 150, 105, 0.08);
  border-radius: 10px;
  transform: rotate(5deg);
  z-index: 2;
  pointer-events: none;
}

.path-ambient-glow {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.path-corner-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.02), transparent);
  z-index: 1;
  pointer-events: none;
}

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

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

.path-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

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

.path-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  transition: all 350ms ease;
}

.path-step:hover {
  border-color: rgba(5, 150, 105, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

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

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

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

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

.posts-glow-element {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.posts-accent-shape {
  position: absolute;
  bottom: 20%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.posts-floating-detail {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 140px;
  height: 140px;
  background: rgba(16, 185, 129, 0.03);
  border: 2px solid rgba(5, 150, 105, 0.06);
  border-radius: 40%;
  z-index: 2;
  pointer-events: none;
}

.posts-line-accent {
  position: absolute;
  top: 25%;
  right: 20%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}

.posts-corner-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: linear-gradient(225deg, rgba(34, 197, 94, 0.02), transparent);
  z-index: 1;
  pointer-events: none;
}

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

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

.posts-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

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

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

.post-card {
  flex: 1 1 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(5, 150, 105, 0.2);
}

.post-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

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

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

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

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

.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease;
  width: fit-content;
}

.post-card-link:hover {
  gap: 0.75rem;
  color: var(--color-primary-hover);
}

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

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

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

.testimonial-glow-left {
  position: absolute;
  top: 20%;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-glow-right {
  position: absolute;
  bottom: 15%;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-accent-shape {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 240px;
  height: 240px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 50% 50% 45% 55% / 55% 50% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-floating-element {
  position: absolute;
  bottom: 30%;
  left: 5%;
  width: 160px;
  height: 160px;
  background: rgba(5, 150, 105, 0.03);
  border: 2px solid rgba(34, 197, 94, 0.06);
  border-radius: 35%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-corner-detail {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(225deg, rgba(34, 197, 94, 0.03), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.testimonial-header {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.testimonial-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

.testimonial-quote {
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.author-name {
  font-size: 0.95rem;
  color: #475569;
  font-weight: 500;
}

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

.testimonial-stat {
  flex: 0 1 auto;
  text-align: center;
}

.testimonial-stat-number {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-stat-label {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

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

.values-mesh-gradient {
  position: absolute;
  top: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.values-glow-accent {
  position: absolute;
  bottom: 5%;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.values-floating-shape {
  position: absolute;
  top: 35%;
  left: 8%;
  width: 220px;
  height: 220px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.values-line-element {
  position: absolute;
  top: 40%;
  right: 15%;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}

.values-corner-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.02), transparent);
  z-index: 1;
  pointer-events: none;
}

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

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

.values-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

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

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

.value-item {
  display: flex;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  transition: all 350ms ease;
}

.value-item:hover {
  border-color: rgba(5, 150, 105, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
}

.value-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.value-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

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

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

.cta-glow-accent-1 {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-accent-2 {
  position: absolute;
  bottom: 15%;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.cta-floating-element {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 180px;
  height: 180px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
  z-index: 2;
  pointer-events: none;
}

.cta-corner-detail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 240px;
  height: 240px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.03), transparent);
  z-index: 1;
  pointer-events: none;
}

.cta-line-accent {
  position: absolute;
  top: 25%;
  left: 20%;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.cta-title {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-subtitle {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.btn-large {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.125rem);
  padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
}

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

.contact-mesh-gradient {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-left {
  position: absolute;
  top: 30%;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-right {
  position: absolute;
  bottom: 10%;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-accent-shape {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 260px;
  height: 260px;
  background: rgba(5, 150, 105, 0.04);
  border-radius: 50% 50% 45% 55% / 55% 50% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

.contact-floating-panel {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 160px;
  height: 140px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(5, 150, 105, 0.08);
  border-radius: 12px;
  transform: rotate(-12deg);
  z-index: 2;
  pointer-events: none;
}

.contact-corner-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(225deg, rgba(34, 197, 94, 0.02), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.contact-form-wrapper {
  flex: 1 1 400px;
}

.contact-info-wrapper {
  flex: 1 1 400px;
}

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

.contact-subtitle {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

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

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

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

.contact-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.5rem;
}

.contact-submit:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.2);
}

.contact-privacy {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.contact-privacy-link {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 300ms ease;
}

.contact-privacy-link:hover {
  color: var(--color-primary-hover);
}

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

.contact-faq {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.faq-question {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.faq-answer {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

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

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

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

.cookie-banner-text {
  color: #e2e8f0;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.5;
  margin: 0;
  flex: 0 1 auto;
  max-width: 600px;
}

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

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

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

.cookie-btn-accept:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.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: #f1f5f9;
}

@media (max-width: 768px) {
  .hero-stats {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .cookie-banner {
    flex-direction: column;
    padding: 1rem;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    word-spacing: 0.1em;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}

    .footer {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.footer-content {
  display: block;
}

.footer-about {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

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

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

.footer-nav-title,
.footer-contact-title,
.footer-legal-title {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  font-family: var(--font-primary);
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li,
.footer-legal-list li {
  margin-bottom: 0.75rem;
}

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

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

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

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

.footer-contact-item {
  margin-bottom: 1.25rem;
}

.footer-contact-label {
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact-value {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

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

.footer-copyright-text {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3.5rem);
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-about {
    flex: 0 0 calc(50% - 1.25rem);
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

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

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

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

  .footer-copyright {
    flex: 0 0 100%;
    padding-top: clamp(2.5rem, 4vw, 3.5rem);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
  }
}

@media (min-width: 1024px) {
  .footer-about {
    flex: 0 0 calc(35% - 1rem);
  }

  .footer-navigation,
  .footer-contact,
  .footer-legal {
    flex: 0 0 auto;
    min-width: 180px;
  }
}

@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-mindset-groei {
  width: 100%;
  background: #f9fafb;
}

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

.hero-deco-glow-mindset-groei {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-blob-shape-mindset-groei {
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 250px;
  height: 280px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-line-mindset-groei {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #059669, transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-content-mindset-groei {
  position: relative;
  z-index: 10;
}

.hero-text-block-mindset-groei {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-title-mindset-groei {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.hero-subtitle-mindset-groei {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #475569;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  line-height: 1.7;
}

.hero-stats-mindset-groei {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 2.5rem);
}

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

.stat-number-mindset-groei {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  font-family: 'Merriweather', serif;
}

.stat-label-mindset-groei {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .hero-section-mindset-groei {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

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

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

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

.section-tag-mindset-groei {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.posts-title-mindset-groei {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Merriweather', serif;
}

.posts-subtitle-mindset-groei {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.card-mindset-groei {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-mindset-groei:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #059669;
}

.card-image-mindset-groei {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  background: #e5e7eb;
}

.card-title-mindset-groei {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  font-family: 'Merriweather', serif;
}

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

.card-link-mindset-groei {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #059669;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.card-link-mindset-groei:hover {
  background: #047857;
  transform: translateX(4px);
}

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

.learning-path-section-mindset-groei {
  background: linear-gradient(180deg, #f0fdf4 0%, #f1f5f9 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.learning-deco-shape-mindset-groei {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 45% 55% 40% 60% / 55% 35% 65% 45%;
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

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

.learning-title-mindset-groei {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: 'Merriweather', serif;
}

.learning-subtitle-mindset-groei {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.learning-steps-mindset-groei {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  position: relative;
  z-index: 10;
}

.learning-step-mindset-groei {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: #ffffff;
  border-radius: 10px;
  border-left: 4px solid #059669;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.learning-step-mindset-groei:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.learning-step-number-mindset-groei {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #059669;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
  font-family: 'Merriweather', serif;
}

.learning-step-content-mindset-groei {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.learning-step-title-mindset-groei {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'Merriweather', serif;
}

.learning-step-text-mindset-groei {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #64748b;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .learning-path-section-mindset-groei {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

.insights-section-mindset-groei {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.insights-accent-mindset-groei {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.insights-quote-block-mindset-groei {
  position: relative;
  z-index: 10;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.featured-quote-mindset-groei {
  padding: clamp(2rem, 4vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #f0fdf4;
  margin: 0;
}

.quote-text-mindset-groei {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-family: 'Merriweather', serif;
}

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

.insights-content-mindset-groei {
  position: relative;
  z-index: 10;
}

.insights-heading-mindset-groei {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  font-family: 'Merriweather', serif;
}

.insights-text-mindset-groei {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.insights-text-secondary-mindset-groei {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  line-height: 1.8;
}

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

@media (max-width: 640px) {
  .hero-stats-mindset-groei {
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .stat-number-mindset-groei {
    font-size: clamp(1.75rem, 3vw, 2rem);
  }

  .learning-step-mindset-groei {
    flex-direction: column;
    align-items: flex-start;
  }

  .learning-step-number-mindset-groei {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .posts-grid-mindset-groei {
    gap: 2rem;
  }

  .card-mindset-groei {
    flex: 1 1 320px;
    max-width: 380px;
  }
}

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

.card-link-mindset-groei:focus-visible,
a[data-post-link]:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 3px;
}

.main-reflectief-schrijven-groei {
  width: 100%;
}

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

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

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

.breadcrumb-link-reflectief-schrijven-groei {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-reflectief-schrijven-groei:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-reflectief-schrijven-groei {
  color: #9ca3af;
  margin: 0 0.25rem;
}

.breadcrumb-current-reflectief-schrijven-groei {
  color: #4b5563;
  font-weight: 500;
}

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

.hero-text-block-reflectief-schrijven-groei {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-reflectief-schrijven-groei {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.15;
}

.hero-subtitle-reflectief-schrijven-groei {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  line-height: 1.6;
}

.article-meta-reflectief-schrijven-groei {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-reflectief-schrijven-groei {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.meta-badge-reflectief-schrijven-groei i {
  font-size: 1rem;
}

.hero-image-block-reflectief-schrijven-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-reflectief-schrijven-groei {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-content-reflectief-schrijven-groei {
    flex-direction: column;
  }
  
  .hero-text-block-reflectief-schrijven-groei,
  .hero-image-block-reflectief-schrijven-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-title-reflectief-schrijven-groei {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
}

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

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

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

.intro-text-reflectief-schrijven-groei {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-reflectief-schrijven-groei {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.intro-description-reflectief-schrijven-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.intro-image-reflectief-schrijven-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-element-reflectief-schrijven-groei {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

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

.benefits-section-reflectief-schrijven-groei .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-header-reflectief-schrijven-groei {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-reflectief-schrijven-groei {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefits-title-reflectief-schrijven-groei {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.benefits-grid-reflectief-schrijven-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefit-card-reflectief-schrijven-groei {
  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 #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-reflectief-schrijven-groei:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon-reflectief-schrijven-groei {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  border-radius: 12px;
  color: #059669;
  font-size: 1.5rem;
}

.benefit-title-reflectief-schrijven-groei {
  font-family: 'Merriweather', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

.benefit-text-reflectief-schrijven-groei {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

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

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

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

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

.techniques-image-reflectief-schrijven-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-element-reflectief-schrijven-groei {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.techniques-text-reflectief-schrijven-groei {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.techniques-title-reflectief-schrijven-groei {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
}

.technique-step-reflectief-schrijven-groei {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
}

.step-number-reflectief-schrijven-groei {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-reflectief-schrijven-groei {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-reflectief-schrijven-groei {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.step-description-reflectief-schrijven-groei {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .techniques-wrapper-reflectief-schrijven-groei {
    flex-direction: column;
  }
  
  .techniques-image-reflectief-schrijven-groei,
  .techniques-text-reflectief-schrijven-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practice-section-reflectief-schrijven-groei {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.practice-section-reflectief-schrijven-groei .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.practice-wrapper-reflectief-schrijven-groei {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.practice-text-reflectief-schrijven-groei {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-title-reflectief-schrijven-groei {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
}

.practice-description-reflectief-schrijven-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.practice-highlight-reflectief-schrijven-groei {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #059669;
  border-radius: 8px;
}

.highlight-title-reflectief-schrijven-groei {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.highlight-list-reflectief-schrijven-groei {
  margin-left: 1.5rem;
  list-style: disc;
}

.highlight-list-reflectief-schrijven-groei li {
  color: #4b5563;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.practice-closing-reflectief-schrijven-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  font-style: italic;
}

.practice-image-reflectief-schrijven-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-element-reflectief-schrijven-groei {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .practice-wrapper-reflectief-schrijven-groei {
    flex-direction: column;
  }
  
  .practice-text-reflectief-schrijven-groei,
  .practice-image-reflectief-schrijven-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.prompts-section-reflectief-schrijven-groei .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.prompts-title-reflectief-schrijven-groei {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
}

.prompts-grid-reflectief-schrijven-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.prompt-card-reflectief-schrijven-groei {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.prompt-heading-reflectief-schrijven-groei {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.prompt-list-reflectief-schrijven-groei {
  margin-left: 1.5rem;
  list-style: disc;
}

.prompt-list-reflectief-schrijven-groei li {
  color: #4b5563;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

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

.quote-section-reflectief-schrijven-groei {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.quote-section-reflectief-schrijven-groei .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.quote-text-reflectief-schrijven-groei {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-style: italic;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-author-reflectief-schrijven-groei {
  font-size: 0.875rem;
  color: #4b5563;
  font-style: normal;
}

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

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

.conclusion-content-reflectief-schrijven-groei {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.conclusion-text-reflectief-schrijven-groei {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-reflectief-schrijven-groei {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
}

.conclusion-description-reflectief-schrijven-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.cta-title-reflectief-schrijven-groei {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-description-reflectief-schrijven-groei {
  font-size: 0.9375rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-primary-reflectief-schrijven-groei {
  background: #ffffff;
  color: #059669;
  font-weight: 600;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary-reflectief-schrijven-groei:hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.conclusion-image-reflectief-schrijven-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-element-reflectief-schrijven-groei {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .conclusion-content-reflectief-schrijven-groei {
    flex-direction: column;
  }
  
  .conclusion-text-reflectief-schrijven-groei,
  .conclusion-image-reflectief-schrijven-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-reflectief-schrijven-groei {
  background: #f9fafb;
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

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

.disclaimer-content-reflectief-schrijven-groei {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-reflectief-schrijven-groei {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-reflectief-schrijven-groei {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.7;
}

.related-section-reflectief-schrijven-groei {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

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

.related-title-reflectief-schrijven-groei {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-card-reflectief-schrijven-groei {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-reflectief-schrijven-groei:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image-reflectief-schrijven-groei {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-image-reflectief-schrijven-groei {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-reflectief-schrijven-groei {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-reflectief-schrijven-groei {
  font-family: 'Merriweather', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.related-card-text-reflectief-schrijven-groei {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}

.related-card-link-reflectief-schrijven-groei {
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.related-card-link-reflectief-schrijven-groei:hover {
  color: #047857;
  text-decoration: underline;
}

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

@media (min-width: 768px) {
  .hero-section-reflectief-schrijven-groei {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
  
  .introduction-section-reflectief-schrijven-groei {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
  
  .benefits-section-reflectief-schrijven-groei {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-title-reflectief-schrijven-groei {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
  .benefits-title-reflectief-schrijven-groei,
  .techniques-title-reflectief-schrijven-groei,
  .practice-title-reflectief-schrijven-groei,
  .conclusion-title-reflectief-schrijven-groei {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  
  .benefit-card-reflectief-schrijven-groei {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}

.main-meditatie-dagelijkse-vrede {
  width: 100%;
  background: #f9fafb;
}

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

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

.hero-section-meditatie-dagelijkse-vrede {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.breadcrumbs-meditatie-dagelijkse-vrede {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.breadcrumb-link-meditatie-dagelijkse-vrede {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-meditatie-dagelijkse-vrede:hover {
  color: #ffffff;
}

.breadcrumb-separator-meditatie-dagelijkse-vrede {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current-meditatie-dagelijkse-vrede {
  color: #ffffff;
  font-weight: 500;
}

.hero-content-meditatie-dagelijkse-vrede {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-meditatie-dagelijkse-vrede {
  flex: 1 1 300px;
  max-width: 600px;
}

.hero-title-meditatie-dagelijkse-vrede {
  font-size: clamp(2rem, 5vw + 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-meditatie-dagelijkse-vrede {
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-meta-meditatie-dagelijkse-vrede {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-meditatie-dagelijkse-vrede {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 20px;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 500;
}

.meta-badge-meditatie-dagelijkse-vrede i {
  font-size: 0.9rem;
}

.hero-image-wrapper-meditatie-dagelijkse-vrede {
  flex: 1 1 300px;
  min-width: 280px;
}

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

@media (max-width: 768px) {
  .hero-content-meditatie-dagelijkse-vrede {
    flex-direction: column;
  }
  
  .hero-image-wrapper-meditatie-dagelijkse-vrede {
    flex: 1 1 100%;
  }
}

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

.introduction-wrapper-meditatie-dagelijkse-vrede {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-meditatie-dagelijkse-vrede {
  flex: 1 1 300px;
  max-width: 550px;
}

.introduction-title-meditatie-dagelijkse-vrede {
  font-size: clamp(1.5rem, 3.5vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-meditatie-dagelijkse-vrede {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.introduction-image-meditatie-dagelijkse-vrede {
  flex: 1 1 300px;
  min-width: 280px;
}

.introduction-img-meditatie-dagelijkse-vrede {
  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-wrapper-meditatie-dagelijkse-vrede {
    flex-direction: column;
  }
  
  .introduction-image-meditatie-dagelijkse-vrede {
    flex: 1 1 100%;
  }
}

.fundamentals-section-meditatie-dagelijkse-vrede {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.fundamentals-content-meditatie-dagelijkse-vrede {
  display: flex;
  flex-direction: column;
}

.fundamentals-title-meditatie-dagelijkse-vrede {
  font-size: clamp(1.5rem, 3.5vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.fundamentals-grid-meditatie-dagelijkse-vrede {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.fundamental-card-meditatie-dagelijkse-vrede {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fundamental-card-meditatie-dagelijkse-vrede:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.fundamental-number-meditatie-dagelijkse-vrede {
  font-size: 2.5rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.fundamental-card-content-meditatie-dagelijkse-vrede {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fundamental-card-title-meditatie-dagelijkse-vrede {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  font-weight: 700;
  color: #111827;
}

.fundamental-card-text-meditatie-dagelijkse-vrede {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.techniques-section-meditatie-dagelijkse-vrede {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.techniques-wrapper-meditatie-dagelijkse-vrede {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.techniques-text-meditatie-dagelijkse-vrede {
  flex: 1 1 300px;
  max-width: 550px;
}

.techniques-title-meditatie-dagelijkse-vrede {
  font-size: clamp(1.5rem, 3.5vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.techniques-description-meditatie-dagelijkse-vrede {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.techniques-list-meditatie-dagelijkse-vrede {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-item-meditatie-dagelijkse-vrede {
  padding-left: 1.5rem;
  border-left: 3px solid #059669;
  position: relative;
}

.technique-name-meditatie-dagelijkse-vrede {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.125rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.technique-description-meditatie-dagelijkse-vrede {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #4b5563;
  line-height: 1.6;
}

.techniques-image-meditatie-dagelijkse-vrede {
  flex: 1 1 300px;
  min-width: 280px;
}

.techniques-img-meditatie-dagelijkse-vrede {
  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) {
  .techniques-wrapper-meditatie-dagelijkse-vrede {
    flex-direction: column;
  }
  
  .techniques-image-meditatie-dagelijkse-vrede {
    flex: 1 1 100%;
  }
}

.quote-section-meditatie-dagelijkse-vrede {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.featured-quote-meditatie-dagelijkse-vrede {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #ffffff;
  font-style: italic;
}

.quote-text-meditatie-dagelijkse-vrede {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-attribution-meditatie-dagelijkse-vrede {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
}

.implementation-section-meditatie-dagelijkse-vrede {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.implementation-wrapper-meditatie-dagelijkse-vrede {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.implementation-image-meditatie-dagelijkse-vrede {
  flex: 1 1 300px;
  min-width: 280px;
  order: -1;
}

.implementation-img-meditatie-dagelijkse-vrede {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.implementation-text-meditatie-dagelijkse-vrede {
  flex: 1 1 300px;
  max-width: 550px;
}

.implementation-title-meditatie-dagelijkse-vrede {
  font-size: clamp(1.5rem, 3.5vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.implementation-description-meditatie-dagelijkse-vrede {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.implementation-steps-meditatie-dagelijkse-vrede {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-meditatie-dagelijkse-vrede {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #059669;
}

.step-number-meditatie-dagelijkse-vrede {
  display: block;
  font-weight: 700;
  color: #059669;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-text-meditatie-dagelijkse-vrede {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .implementation-wrapper-meditatie-dagelijkse-vrede {
    flex-direction: column;
  }
  
  .implementation-image-meditatie-dagelijkse-vrede {
    flex: 1 1 100%;
    order: 0;
  }
}

.benefits-section-meditatie-dagelijkse-vrede {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.benefits-title-meditatie-dagelijkse-vrede {
  font-size: clamp(1.5rem, 3.5vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.benefits-subtitle-meditatie-dagelijkse-vrede {
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.1rem);
  color: #4b5563;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.benefits-grid-meditatie-dagelijkse-vrede {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefit-card-meditatie-dagelijkse-vrede {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card-meditatie-dagelijkse-vrede:hover {
  border-color: #059669;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.1);
}

.benefit-icon-meditatie-dagelijkse-vrede {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 12px;
  color: #059669;
  font-size: 1.75rem;
}

.benefit-title-meditatie-dagelijkse-vrede {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  font-weight: 700;
  color: #111827;
}

.benefit-text-meditatie-dagelijkse-vrede {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.closing-section-meditatie-dagelijkse-vrede {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.closing-content-meditatie-dagelijkse-vrede {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
 
}

.closing-title-meditatie-dagelijkse-vrede {
  flex: 1 1 300px;
  max-width: 550px;
  font-size: clamp(1.75rem, 4vw + 0.25rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.closing-text-meditatie-dagelijkse-vrede {
  flex: 1 1 300px;
  max-width: 550px;
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.closing-cta-meditatie-dagelijkse-vrede {
  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: #ffffff;
  color: #059669;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.closing-cta-meditatie-dagelijkse-vrede:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.closing-image-meditatie-dagelijkse-vrede {
  flex: 1 1 300px;
  min-width: 280px;
  display: none;
}

.closing-img-meditatie-dagelijkse-vrede {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
  .closing-image-meditatie-dagelijkse-vrede {
    display: block;
  }
}

@media (max-width: 768px) {
  .closing-content-meditatie-dagelijkse-vrede {
    flex-direction: column;
  }
  
  .closing-image-meditatie-dagelijkse-vrede {
    display: block;
    flex: 1 1 100%;
  }
}

.disclaimer-section-meditatie-dagelijkse-vrede {
  background: #f3f4f6;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.disclaimer-box-meditatie-dagelijkse-vrede {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.disclaimer-title-meditatie-dagelijkse-vrede {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-title-meditatie-dagelijkse-vrede i {
  color: #f59e0b;
  font-size: 1.25rem;
}

.disclaimer-text-meditatie-dagelijkse-vrede {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #4b5563;
  line-height: 1.7;
}

.related-section-meditatie-dagelijkse-vrede {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-title-meditatie-dagelijkse-vrede {
  font-size: clamp(1.5rem, 3.5vw + 0.25rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-meditatie-dagelijkse-vrede {
  font-size: clamp(0.95rem, 1.5vw + 0.25rem, 1.1rem);
  color: #4b5563;
  text-align: center;
  margin-bottom: 3rem;
}

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

.related-card-meditatie-dagelijkse-vrede {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-meditatie-dagelijkse-vrede:hover {
  border-color: #059669;
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.15);
  transform: translateY(-4px);
}

.related-card-image-meditatie-dagelijkse-vrede {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-meditatie-dagelijkse-vrede {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.related-card-description-meditatie-dagelijkse-vrede {
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: #4b5563;
  line-height: 1.6;
}

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

@media (min-width: 768px) {
  .hero-section-meditatie-dagelijkse-vrede {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-content-meditatie-dagelijkse-vrede {
    gap: 3rem;
  }
}

.main-adem-energiebeheer {
  width: 100%;
}

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

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

.hero-text-wrapper-adem-energiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-adem-energiebeheer {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.hero-subtitle-adem-energiebeheer {
  font-size: clamp(1rem, 2vw + 0.3rem, 1.25rem);
  color: #475569;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.article-meta-adem-energiebeheer {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-badge-adem-energiebeheer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-adem-energiebeheer i {
  font-size: 0.875rem;
}

.hero-stats-adem-energiebeheer {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.stat-item-adem-energiebeheer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-adem-energiebeheer {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  font-family: 'Merriweather', serif;
}

.stat-label-adem-energiebeheer {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-image-adem-energiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-adem-energiebeheer img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.intro-text-adem-energiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-adem-energiebeheer {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-adem-energiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-adem-energiebeheer img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.section-header-adem-energiebeheer {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-adem-energiebeheer {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.fundamentals-section-adem-energiebeheer {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.fundamentals-text-adem-energiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-title-adem-energiebeheer {
  font-size: clamp(1.75rem, 4vw + 0.3rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.fundamentals-subtitle-adem-energiebeheer {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.fundamentals-heading-adem-energiebeheer {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.fundamentals-description-adem-energiebeheer {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.benefits-list-adem-energiebeheer {
  background: rgba(5, 150, 105, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #059669;
  margin-top: 1.5rem;
}

.benefits-title-adem-energiebeheer {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.benefits-items-adem-energiebeheer {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-item-adem-energiebeheer {
  font-size: 0.95rem;
  color: #475569;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.benefits-item-adem-energiebeheer::before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: bold;
}

.fundamentals-image-adem-energiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-image-adem-energiebeheer img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

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

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

.techniques-card-adem-energiebeheer {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.techniques-card-adem-energiebeheer:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.1);
  border-color: #059669;
}

.techniques-card-number-adem-energiebeheer {
  font-size: 2.5rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
  font-family: 'Merriweather', serif;
}

.techniques-card-content-adem-energiebeheer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.techniques-card-title-adem-energiebeheer {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.techniques-card-text-adem-energiebeheer {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.techniques-card-tip-adem-energiebeheer {
  font-size: 0.9rem;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border-left: 3px solid #059669;
  margin-top: 0.5rem;
}

.implementation-section-adem-energiebeheer {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-image-adem-energiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-image-adem-energiebeheer img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.implementation-text-adem-energiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-adem-energiebeheer {
  font-size: clamp(1.75rem, 4vw + 0.3rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.implementation-description-adem-energiebeheer {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.implementation-steps-adem-energiebeheer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-step-adem-energiebeheer {
  padding: 1.5rem;
  background: rgba(5, 150, 105, 0.05);
  border-radius: 10px;
  border-left: 4px solid #059669;
}

.implementation-step-title-adem-energiebeheer {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.implementation-step-text-adem-energiebeheer {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.advanced-section-adem-energiebeheer {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-adem-energiebeheer {
  background: #f8fafc;
  border-left: 4px solid #059669;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  margin: clamp(2rem, 4vw, 3rem) 0;
  font-style: italic;
}

.quote-text-adem-energiebeheer {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-cite-adem-energiebeheer {
  font-size: 0.9rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.advanced-content-adem-energiebeheer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2rem;
}

.advanced-text-adem-energiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-heading-adem-energiebeheer {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.advanced-description-adem-energiebeheer {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.advanced-image-adem-energiebeheer {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-image-adem-energiebeheer img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.cta-section-adem-energiebeheer {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-box-adem-energiebeheer {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
}

.cta-title-adem-energiebeheer {
  font-size: clamp(1.75rem, 4vw + 0.3rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-description-adem-energiebeheer {
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.125rem);
  color: #d1fae5;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-button-adem-energiebeheer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #059669;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1rem);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button-adem-energiebeheer:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.disclaimer-section-adem-energiebeheer {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-box-adem-energiebeheer {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-adem-energiebeheer {
  font-size: 1.125rem;
  font-weight: 600;
  color: #7f1d1d;
  margin-bottom: 1rem;
}

.disclaimer-text-adem-energiebeheer {
  font-size: 0.95rem;
  color: #991b1b;
  line-height: 1.7;
  margin: 0;
}

.related-section-adem-energiebeheer {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-adem-energiebeheer {
  font-size: clamp(1.75rem, 4vw + 0.3rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  text-align: center;
}

.related-subtitle-adem-energiebeheer {
  font-size: clamp(0.95rem, 1vw + 0.3rem, 1.125rem);
  color: #64748b;
  text-align: center;
  margin-bottom: 2rem;
}

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

.related-card-adem-energiebeheer {
  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;
  transition: all 0.3s ease;
}

.related-card-adem-energiebeheer:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.1);
  border-color: #059669;
}

.related-card-content-adem-energiebeheer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-adem-energiebeheer {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-adem-energiebeheer {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-adem-energiebeheer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #059669;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.related-card-link-adem-energiebeheer:hover {
  color: #047857;
  gap: 0.75rem;
}

.breadcrumbs-adem-energiebeheer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
}

.breadcrumb-link-adem-energiebeheer {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-adem-energiebeheer:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-adem-energiebeheer {
  color: #cbd5e1;
}

.breadcrumb-current-adem-energiebeheer {
  color: #64748b;
}

@media (max-width: 768px) {
  .hero-content-adem-energiebeheer,
  .intro-content-adem-energiebeheer,
  .fundamentals-content-adem-energiebeheer,
  .implementation-content-adem-energiebeheer,
  .advanced-content-adem-energiebeheer {
    flex-direction: column;
  }

  .hero-text-wrapper-adem-energiebeheer,
  .hero-image-adem-energiebeheer,
  .intro-text-adem-energiebeheer,
  .intro-image-adem-energiebeheer,
  .fundamentals-text-adem-energiebeheer,
  .fundamentals-image-adem-energiebeheer,
  .implementation-image-adem-energiebeheer,
  .implementation-text-adem-energiebeheer,
  .advanced-text-adem-energiebeheer,
  .advanced-image-adem-energiebeheer {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .techniques-card-adem-energiebeheer {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-adem-energiebeheer {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-adem-energiebeheer {
    gap: clamp(1rem, 3vw, 2rem);
  }
}

@media (min-width: 768px) {
  .techniques-card-adem-energiebeheer {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .techniques-card-adem-energiebeheer {
    flex: 1 1 calc(33.333% - 1.333rem);
  }
}

  .main-bewuste-keuzes-maken {
    width: 100%;
  }

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

  .breadcrumbs-bewuste-keuzes-maken {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    font-size: clamp(0.75rem, 1vw, 0.875rem);
  }

  .breadcrumb-link-bewuste-keuzes-maken {
    color: #059669;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .breadcrumb-link-bewuste-keuzes-maken:hover {
    color: #047857;
    text-decoration: underline;
  }

  .breadcrumb-separator-bewuste-keuzes-maken {
    color: #cbd5e1;
  }

  .breadcrumb-current-bewuste-keuzes-maken {
    color: #64748b;
    font-weight: 500;
  }

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

  .hero-text-wrapper-bewuste-keuzes-maken {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .hero-title-bewuste-keuzes-maken {
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle-bewuste-keuzes-maken {
    font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
    color: #64748b;
    line-height: 1.6;
  }

  .hero-meta-bewuste-keuzes-maken {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: clamp(0.5rem, 1vw, 1rem) 0;
  }

  .meta-badge-bewuste-keuzes-maken {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: #d1fae5;
    color: #059669;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
  }

  .meta-badge-bewuste-keuzes-maken i {
    font-size: 0.75rem;
  }

  .hero-stats-bewuste-keuzes-maken {
    display: flex;
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

  .stat-item-bewuste-keuzes-maken {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .stat-number-bewuste-keuzes-maken {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #059669;
    line-height: 1;
  }

  .stat-label-bewuste-keuzes-maken {
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    color: #64748b;
    font-weight: 500;
  }

  .hero-image-wrapper-bewuste-keuzes-maken {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-image-bewuste-keuzes-maken {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    max-height: 400px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  
  .intro-section-bewuste-keuzes-maken {
    background: #f9fafb;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

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

  .intro-text-block-bewuste-keuzes-maken {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .intro-title-bewuste-keuzes-maken {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
  }

  .intro-description-bewuste-keuzes-maken {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #374151;
    line-height: 1.7;
  }

  .intro-text-bewuste-keuzes-maken {
    font-size: clamp(0.9375rem, 1vw, 1rem);
    color: #64748b;
    line-height: 1.7;
  }

  .intro-image-block-bewuste-keuzes-maken {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-image-bewuste-keuzes-maken {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    max-height: 350px;
    display: block;
  }

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

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

  .section-tag-bewuste-keuzes-maken {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .process-title-bewuste-keuzes-maken {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

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

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

  .process-step-bewuste-keuzes-maken {
    display: flex;
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #059669;
    align-items: flex-start;
  }

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

  .process-step-content-bewuste-keuzes-maken {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
  }

  .process-step-title-bewuste-keuzes-maken {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: #0f172a;
  }

  .process-step-text-bewuste-keuzes-maken {
    font-size: clamp(0.9375rem, 1vw, 1rem);
    color: #64748b;
    line-height: 1.7;
  }

  
  .barriers-section-bewuste-keuzes-maken {
    background: #f9fafb;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .barriers-wrapper-bewuste-keuzes-maken {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .barriers-text-bewuste-keuzes-maken {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 2vw, 2rem);
  }

  .barriers-title-bewuste-keuzes-maken {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
  }

  .barriers-description-bewuste-keuzes-maken {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #374151;
    line-height: 1.7;
  }

  .barriers-list-bewuste-keuzes-maken {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .barrier-item-bewuste-keuzes-maken {
    padding: clamp(1rem, 2vw, 1.5rem);
    background: #ffffff;
    border-radius: 8px;
    border-left: 3px solid #10b981;
  }

  .barrier-title-bewuste-keuzes-maken {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
  }

  .barrier-text-bewuste-keuzes-maken {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
  }

  .barriers-image-bewuste-keuzes-maken {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .barriers-img-bewuste-keuzes-maken {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    max-height: 350px;
    display: block;
  }

  
  .practice-section-bewuste-keuzes-maken {
    background: #ffffff;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .practice-header-bewuste-keuzes-maken {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .practice-title-bewuste-keuzes-maken {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .practice-subtitle-bewuste-keuzes-maken {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
  }

  .practice-cards-bewuste-keuzes-maken {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .practice-card-bewuste-keuzes-maken {
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
  }

  .practice-card-bewuste-keuzes-maken:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #059669;
  }

  .practice-card-icon-bewuste-keuzes-maken {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d1fae5;
    color: #059669;
    border-radius: 10px;
    font-size: 1.5rem;
  }

  .practice-card-title-bewuste-keuzes-maken {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: #0f172a;
  }

  .practice-card-text-bewuste-keuzes-maken {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #64748b;
    line-height: 1.7;
  }

  
  .transformation-section-bewuste-keuzes-maken {
    background: #f9fafb;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

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

  .transformation-image-bewuste-keuzes-maken {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .transformation-img-bewuste-keuzes-maken {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    max-height: 400px;
    display: block;
  }

  .transformation-text-bewuste-keuzes-maken {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .transformation-title-bewuste-keuzes-maken {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
  }

  .transformation-description-bewuste-keuzes-maken {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #374151;
    line-height: 1.7;
  }

  .featured-quote-bewuste-keuzes-maken {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-left: 4px solid #059669;
    background: #ffffff;
    border-radius: 8px;
    margin: clamp(1rem, 2vw, 1.5rem) 0;
  }

  .quote-text-bewuste-keuzes-maken {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #0f172a;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .quote-author-bewuste-keuzes-maken {
    font-size: 0.9375rem;
    color: #64748b;
    font-style: normal;
    font-weight: 500;
  }

  .transformation-benefit-bewuste-keuzes-maken {
    font-size: clamp(0.9375rem, 1vw, 1rem);
    color: #64748b;
    line-height: 1.7;
  }

  .benefit-label-bewuste-keuzes-maken {
    color: #0f172a;
    font-weight: 600;
  }

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

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

  .conclusion-title-bewuste-keuzes-maken {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
  }

  .conclusion-text-bewuste-keuzes-maken {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #374151;
    line-height: 1.8;
  }

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

  .cta-title-bewuste-keuzes-maken {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
  }

  .cta-text-bewuste-keuzes-maken {
    font-size: clamp(0.9375rem, 1vw, 1rem);
    color: #d1fae5;
    margin-bottom: 1.5rem;
  }

  .cta-button-bewuste-keuzes-maken {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    background: #ffffff;
    color: #059669;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.875rem, 1vw, 1rem);
  }

  .cta-button-bewuste-keuzes-maken:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  
  .related-section-bewuste-keuzes-maken {
    background: #f9fafb;
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .related-header-bewuste-keuzes-maken {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .related-title-bewuste-keuzes-maken {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  .related-subtitle-bewuste-keuzes-maken {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #64748b;
  }

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

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

  .related-card-bewuste-keuzes-maken:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .related-card-image-bewuste-keuzes-maken {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

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

  .related-card-bewuste-keuzes-maken:hover .related-card-image-bewuste-keuzes-maken img {
    transform: scale(1.05);
  }

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

  .related-card-title-bewuste-keuzes-maken {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: #0f172a;
  }

  .related-card-description-bewuste-keuzes-maken {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
  }

  .related-card-link-bewuste-keuzes-maken {
    color: #059669;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
  }

  .related-card-link-bewuste-keuzes-maken:hover {
    color: #047857;
    text-decoration: underline;
  }

  
  .disclaimer-section-bewuste-keuzes-maken {
    background: #ffffff;
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
  }

  .disclaimer-content-bewuste-keuzes-maken {
    max-width: 700px;
    margin: 0 auto;
    padding: clamp(1rem, 2vw, 1.5rem);
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #64748b;
  }

  .disclaimer-title-bewuste-keuzes-maken {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
  }

  .disclaimer-text-bewuste-keuzes-maken {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: #64748b;
    line-height: 1.8;
  }

  
  @media (max-width: 768px) {
    .hero-content-bewuste-keuzes-maken,
    .intro-content-bewuste-keuzes-maken,
    .barriers-wrapper-bewuste-keuzes-maken,
    .transformation-wrapper-bewuste-keuzes-maken {
      flex-direction: column;
    }

    .hero-text-wrapper-bewuste-keuzes-maken,
    .hero-image-wrapper-bewuste-keuzes-maken,
    .intro-text-block-bewuste-keuzes-maken,
    .intro-image-block-bewuste-keuzes-maken,
    .barriers-text-bewuste-keuzes-maken,
    .barriers-image-bewuste-keuzes-maken,
    .transformation-image-bewuste-keuzes-maken,
    .transformation-text-bewuste-keuzes-maken {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .practice-card-bewuste-keuzes-maken {
      flex: 1 1 100%;
      max-width: none;
    }

    .related-card-bewuste-keuzes-maken {
      flex: 1 1 100%;
      max-width: none;
    }

    .process-step-bewuste-keuzes-maken {
      gap: 1rem;
    }

    .process-step-number-bewuste-keuzes-maken {
      min-width: 50px;
    }
  }

  
  @media (max-width: 480px) {
    .hero-stats-bewuste-keuzes-maken {
      flex-direction: column;
      gap: 1rem;
    }

    .breadcrumbs-bewuste-keuzes-maken {
      gap: 0.25rem;
    }

    .process-step-bewuste-keuzes-maken {
      padding: 1rem;
    }
  }

.main-verbinding-authenticiteit {
  width: 100%;
  background: #ffffff;
}

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

.hero-section-verbinding-authenticiteit .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

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

.breadcrumb-link-verbinding-authenticiteit {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-verbinding-authenticiteit:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-verbinding-authenticiteit {
  color: #cbd5e1;
}

.breadcrumb-current-verbinding-authenticiteit {
  color: #64748b;
  font-weight: 500;
}

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

.hero-text-block-verbinding-authenticiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-verbinding-authenticiteit {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-verbinding-authenticiteit {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.meta-badge-verbinding-authenticiteit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.meta-badge-verbinding-authenticiteit i {
  font-size: 0.9rem;
}

.hero-image-block-verbinding-authenticiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-stats-verbinding-authenticiteit {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin-top: clamp(2rem, 4vw, 3rem);
}

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

.stat-number-verbinding-authenticiteit {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-verbinding-authenticiteit {
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: #64748b;
  font-weight: 500;
}

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

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

  .hero-stats-verbinding-authenticiteit {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

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

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

.intro-text-block-verbinding-authenticiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-verbinding-authenticiteit {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

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

.intro-description-verbinding-authenticiteit:last-child {
  margin-bottom: 0;
}

.intro-image-block-verbinding-authenticiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .intro-wrapper-verbinding-authenticiteit {
    flex-direction: column;
  }

  .intro-text-block-verbinding-authenticiteit,
  .intro-image-block-verbinding-authenticiteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principles-section-verbinding-authenticiteit {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.section-header-verbinding-authenticiteit {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-tag-verbinding-authenticiteit {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: #d1fae5;
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

.principles-subtitle-verbinding-authenticiteit {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.principles-list-verbinding-authenticiteit {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-step-verbinding-authenticiteit {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.principle-number-verbinding-authenticiteit {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principle-content-verbinding-authenticiteit {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principle-title-verbinding-authenticiteit {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.principle-text-verbinding-authenticiteit {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .principle-step-verbinding-authenticiteit {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

.practice-wrapper-verbinding-authenticiteit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-image-block-verbinding-authenticiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.practice-text-block-verbinding-authenticiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.practice-description-verbinding-authenticiteit {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.practice-list-verbinding-authenticiteit {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.practice-item-verbinding-authenticiteit {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.practice-icon-verbinding-authenticiteit {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.practice-item-content-verbinding-authenticiteit {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.practice-item-title-verbinding-authenticiteit {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

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

@media (max-width: 768px) {
  .practice-wrapper-verbinding-authenticiteit {
    flex-direction: column;
  }

  .practice-image-block-verbinding-authenticiteit,
  .practice-text-block-verbinding-authenticiteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-section-verbinding-authenticiteit {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.challenges-wrapper-verbinding-authenticiteit {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenges-text-block-verbinding-authenticiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.challenges-description-verbinding-authenticiteit {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.obstacle-list-verbinding-authenticiteit {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.obstacle-item-verbinding-authenticiteit {
  padding: 1rem;
  background: #ffffff;
  border-left: 4px solid #059669;
  border-radius: 4px;
}

.obstacle-label-verbinding-authenticiteit {
  display: block;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.obstacle-text-verbinding-authenticiteit {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.challenges-image-block-verbinding-authenticiteit {
  flex: 1 1 50%;
  max-width: 50%;
}

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

@media (max-width: 768px) {
  .challenges-wrapper-verbinding-authenticiteit {
    flex-direction: column;
  }

  .challenges-text-block-verbinding-authenticiteit,
  .challenges-image-block-verbinding-authenticiteit {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.transformation-title-verbinding-authenticiteit {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.featured-quote-verbinding-authenticiteit {
  background: #f3f4f6;
  border-left: 4px solid #059669;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: 4px;
}

.quote-text-verbinding-authenticiteit {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-cite-verbinding-authenticiteit {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.benefits-cards-verbinding-authenticiteit {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.benefit-card-verbinding-authenticiteit {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-verbinding-authenticiteit:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon-verbinding-authenticiteit {
  font-size: 2.5rem;
}

.benefit-card-title-verbinding-authenticiteit {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

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

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

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

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

.conclusion-title-verbinding-authenticiteit {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.conclusion-text-verbinding-authenticiteit {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.cta-title-verbinding-authenticiteit {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cta-text-verbinding-authenticiteit {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #d1fae5;
  margin-bottom: 1.5rem;
}

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

.btn-primary-verbinding-authenticiteit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.related-title-verbinding-authenticiteit {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

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

.related-card-verbinding-authenticiteit {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-verbinding-authenticiteit:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-card-image-verbinding-authenticiteit {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

.related-card-image-verbinding-authenticiteit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-verbinding-authenticiteit {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}

.related-card-description-verbinding-authenticiteit {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-verbinding-authenticiteit {
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.related-card-link-verbinding-authenticiteit:hover {
  color: #047857;
  text-decoration: underline;
}

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

.disclaimer-section-verbinding-authenticiteit {
  background: #f9fafb;
  padding: clamp(2rem, 4vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

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

.disclaimer-title-verbinding-authenticiteit {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.disclaimer-text-verbinding-authenticiteit {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section-header-verbinding-authenticiteit {
    margin-bottom: 2rem;
  }
}

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

  .intro-section-verbinding-authenticiteit {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .principles-section-verbinding-authenticiteit {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .practice-section-verbinding-authenticiteit {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .challenges-section-verbinding-authenticiteit {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .transformation-section-verbinding-authenticiteit {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .conclusion-section-verbinding-authenticiteit {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .related-section-verbinding-authenticiteit {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-verbinding-authenticiteit {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

:root {
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;
  --color-text-primary: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-secondary: #10b981;
  --color-accent-light: #d1fae5;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Merriweather', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

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

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

.mindset-journey-about {
  width: 100%;
}

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

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

.opening-vision-title-about {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.15;
  font-family: var(--font-heading);
}

.opening-vision-intro-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 700px;
}

.opening-vision-hero-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

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

.stat-card-about {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
}

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

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

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

.journey-header-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.journey-section-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.journey-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 750px;
}

.journey-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.journey-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

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

.journey-step-inner-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.journey-step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.journey-step-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

.values-intro-about {
  max-width: 800px;
}

.values-intro-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.values-intro-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.values-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.value-card-about {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

.value-card-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.value-card-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.value-card-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

.methodology-header-about {
  max-width: 800px;
}

.methodology-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.methodology-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.methodology-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.method-highlights-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.method-highlight-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
}

.highlight-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.highlight-title-about {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.highlight-text-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

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

.impact-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.impact-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.impact-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.featured-testimonial-about {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
}

.testimonial-quote-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-family: var(--font-heading);
}

.testimonial-author-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  font-weight: 600;
}

.impact-image-about {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.disclaimer-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .journey-step-about {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }

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

  .values-cards-about {
    flex-direction: column;
  }

  .value-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .method-highlights-about {
    flex-direction: column;
  }

  .method-highlight-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .vision-stats-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-card-about {
    flex: 1 1 100%;
  }
}

@media (min-width: 768px) {
  .opening-vision-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .transformation-journey-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .core-values-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .methodology-approach-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .community-impact-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .vision-stats-about {
    justify-content: flex-start;
  }

  .stat-card-about {
    flex: 1 1 auto;
  }

  .values-cards-about {
    flex-direction: row;
  }

  .value-card-about {
    flex: 1 1 calc(33.333% - 1.5rem);
  }

  .method-highlights-about {
    flex-direction: row;
  }

  .method-highlight-about {
    flex: 1 1 calc(33.333% - 1.5rem);
  }
}

.legal-portal {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.legal-portal section {
  width: 100%;
  overflow: hidden;
}

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

.legal-portal-hero {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.legal-portal-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.legal-portal-hero h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-portal-hero-meta p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.legal-portal-content {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.legal-portal-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.legal-portal-section {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.legal-portal-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-portal-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-portal-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}

.legal-portal-section li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-portal-contact {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-accent-light);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-portal-contact h2 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.legal-portal-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-portal-contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-portal-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

  .legal-portal-content {
    padding: 5rem 0;
  }

  .legal-portal-section {
    gap: 1.5rem;
  }
}

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

  .legal-portal-content {
    padding: 6rem 0;
  }

  .legal-portal-content-wrapper {
    gap: 3rem;
  }
}

  .thank-you-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  
  .thank-you-section {
    width: 100%;
    background: var(--color-bg-primary);
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

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

  
  .thank-you-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    padding: clamp(2rem, 5vw, 3rem);
  }

  
  .thank-you-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(60px, 12vw, 100px);
    height: clamp(60px, 12vw, 100px);
    background: var(--color-accent-light);
    border-radius: 50%;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
  }

  .thank-you-icon i {
    font-size: clamp(2rem, 8vw, 3.5rem);
    color: var(--color-primary);
  }

  
  .thank-you-content h1 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
    line-height: 1.15;
    font-weight: 700;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .thank-you-lead {
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .thank-you-message {
    color: var(--color-text-secondary);
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.65;
    margin: 0;
    max-width: 600px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .thank-you-next-steps {
    color: var(--color-text-secondary);
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.65;
    margin: 0;
    max-width: 600px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-you-next-steps strong {
    color: var(--color-text-primary);
    font-weight: 600;
  }

  
  .btn {
    display: inline-block;
    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);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

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

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

  .btn-primary:active {
    transform: translateY(0);
  }

  
  @media (min-width: 768px) {
    .thank-you-section {
      padding: clamp(2rem, 6vw, 5rem) 0;
      min-height: 100vh;
    }

    .thank-you-content {
      gap: clamp(2rem, 5vw, 3rem);
      padding: clamp(3rem, 6vw, 4rem);
    }

    .thank-you-icon {
      width: clamp(80px, 12vw, 120px);
      height: clamp(80px, 12vw, 120px);
      margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }

    .thank-you-icon i {
      font-size: clamp(2.5rem, 8vw, 4rem);
    }
  }

  
  @media (min-width: 1024px) {
    .thank-you-section {
      padding: clamp(3rem, 6vw, 6rem) 0;
      min-height: 100vh;
    }

    .thank-you-content {
      gap: clamp(2.5rem, 5vw, 3.5rem);
      padding: clamp(4rem, 6vw, 5rem);
    }

    .thank-you-icon {
      width: clamp(100px, 12vw, 140px);
      height: clamp(100px, 12vw, 140px);
      margin-bottom: clamp(1.5rem, 2vw, 2rem);
    }

    .thank-you-icon i {
      font-size: clamp(3rem, 8vw, 4.5rem);
    }
  }

  
  @media (min-width: 1440px) {
    .thank-you-section {
      padding: 6rem 0;
      min-height: 100vh;
    }

    .thank-you-content {
      gap: 3.5rem;
      padding: 5rem;
    }

    .thank-you-icon {
      width: 140px;
      height: 140px;
      margin-bottom: 2rem;
    }

    .thank-you-icon i {
      font-size: 4.5rem;
    }

    .thank-you-content h1 {
      font-size: 3.5rem;
    }

    .thank-you-lead {
      font-size: 1.5rem;
    }

    .thank-you-message,
    .thank-you-next-steps {
      font-size: 1.125rem;
    }
  }

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

  .btn:focus:not(:focus-visible) {
    outline: none;
  }

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

  
  @media print {
    .thank-you-page {
      min-height: auto;
    }

    .thank-you-section {
      min-height: auto;
      padding: 2rem 0;
    }

    .btn {
      display: none;
    }
  }

.main.error-page {
  font-family: var(--font-primary);
}

.error-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  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.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 3;
  max-width: 650px;
  margin: 0 auto;
}

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

.error-decoration-1 {
  width: 300px;
  height: 300px;
  background: var(--color-secondary);
  top: 10%;
  right: 5%;
  animation: float 6s ease-in-out infinite;
}

.error-decoration-2 {
  width: 200px;
  height: 200px;
  background: var(--color-primary);
  bottom: 15%;
  left: 5%;
  animation: float 8s ease-in-out infinite 1s;
}

.error-decoration-3 {
  width: 150px;
  height: 150px;
  background: var(--color-secondary);
  top: 50%;
  left: 10%;
  animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

.error-code-wrapper {
  position: relative;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: transparent;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.05em;
  animation: slideDown 0.8s ease-out;
}

.error-icon {
  width: clamp(80px, 12vw, 120px);
  height: clamp(80px, 12vw, 120px);
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-secondary);
  animation: rotate 20s linear infinite;
}

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.error-description {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #cbd5e1;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.6;
  max-width: 550px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.error-message {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  color: #a1a5b8;
  margin: 0 0 clamp(2rem, 5vw, 3rem) 0;
  line-height: 1.7;
  max-width: 550px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.highlight {
  color: var(--color-secondary);
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  animation: fadeInUp 0.8s ease-out 0.5s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 5vw, 3rem);
}

.error-tips {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.tips-label {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #a1ffd6;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tips-label i {
  flex-shrink: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

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

  .error-code-wrapper {
    margin-bottom: 2.5rem;
  }

  .error-icon {
    animation: rotate 20s linear infinite;
  }

  .btn {
    padding: 1rem 2.5rem;
  }

  .error-tips {
    margin-top: 3rem;
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) 0;
  }

  .error-code-wrapper {
    margin-bottom: 3rem;
  }

  .btn:hover {
    transform: translateY(-3px);
  }

  .error-tips {
    margin-top: 4rem;
  }
}

@media (min-width: 1440px) {
  .error-section::before {
    width: 600px;
    height: 600px;
    right: -5%;
  }

  .error-section::after {
    width: 500px;
    height: 500px;
    left: -10%;
  }
}

@media (max-width: 640px) {
  .error-section {
    min-height: auto;
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .error-content {
    padding: 0;
  }

  .error-code-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  .error-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .error-decoration-1 {
    display: none;
  }

  .error-decoration-2 {
    width: 150px;
    height: 150px;
  }

  .error-decoration-3 {
    display: none;
  }
}

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

.btn:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

@media print {
  .error-decoration,
  .error-section::before,
  .error-section::after {
    display: none;
  }

  .btn {
    border: 1px solid #000;
  }
}