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

:root {
  
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #f3f4f6;
  --color-bg-tertiary: #e5e7eb;
  --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: 'Playfair Display', serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

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

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

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

li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 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;
  width: 60px;
  height: 60px;
  background: var(--color-accent-light);
  border-radius: var(--radius-lg);
}

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

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

.grid {
  display: grid;
  gap: clamp(1rem, 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;
  gap: var(--space-md);
}

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

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

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

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

input, textarea, select {
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border: 1px solid #d1d5db;
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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-submit-btn {
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: var(--color-primary);
  color: #ffffff;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--color-accent-light);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.divider {
  height: 1px;
  background: #d1d5db;
  margin: var(--space-2xl) 0;
}

.accent-line {
  height: 4px;
  width: 60px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  
  .grid-3, .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

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

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

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

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

.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: #ffffff;
  padding: var(--space-sm) var(--space-md);
  z-index: 100;
}

.skip-to-main:focus {
  top: 0;
}

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

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

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

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

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

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

.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-1 { padding-top: var(--space-sm); }
.pt-2 { padding-top: var(--space-md); }
.pt-3 { padding-top: var(--space-lg); }
.pt-4 { padding-top: var(--space-xl); }

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

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

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

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

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #f3f4f6;
  --color-bg-tertiary: #e5e7eb;
  --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: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

.header-groeipad-nav {
  position: static;
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-bg-tertiary);
  padding: clamp(1rem, 2vw, 1.25rem) 0;
  z-index: 100;
  font-family: var(--font-primary);
}

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

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

.header-groeipad-nav-brand:hover {
  opacity: 0.8;
}

.header-groeipad-nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

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

.header-groeipad-nav-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  margin-left: var(--space-lg);
}

.header-groeipad-nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms ease;
  position: relative;
  padding-bottom: 2px;
}

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

.header-groeipad-nav-link:hover {
  color: var(--color-text-primary);
}

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

.header-groeipad-nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 3px;
}

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

.header-groeipad-nav-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-groeipad-nav-cta-button:active {
  transform: translateY(0);
}

.header-groeipad-nav-cta-button:focus-visible {
  outline: 2px solid var(--color-primary-hover);
  outline-offset: 3px;
}

.header-groeipad-nav-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
  flex-shrink: 0;
  transition: opacity 300ms ease;
}

.header-groeipad-nav-mobile-toggle:hover {
  opacity: 0.7;
}

.header-groeipad-nav-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 3px;
}

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

.header-groeipad-nav-mobile-toggle[aria-expanded="true"] .header-groeipad-nav-hamburger:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-groeipad-nav-mobile-toggle[aria-expanded="true"] .header-groeipad-nav-hamburger:nth-child(2) {
  opacity: 0;
}

.header-groeipad-nav-mobile-toggle[aria-expanded="true"] .header-groeipad-nav-hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-groeipad-nav-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-card);
  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;
  padding-top: 70px;
}

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

.header-groeipad-nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--color-bg-tertiary);
}

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

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

.header-groeipad-nav-mobile-close:hover {
  color: var(--color-primary);
}

.header-groeipad-nav-mobile-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 3px;
}

.header-groeipad-nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--space-md) 0;
  flex: 1;
  overflow-y: auto;
}

.header-groeipad-nav-mobile-link {
  padding: var(--space-md) clamp(1rem, 4vw, 2rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-bg-tertiary);
  transition: all 300ms ease;
  display: block;
}

.header-groeipad-nav-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 6vw, 2.5rem);
}

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

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

.header-groeipad-nav-mobile-cta:active {
  transform: scale(0.98);
}

.header-groeipad-nav-mobile-cta:focus-visible {
  outline: 2px solid var(--color-primary-hover);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .header-groeipad-nav-mobile-toggle {
    display: none;
  }

  .header-groeipad-nav-mobile-menu {
    display: none !important;
  }

  .header-groeipad-nav-desktop-nav {
    display: flex;
  }

  .header-groeipad-nav-cta-button {
    display: inline-block;
  }

  .header-groeipad-nav-container {
    gap: 0;
  }
}

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

  .header-groeipad-nav-hamburger {
    transition: none;
  }

  .header-groeipad-nav-mobile-menu {
    transition: none;
  }

  .header-groeipad-nav-link::after {
    transition: none;
  }
}

    .growth-journey-portal {
  width: 100%;
}

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

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

.hero-gradient-mesh {
  position: absolute;
  top: 15%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 65%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-orb-left {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 2;
  pointer-events: none;
}

.hero-floating-orb-right {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-shape-top {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: rgba(251, 146, 60, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-shape-bottom {
  position: absolute;
  bottom: 15%;
  left: 20%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 30% 70% 40% 60% / 60% 40% 70% 30%;
  z-index: 2;
  pointer-events: none;
}

.hero-line-accent {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.hero-corner-element {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 120px;
  height: 120px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 20px;
  transform: rotate(25deg);
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #059669;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.hero-description {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

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

.hero-stat-label {
  font-size: clamp(0.75rem, 1.5vw, 0.9375rem);
  color: #4b5563;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.principles-shape-accent-1 {
  position: absolute;
  top: 10%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.principles-shape-accent-2 {
  position: absolute;
  bottom: 15%;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.principles-glow-element {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.principles-decorative-line {
  position: absolute;
  bottom: 20%;
  left: 50%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.25), transparent);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.principles-floating-panel {
  position: absolute;
  top: 25%;
  left: 8%;
  width: 150px;
  height: 120px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 10px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.principles-accent-orb {
  position: absolute;
  bottom: 5%;
  right: 15%;
  width: 180px;
  height: 180px;
  background: rgba(251, 146, 60, 0.08);
  border-radius: 50%;
  filter: blur(45px);
  z-index: 1;
  pointer-events: none;
}

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

.principles-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.principles-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.principles-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.principles-subtitle {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.principles-card {
  display: flex;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8f9fa;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.principles-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

.principles-card-number {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.principles-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.principles-card-title {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

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

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

.journey-glow-left {
  position: absolute;
  top: 20%;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 65%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.journey-glow-right {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.journey-accent-shapes {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
  z-index: 2;
  pointer-events: none;
}

.journey-floating-element {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 160px;
  height: 140px;
  background: rgba(251, 146, 60, 0.05);
  border: 1px solid rgba(251, 146, 60, 0.15);
  border-radius: 15px;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
}

.journey-decorative-accent {
  position: absolute;
  bottom: 20%;
  left: 50%;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.journey-corner-glow {
  position: absolute;
  top: 5%;
  right: 10%;
  width: 220px;
  height: 220px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 50%;
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
}

.journey-line-element {
  position: absolute;
  top: 40%;
  right: 15%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.journey-text-block {
  flex: 1 1 350px;
}

.journey-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.journey-description {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

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

.journey-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.journey-highlight-icon {
  font-size: 1.5rem;
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.journey-highlight-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

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

.journey-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

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

.features-mesh-gradient-1 {
  position: absolute;
  top: 15%;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.09) 0%, transparent 68%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.features-mesh-gradient-2 {
  position: absolute;
  bottom: 5%;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-accent-1 {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 2;
  pointer-events: none;
}

.features-glow-accent-2 {
  position: absolute;
  bottom: 25%;
  left: 5%;
  width: 240px;
  height: 240px;
  background: rgba(251, 146, 60, 0.07);
  border-radius: 50%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.features-floating-shape {
  position: absolute;
  top: 45%;
  left: 15%;
  width: 180px;
  height: 180px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.features-line-separator {
  position: absolute;
  top: 20%;
  right: 50%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.features-corner-element {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 140px;
  height: 140px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 25px;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

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

.features-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.features-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

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

.features-subtitle {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.features-card {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8f9fa;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #059669;
}

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

.features-card-title {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #1e293b;
}

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

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

.posts-ambient-glow {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.09) 0%, transparent 68%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.posts-shape-accent-1 {
  position: absolute;
  bottom: 15%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 60% 40% 45% 55% / 45% 55% 45% 55%;
  z-index: 1;
  pointer-events: none;
}

.posts-shape-accent-2 {
  position: absolute;
  top: 35%;
  right: 10%;
  width: 220px;
  height: 220px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

.posts-floating-element {
  position: absolute;
  top: 20%;
  left: 8%;
  width: 150px;
  height: 130px;
  background: rgba(251, 146, 60, 0.05);
  border: 1px solid rgba(251, 146, 60, 0.12);
  border-radius: 12px;
  transform: rotate(-10deg);
  z-index: 1;
  pointer-events: none;
}

.posts-decorative-line {
  position: absolute;
  bottom: 30%;
  left: 50%;
  width: 170px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.25), transparent);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.posts-accent-orb {
  position: absolute;
  bottom: 5%;
  right: 20%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

.posts-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.posts-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

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

.posts-subtitle {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.featured-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-2xl);
}

.featured-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #059669;
}

.featured-card-image {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f3f4f6;
}

.featured-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-grow: 1;
}

.featured-card-title {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

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

.featured-card-link {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: #059669;
  font-weight: 500;
  text-decoration: none;
  transition: all 300ms ease-in-out;
  align-self: flex-start;
}

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

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

.posts-cta-link {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #059669;
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.posts-cta-link:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

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

.transform-glow-accent-1 {
  position: absolute;
  top: 15%;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 65%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.transform-glow-accent-2 {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 68%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.transform-shape-element {
  position: absolute;
  top: 40%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50% 45% 55% 50% / 45% 55% 45% 55%;
  z-index: 2;
  pointer-events: none;
}

.transform-floating-accent {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 160px;
  height: 140px;
  background: rgba(251, 146, 60, 0.05);
  border: 1px solid rgba(251, 146, 60, 0.1);
  border-radius: 18px;
  transform: rotate(15deg);
  z-index: 1;
  pointer-events: none;
}

.transform-line-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.25), transparent);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.transform-corner-glow {
  position: absolute;
  bottom: 15%;
  left: 15%;
  width: 220px;
  height: 220px;
  background: rgba(59, 130, 246, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.transform-quote-block {
  flex: 1 1 300px;
}

.transform-quote {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #059669;
  background: #f8f9fa;
  margin: 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.transform-quote-text {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-style: italic;
  color: #0f172a;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

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

.transform-description {
  flex: 1 1 350px;
}

.transform-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  color: #0f172a;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.transform-text {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.transform-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
}

.transform-list-item {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.8;
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: var(--space-sm);
}

.transform-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

.transform-closing {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #0f172a;
  font-weight: 500;
  margin: 0;
  line-height: 1.7;
}

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

.contact-glow-bg {
  position: absolute;
  top: 50%;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 65%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.contact-shape-2 {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 240px;
  height: 240px;
  background: rgba(168, 85, 247, 0.07);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.contact-accent-element {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 50%;
  filter: blur(45px);
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.contact-floating-decoration {
  position: absolute;
  bottom: 30%;
  right: 8%;
  width: 180px;
  height: 160px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.contact-line-accent {
  position: absolute;
  top: 15%;
  right: 50%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.contact-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

.contact-subtitle {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.7;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
}

.contact-form-block {
  flex: 1 1 350px;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

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

.contact-submit {
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2rem);
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
}

.contact-submit:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.contact-submit:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.contact-info-block {
  flex: 1 1 350px;
}

.contact-info-title {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #ffffff;
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.contact-faq-item {
  margin-bottom: var(--space-lg);
}

.contact-faq-question {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1rem);
  color: #e2e8f0;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.cookie-banner-link {
  color: #06b6d4;
  text-decoration: underline;
  transition: color 300ms ease;
}

.cookie-banner-link:hover {
  color: #22d3ee;
}

.cookie-banner-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-sm);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 300ms ease;
  font-family: var(--font-primary);
}

.cookie-btn-accept {
  background: #059669;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #047857;
  transform: translateY(-1px);
  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: #e2e8f0;
}

@media (max-width: 768px) {
  .hero-section {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

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

  .principles-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .journey-content {
    flex-direction: column;
    gap: var(--space-2xl);
  }

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

  .featured-card {
    max-width: none;
  }

  .transform-content {
    flex-direction: column;
    gap: var(--space-2xl);
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form-block,
  .contact-info-block {
    max-width: none;
  }
}

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

    
.footer {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--color-bg-tertiary);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  justify-content: space-between;
}

.footer-about {
  flex: 1 1 280px;
  max-width: 320px;
}

.footer-about-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.footer-about-text {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

.footer-navigation {
  flex: 1 1 200px;
}

.footer-nav-title {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  letter-spacing: -0.3px;
}

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

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

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

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

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

.footer-contact {
  flex: 1 1 260px;
}

.footer-contact-title {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  letter-spacing: -0.3px;
}

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

.footer-contact-item {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.footer-contact-value {
  color: var(--color-text-secondary);
  word-break: break-word;
}

.footer-legal {
  flex: 1 1 200px;
}

.footer-legal-title {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  letter-spacing: -0.3px;
}

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

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

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

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

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

.footer-copyright {
  border-top: 1px solid var(--color-bg-tertiary);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.footer-copyright-text {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: 0.3px;
}

@media (min-width: 768px) {
  .footer-content {
    gap: clamp(2rem, 6vw, 4rem);
  }

  .footer-about {
    flex: 0 1 300px;
  }

  .footer-about-title {
    margin-bottom: 1.25rem;
  }

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

  .footer-link,
  .footer-legal-link {
    font-size: 0.9375rem;
  }

  .footer-contact-item {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 5rem 0 3rem 0;
  }

  .footer-content {
    gap: 4rem;
  }

  .footer-about {
    flex: 0 1 320px;
  }

  .footer-about-title {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
  }

  .footer-about-text {
    font-size: 1rem;
    line-height: 1.75;
  }

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

  .footer-link,
  .footer-legal-link {
    font-size: 1rem;
  }

  .footer-contact-item {
    font-size: 1rem;
  }

  .footer-copyright {
    padding-top: 2.5rem;
    margin-top: 3rem;
  }

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

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

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

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

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

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

.hero-gradient-mesh-personal-growth {
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-personal-growth {
  position: absolute;
  top: 20%;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-personal-growth {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

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

.hero-subtitle-personal-growth {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #4b5563;
  margin-bottom: 3rem;
  line-height: 1.5;
}

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

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

.hero-stat-number-personal-growth {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero-stat-label-personal-growth {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  font-weight: 500;
}

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

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

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

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

.posts-tag-personal-growth {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.card-personal-growth {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.card-personal-growth:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-image-personal-growth {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

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

.card-description-personal-growth {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-personal-growth {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.meta-badge-personal-growth {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(16, 185, 129, 0.08);
  color: var(--color-primary);
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 500;
}

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

.card-link-personal-growth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  text-decoration: none;
  gap: 0.5rem;
}

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

@media (min-width: 768px) {
  .posts-section-personal-growth {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .posts-section-personal-growth {
    padding: 6rem 0;
  }
}

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

.principles-decorative-accent-personal-growth {
  position: absolute;
  top: 50px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50% 40% 60% 30% / 30% 60% 40% 50%;
  z-index: 1;
  pointer-events: none;
}

.principles-decorative-glow-personal-growth {
  position: absolute;
  bottom: -100px;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.principles-title-personal-growth {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
}

.principles-description-personal-growth {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

.principles-list-personal-growth {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.principle-item-personal-growth {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
}

.principle-number-personal-growth {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.principle-content-personal-growth {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.principle-item-title-personal-growth {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #111827;
}

.principle-item-text-personal-growth {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .principles-section-personal-growth {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .principles-section-personal-growth {
    padding: 6rem 0;
  }
}

.insights-section-personal-growth {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #ffffff;
}

.insights-header-personal-growth {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.insights-title-personal-growth {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #111827;
  font-weight: 700;
}

.insights-content-personal-growth {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.featured-quote-personal-growth {
  padding: 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  margin: 0;
}

.quote-text-personal-growth {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #111827;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-personal-growth {
  font-size: 0.9375rem;
  color: #4b5563;
  font-style: normal;
  font-weight: 500;
}

.insights-text-personal-growth {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insights-subheading-personal-growth {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  color: #111827;
  font-weight: 700;
}

.insights-paragraph-personal-growth {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .insights-section-personal-growth {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .insights-section-personal-growth {
    padding: 6rem 0;
  }
}

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

.cta-decorative-shape-personal-growth {
  position: absolute;
  top: -50px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.cta-decorative-glow-personal-growth {
  position: absolute;
  bottom: -120px;
  left: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

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

.cta-title-personal-growth {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description-personal-growth {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-buttons-personal-growth {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-btn-primary-personal-growth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: #ffffff;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-btn-primary-personal-growth:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.2);
}

.cta-btn-secondary-personal-growth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-primary);
  background: transparent;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

@media (min-width: 768px) {
  .cta-section-personal-growth {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .cta-section-personal-growth {
    padding: 6rem 0;
  }
}

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

  .card-personal-growth {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-personal-growth {
    gap: 1.5rem;
  }

  .principle-item-personal-growth {
    flex-direction: column;
    text-align: center;
  }

  .principle-number-personal-growth {
    min-width: auto;
  }

  .cta-buttons-personal-growth {
    flex-direction: column;
  }

  .cta-btn-primary-personal-growth,
  .cta-btn-secondary-personal-growth {
    width: 100%;
  }
}

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

.main-effectieve-leerstrategien-volwassenen {
  width: 100%;
}

.hero-section-effectieve-leerstrategien-volwassenen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-wrapper-effectieve-leerstrategien-volwassenen {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-title-effectieve-leerstrategien-volwassenen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.article-meta-effectieve-leerstrategien-volwassenen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-effectieve-leerstrategien-volwassenen i {
  color: #059669;
}

.hero-stats-effectieve-leerstrategien-volwassenen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: 2rem;
}

.stat-item-effectieve-leerstrategien-volwassenen {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-effectieve-leerstrategien-volwassenen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.stat-label-effectieve-leerstrategien-volwassenen {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-image-effectieve-leerstrategien-volwassenen {
  flex: 1 1 300px;
  max-width: 50%;
}

.hero-image-effectieve-leerstrategien-volwassenen img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.breadcrumb-link-effectieve-leerstrategien-volwassenen {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-effectieve-leerstrategien-volwassenen:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-effectieve-leerstrategien-volwassenen {
  color: #d1d5db;
  margin: 0 0.25rem;
}

.breadcrumb-current-effectieve-leerstrategien-volwassenen {
  color: #64748b;
}

@media (max-width: 768px) {
  .hero-text-wrapper-effectieve-leerstrategien-volwassenen,
  .hero-image-effectieve-leerstrategien-volwassenen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-content-effectieve-leerstrategien-volwassenen {
    flex-direction: column;
  }
}

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

.intro-content-effectieve-leerstrategien-volwassenen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-effectieve-leerstrategien-volwassenen {
  flex: 1 1 300px;
  max-width: 50%;
}

.intro-title-effectieve-leerstrategien-volwassenen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.intro-image-effectieve-leerstrategien-volwassenen {
  flex: 1 1 300px;
  max-width: 50%;
}

.intro-image-effectieve-leerstrategien-volwassenen img {
  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) {
  .intro-text-effectieve-leerstrategien-volwassenen,
  .intro-image-effectieve-leerstrategien-volwassenen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-content-effectieve-leerstrategien-volwassenen {
    flex-direction: column;
  }
}

.methods-section-effectieve-leerstrategien-volwassenen {
  background: #f9fafb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-header-effectieve-leerstrategien-volwassenen {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-effectieve-leerstrategien-volwassenen {
  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;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.methods-title-effectieve-leerstrategien-volwassenen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.methods-steps-effectieve-leerstrategien-volwassenen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.methods-step-effectieve-leerstrategien-volwassenen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.methods-step-effectieve-leerstrategien-volwassenen:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

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

.methods-step-content-effectieve-leerstrategien-volwassenen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.methods-step-title-effectieve-leerstrategien-volwassenen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.methods-step-text-effectieve-leerstrategien-volwassenen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .methods-step-effectieve-leerstrategien-volwassenen {
    gap: 1rem;
    padding: 1rem;
  }

  .methods-step-number-effectieve-leerstrategien-volwassenen {
    font-size: 2rem;
    min-width: 50px;
  }
}

.implementation-section-effectieve-leerstrategien-volwassenen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-wrapper-effectieve-leerstrategien-volwassenen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-effectieve-leerstrategien-volwassenen {
  flex: 1 1 300px;
  max-width: 50%;
}

.implementation-title-effectieve-leerstrategien-volwassenen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.implementation-tips-effectieve-leerstrategien-volwassenen {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.tips-heading-effectieve-leerstrategien-volwassenen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tips-list-effectieve-leerstrategien-volwassenen {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-item-effectieve-leerstrategien-volwassenen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.tips-item-effectieve-leerstrategien-volwassenen:before {
  content: "";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

.implementation-image-effectieve-leerstrategien-volwassenen {
  flex: 1 1 300px;
  max-width: 50%;
}

.implementation-image-effectieve-leerstrategien-volwassenen img {
  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) {
  .implementation-text-effectieve-leerstrategien-volwassenen,
  .implementation-image-effectieve-leerstrategien-volwassenen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-wrapper-effectieve-leerstrategien-volwassenen {
    flex-direction: column;
  }
}

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

.barriers-header-effectieve-leerstrategien-volwassenen {
  text-align: center;
  margin-bottom: 3rem;
}

.barriers-title-effectieve-leerstrategien-volwassenen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.barriers-cards-effectieve-leerstrategien-volwassenen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.barriers-card-effectieve-leerstrategien-volwassenen {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.barriers-card-effectieve-leerstrategien-volwassenen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.barriers-card-icon-effectieve-leerstrategien-volwassenen {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.5rem;
}

.barriers-card-title-effectieve-leerstrategien-volwassenen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #111827;
  font-weight: 700;
  line-height: 1.2;
}

.barriers-card-text-effectieve-leerstrategien-volwassenen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

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

.science-section-effectieve-leerstrategien-volwassenen {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.science-wrapper-effectieve-leerstrategien-volwassenen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.science-image-effectieve-leerstrategien-volwassenen {
  flex: 1 1 300px;
  max-width: 50%;
}

.science-image-effectieve-leerstrategien-volwassenen img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.science-text-effectieve-leerstrategien-volwassenen {
  flex: 1 1 300px;
  max-width: 50%;
}

.science-title-effectieve-leerstrategien-volwassenen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.science-description-effectieve-leerstrategien-volwassenen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.science-quote-effectieve-leerstrategien-volwassenen {
  padding: 2rem 2.5rem;
  border-left: 4px solid #059669;
  background: #f9fafb;
  margin: 2rem 0;
  border-radius: 8px;
}

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

.quote-author-effectieve-leerstrategien-volwassenen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  font-style: normal;
  display: block;
}

@media (max-width: 768px) {
  .science-image-effectieve-leerstrategien-volwassenen,
  .science-text-effectieve-leerstrategien-volwassenen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .science-wrapper-effectieve-leerstrategien-volwassenen {
    flex-direction: column;
  }
}

.action-section-effectieve-leerstrategien-volwassenen {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.action-content-effectieve-leerstrategien-volwassenen {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.action-title-effectieve-leerstrategien-volwassenen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.action-description-effectieve-leerstrategien-volwassenen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.action-steps-effectieve-leerstrategien-volwassenen {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.action-step-effectieve-leerstrategien-volwassenen {
  flex: 1 1 auto;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.action-step-number-effectieve-leerstrategien-volwassenen {
  font-size: 2rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
}

.action-step-text-effectieve-leerstrategien-volwassenen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #111827;
  font-weight: 500;
  text-align: center;
}

.action-cta-effectieve-leerstrategien-volwassenen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #059669;
  color: #ffffff;
  border: 2px solid #059669;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.action-cta-effectieve-leerstrategien-volwassenen:hover {
  background: #047857;
  border-color: #047857;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.2);
}

@media (max-width: 768px) {
  .action-steps-effectieve-leerstrategien-volwassenen {
    flex-direction: column;
  }

  .action-step-effectieve-leerstrategien-volwassenen {
    min-width: auto;
    flex: 1 1 100%;
  }
}

.disclaimer-section-effectieve-leerstrategien-volwassenen {
  background: #f3f4f6;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-box-effectieve-leerstrategien-volwassenen {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #059669;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-effectieve-leerstrategien-volwassenen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-effectieve-leerstrategien-volwassenen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.7;
}

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

.related-header-effectieve-leerstrategien-volwassenen {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-effectieve-leerstrategien-volwassenen {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #111827;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

.related-cards-effectieve-leerstrategien-volwassenen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.related-card-effectieve-leerstrategien-volwassenen {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-effectieve-leerstrategien-volwassenen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-card-title-effectieve-leerstrategien-volwassenen {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: #111827;
  font-weight: 700;
  line-height: 1.2;
}

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

.related-card-link-effectieve-leerstrategien-volwassenen {
  display: inline-block;
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-card-link-effectieve-leerstrategien-volwassenen:hover {
  color: #047857;
  text-decoration: underline;
}

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

@media (min-width: 768px) {
  .hero-section-effectieve-leerstrategien-volwassenen,
  .intro-section-effectieve-leerstrategien-volwassenen,
  .methods-section-effectieve-leerstrategien-volwassenen,
  .implementation-section-effectieve-leerstrategien-volwassenen,
  .barriers-section-effectieve-leerstrategien-volwassenen,
  .science-section-effectieve-leerstrategien-volwassenen,
  .action-section-effectieve-leerstrategien-volwassenen {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-effectieve-leerstrategien-volwassenen,
  .intro-section-effectieve-leerstrategien-volwassenen,
  .methods-section-effectieve-leerstrategien-volwassenen,
  .implementation-section-effectieve-leerstrategien-volwassenen,
  .barriers-section-effectieve-leerstrategien-volwassenen,
  .science-section-effectieve-leerstrategien-volwassenen,
  .action-section-effectieve-leerstrategien-volwassenen {
    padding: 6rem 0;
  }
}

.main-doelstelling-planning-persoonlijke-groei {
  width: 100%;
}

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

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

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

.breadcrumb-link-doelstelling-planning-persoonlijke-groei {
  color: #059669;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-doelstelling-planning-persoonlijke-groei:hover {
  color: #047857;
  text-decoration: underline;
}

.breadcrumb-separator-doelstelling-planning-persoonlijke-groei {
  color: #9ca3af;
  margin: 0 0.25rem;
}

.breadcrumb-current-doelstelling-planning-persoonlijke-groei {
  color: #4b5563;
  font-weight: 500;
}

.hero-content-doelstelling-planning-persoonlijke-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-doelstelling-planning-persoonlijke-groei {
  flex: 1 1 300px;
  max-width: 550px;
}

.hero-title-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.15;
  font-family: 'Playfair Display', serif;
}

.hero-subtitle-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-meta-doelstelling-planning-persoonlijke-groei {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-doelstelling-planning-persoonlijke-groei {
  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: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-doelstelling-planning-persoonlijke-groei i {
  font-size: 1rem;
}

.hero-stats-doelstelling-planning-persoonlijke-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
}

.stat-item-doelstelling-planning-persoonlijke-groei {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #059669;
  display: block;
  font-family: 'Playfair Display', serif;
}

.stat-label-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #4b5563;
  opacity: 0.8;
}

.hero-image-doelstelling-planning-persoonlijke-groei {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-featured-image-doelstelling-planning-persoonlijke-groei {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .hero-content-doelstelling-planning-persoonlijke-groei {
    flex-direction: column;
  }
  
  .hero-image-doelstelling-planning-persoonlijke-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-stats-doelstelling-planning-persoonlijke-groei {
    gap: 1.5rem;
  }
}

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

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

.intro-wrapper-doelstelling-planning-persoonlijke-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-doelstelling-planning-persoonlijke-groei {
  flex: 1 1 300px;
  max-width: 550px;
}

.intro-title-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.intro-description-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-doelstelling-planning-persoonlijke-groei {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-visual-doelstelling-planning-persoonlijke-groei {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-wrapper-doelstelling-planning-persoonlijke-groei {
    flex-direction: column;
  }
  
  .intro-image-doelstelling-planning-persoonlijke-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-doelstelling-planning-persoonlijke-groei {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-one-doelstelling-planning-persoonlijke-groei .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-header-doelstelling-planning-persoonlijke-groei {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-doelstelling-planning-persoonlijke-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: 500;
  margin-bottom: 1rem;
}

.content-title-one-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.steps-wrapper-doelstelling-planning-persoonlijke-groei {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-item-doelstelling-planning-persoonlijke-groei {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #059669;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item-doelstelling-planning-persoonlijke-groei:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.step-number-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #059669;
  flex-shrink: 0;
  min-width: 70px;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.step-content-doelstelling-planning-persoonlijke-groei {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.step-title-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  font-family: 'Playfair Display', serif;
}

.step-text-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .step-item-doelstelling-planning-persoonlijke-groei {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-number-doelstelling-planning-persoonlijke-groei {
    min-width: auto;
  }
}

.content-section-two-doelstelling-planning-persoonlijke-groei {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-two-doelstelling-planning-persoonlijke-groei .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-two-wrapper-doelstelling-planning-persoonlijke-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-two-text-doelstelling-planning-persoonlijke-groei {
  flex: 1 1 300px;
  max-width: 550px;
}

.content-title-two-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.content-text-two-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tools-list-doelstelling-planning-persoonlijke-groei {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tool-card-doelstelling-planning-persoonlijke-groei {
  padding: 1.25rem;
  background: #f9fafb;
  border-left: 3px solid #059669;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.tool-card-doelstelling-planning-persoonlijke-groei:hover {
  background: #f3f4f6;
}

.tool-title-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.tool-description-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.content-two-image-doelstelling-planning-persoonlijke-groei {
  flex: 1 1 300px;
  min-width: 280px;
}

.planning-tools-image-doelstelling-planning-persoonlijke-groei {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-two-wrapper-doelstelling-planning-persoonlijke-groei {
    flex-direction: column;
  }
  
  .content-two-image-doelstelling-planning-persoonlijke-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.features-section-doelstelling-planning-persoonlijke-groei {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.features-title-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  font-family: 'Playfair Display', serif;
}

.features-cards-doelstelling-planning-persoonlijke-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 3rem;
}

.features-card-doelstelling-planning-persoonlijke-groei {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-doelstelling-planning-persoonlijke-groei:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.features-card-icon-doelstelling-planning-persoonlijke-groei {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 1.75rem;
}

.features-card-title-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #111827;
  font-family: 'Playfair Display', serif;
}

.features-card-text-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
}

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

.quote-section-doelstelling-planning-persoonlijke-groei {
  background: #111827;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.featured-quote-doelstelling-planning-persoonlijke-groei {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3.5rem);
  border-left: 5px solid #059669;
  background: rgba(5, 150, 105, 0.1);
  margin: 0;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
}

.quote-text-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-family: 'Playfair Display', serif;
}

.quote-author-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

.conclusion-section-doelstelling-planning-persoonlijke-groei {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-wrapper-doelstelling-planning-persoonlijke-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.conclusion-text-doelstelling-planning-persoonlijke-groei {
  flex: 1 1 300px;
  max-width: 550px;
}

.conclusion-title-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.conclusion-description-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-section-doelstelling-planning-persoonlijke-groei {
  margin-top: 2.5rem;
  padding: 2rem;
  background: #f3f4f6;
  border-radius: 12px;
  border-left: 4px solid #059669;
}

.cta-heading-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.cta-text-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-primary-doelstelling-planning-persoonlijke-groei {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  background: #059669;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-primary-doelstelling-planning-persoonlijke-groei:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.conclusion-image-doelstelling-planning-persoonlijke-groei {
  flex: 1 1 300px;
  min-width: 280px;
}

.conclusion-visual-doelstelling-planning-persoonlijke-groei {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .conclusion-wrapper-doelstelling-planning-persoonlijke-groei {
    flex-direction: column;
  }
  
  .conclusion-image-doelstelling-planning-persoonlijke-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.related-section-doelstelling-planning-persoonlijke-groei {
  background: #f3f4f6;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-header-doelstelling-planning-persoonlijke-groei {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.related-subtitle-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #4b5563;
}

.related-cards-doelstelling-planning-persoonlijke-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-doelstelling-planning-persoonlijke-groei {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-doelstelling-planning-persoonlijke-groei:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.related-card-image-doelstelling-planning-persoonlijke-groei {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-doelstelling-planning-persoonlijke-groei img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-doelstelling-planning-persoonlijke-groei:hover .related-card-image-doelstelling-planning-persoonlijke-groei img {
  transform: scale(1.05);
}

.related-card-content-doelstelling-planning-persoonlijke-groei {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #111827;
  font-family: 'Playfair Display', serif;
}

.related-card-text-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.6;
}

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

.disclaimer-section-doelstelling-planning-persoonlijke-groei {
  background: #f9fafb;
  padding: clamp(3rem, 6vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
  overflow: hidden;
}

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

.disclaimer-content-doelstelling-planning-persoonlijke-groei {
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #059669;
  border-radius: 8px;
}

.disclaimer-title-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.disclaimer-text-doelstelling-planning-persoonlijke-groei {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-doelstelling-planning-persoonlijke-groei:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-stats-doelstelling-planning-persoonlijke-groei {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .step-item-doelstelling-planning-persoonlijke-groei {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .section-header-doelstelling-planning-persoonlijke-groei {
    text-align: left;
  }
  
  .features-card-doelstelling-planning-persoonlijke-groei {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .hero-content-doelstelling-planning-persoonlijke-groei {
    gap: 4rem;
  }
  
  .intro-wrapper-doelstelling-planning-persoonlijke-groei {
    gap: 4rem;
  }
  
  .content-two-wrapper-doelstelling-planning-persoonlijke-groei {
    gap: 4rem;
  }
  
  .conclusion-wrapper-doelstelling-planning-persoonlijke-groei {
    gap: 4rem;
  }
}

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

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

.hero-section-mindfulness-emotionele-intelligentie {
  width: 100%;
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.breadcrumbs-mindfulness-emotionele-intelligentie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-mindfulness-emotionele-intelligentie {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-mindfulness-emotionele-intelligentie:hover {
  color: var(--color-primary-hover);
}

.breadcrumb-separator-mindfulness-emotionele-intelligentie {
  color: var(--color-text-muted);
}

.breadcrumb-current-mindfulness-emotionele-intelligentie {
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

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

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

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

.hero-meta-mindfulness-emotionele-intelligentie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}

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

.meta-badge-mindfulness-emotionele-intelligentie i {
  font-size: 0.875rem;
}

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

.hero-image-mindfulness-emotionele-intelligentie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-stats-mindfulness-emotionele-intelligentie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--color-bg-secondary);
}

.stat-item-mindfulness-emotionele-intelligentie {
  flex: 0 1 auto;
}

.stat-number-mindfulness-emotionele-intelligentie {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-mindfulness-emotionele-intelligentie {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

  .hero-text-block-mindfulness-emotionele-intelligentie,
  .hero-image-block-mindfulness-emotionele-intelligentie {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

.intro-section-mindfulness-emotionele-intelligentie {
  width: 100%;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

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

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

.intro-title-mindfulness-emotionele-intelligentie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

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

.intro-image-item-mindfulness-emotionele-intelligentie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .intro-content-mindfulness-emotionele-intelligentie {
    flex-direction: column;
  }

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

.section-header-mindfulness-emotionele-intelligentie {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-tag-mindfulness-emotionele-intelligentie {
  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: 500;
  margin-bottom: 1rem;
}

.section-title-mindfulness-emotionele-intelligentie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle-mindfulness-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.foundations-section-mindfulness-emotionele-intelligentie {
  width: 100%;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

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

.foundations-text-mindfulness-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-subheading-mindfulness-emotionele-intelligentie {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.foundations-paragraph-mindfulness-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.foundations-image-mindfulness-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-image-item-mindfulness-emotionele-intelligentie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .foundations-wrapper-mindfulness-emotionele-intelligentie {
    flex-direction: column;
  }

  .foundations-text-mindfulness-emotionele-intelligentie,
  .foundations-image-mindfulness-emotionele-intelligentie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-mindfulness-emotionele-intelligentie {
  width: 100%;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.process-steps-mindfulness-emotionele-intelligentie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-mindfulness-emotionele-intelligentie {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
}

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

.process-step-content-mindfulness-emotionele-intelligentie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-mindfulness-emotionele-intelligentie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.process-step-text-mindfulness-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step-mindfulness-emotionele-intelligentie {
    gap: 1rem;
    padding: 1rem;
  }

  .process-step-number-mindfulness-emotionele-intelligentie {
    min-width: 50px;
  }
}

.practices-section-mindfulness-emotionele-intelligentie {
  width: 100%;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

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

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

.practices-image-item-mindfulness-emotionele-intelligentie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

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

.practices-subheading-mindfulness-emotionele-intelligentie {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.practice-item-mindfulness-emotionele-intelligentie {
  margin-bottom: 1.5rem;
}

.practice-item-title-mindfulness-emotionele-intelligentie {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.practice-item-text-mindfulness-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .practices-wrapper-mindfulness-emotionele-intelligentie {
    flex-direction: column;
  }

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

.benefits-section-mindfulness-emotionele-intelligentie {
  width: 100%;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.benefits-wrapper-mindfulness-emotionele-intelligentie {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.benefits-text-mindfulness-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.featured-quote-mindfulness-emotionele-intelligentie {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-card);
  margin: 2rem 0;
  border-radius: var(--radius-lg);
}

.quote-text-mindfulness-emotionele-intelligentie {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-mindfulness-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
}

.benefits-paragraph-mindfulness-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.benefits-list-mindfulness-emotionele-intelligentie {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list-item-mindfulness-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
  line-height: 1.6;
}

.benefits-list-item-mindfulness-emotionele-intelligentie::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.benefits-image-mindfulness-emotionele-intelligentie {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-item-mindfulness-emotionele-intelligentie {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .benefits-wrapper-mindfulness-emotionele-intelligentie {
    flex-direction: column;
  }

  .benefits-text-mindfulness-emotionele-intelligentie,
  .benefits-image-mindfulness-emotionele-intelligentie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-mindfulness-emotionele-intelligentie {
  width: 100%;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.conclusion-content-mindfulness-emotionele-intelligentie {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-mindfulness-emotionele-intelligentie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.conclusion-text-mindfulness-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-mindfulness-emotionele-intelligentie {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.cta-heading-mindfulness-emotionele-intelligentie {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.cta-text-mindfulness-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.btn-primary-mindfulness-emotionele-intelligentie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: var(--color-primary);
  color: #ffffff;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-primary);
}

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

.disclaimer-section-mindfulness-emotionele-intelligentie {
  width: 100%;
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.disclaimer-content-mindfulness-emotionele-intelligentie {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-title-mindfulness-emotionele-intelligentie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.disclaimer-text-mindfulness-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.related-section-mindfulness-emotionele-intelligentie {
  width: 100%;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.related-title-mindfulness-emotionele-intelligentie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

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

.related-card-mindfulness-emotionele-intelligentie {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-secondary);
  transition: all 0.3s ease;
}

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

.related-card-title-mindfulness-emotionele-intelligentie {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.related-card-description-mindfulness-emotionele-intelligentie {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-card-link-mindfulness-emotionele-intelligentie {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  margin-top: auto;
}

.related-card-link-mindfulness-emotionele-intelligentie:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

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

.main-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

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

.hero-text-wrapper-vaardigheden-ontwikkelen-trainen {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-vaardigheden-ontwikkelen-trainen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-vaardigheden-ontwikkelen-trainen {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-vaardigheden-ontwikkelen-trainen:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumb-separator-vaardigheden-ontwikkelen-trainen {
  color: #9ca3af;
}

.breadcrumb-current-vaardigheden-ontwikkelen-trainen {
  color: #6b7280;
}

.hero-title-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.15;
  font-family: var(--font-heading);
}

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

.hero-stats-vaardigheden-ontwikkelen-trainen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin: 2rem 0;
}

.stat-item-vaardigheden-ontwikkelen-trainen {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-label-vaardigheden-ontwikkelen-trainen {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-meta-vaardigheden-ontwikkelen-trainen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.meta-badge-vaardigheden-ontwikkelen-trainen i {
  font-size: 1rem;
}

.hero-image-wrapper-vaardigheden-ontwikkelen-trainen {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

  .hero-text-wrapper-vaardigheden-ontwikkelen-trainen,
  .hero-image-wrapper-vaardigheden-ontwikkelen-trainen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-vaardigheden-ontwikkelen-trainen {
    gap: 1.5rem;
  }
}

.introduction-section-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.introduction-text-vaardigheden-ontwikkelen-trainen {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: var(--font-heading);
}

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

.introduction-highlight-vaardigheden-ontwikkelen-trainen {
  background: #f0fdf4;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.highlight-text-vaardigheden-ontwikkelen-trainen {
  font-size: 0.95rem;
  color: #166534;
  line-height: 1.6;
  margin: 0;
}

.introduction-image-vaardigheden-ontwikkelen-trainen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .introduction-content-vaardigheden-ontwikkelen-trainen {
    flex-direction: column;
  }

  .introduction-text-vaardigheden-ontwikkelen-trainen,
  .introduction-image-vaardigheden-ontwikkelen-trainen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.training-methodology-section-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.section-tag-vaardigheden-ontwikkelen-trainen {
  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;
}

.section-title-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.section-subtitle-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.training-steps-vaardigheden-ontwikkelen-trainen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.training-step-vaardigheden-ontwikkelen-trainen {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-number-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  font-family: var(--font-heading);
}

.step-content-vaardigheden-ontwikkelen-trainen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.step-description-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .training-step-vaardigheden-ontwikkelen-trainen {
    flex-direction: row;
  }
}

.core-principles-section-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-wrapper-vaardigheden-ontwikkelen-trainen {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.principles-text-vaardigheden-ontwikkelen-trainen {
  flex: 1 1 50%;
  max-width: 50%;
}

.principles-title-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.principle-item-vaardigheden-ontwikkelen-trainen {
  margin-bottom: 1.5rem;
}

.principle-name-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.principle-description-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.principles-image-vaardigheden-ontwikkelen-trainen {
  flex: 1 1 50%;
  max-width: 50%;
}

.principles-visual-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .principles-wrapper-vaardigheden-ontwikkelen-trainen {
    flex-direction: column;
  }

  .principles-text-vaardigheden-ontwikkelen-trainen,
  .principles-image-vaardigheden-ontwikkelen-trainen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.skill-development-section-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.skills-grid-vaardigheden-ontwikkelen-trainen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.skill-card-vaardigheden-ontwikkelen-trainen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.skill-icon-vaardigheden-ontwikkelen-trainen {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdf4;
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

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

.skill-card-text-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

.training-strategies-section-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-wrapper-vaardigheden-ontwikkelen-trainen {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.strategies-image-vaardigheden-ontwikkelen-trainen {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-visual-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.strategies-text-vaardigheden-ontwikkelen-trainen {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2rem;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.strategy-block-vaardigheden-ontwikkelen-trainen {
  margin-bottom: 1.5rem;
}

.strategy-heading-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.strategy-text-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .strategies-wrapper-vaardigheden-ontwikkelen-trainen {
    flex-direction: column;
  }

  .strategies-image-vaardigheden-ontwikkelen-trainen,
  .strategies-text-vaardigheden-ontwikkelen-trainen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-vaardigheden-ontwikkelen-trainen {
  border-left: 4px solid var(--color-primary);
  padding: clamp(2rem, 4vw, 3rem);
  margin: 0;
  font-style: italic;
}

.quote-text-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.quote-author-vaardigheden-ontwikkelen-trainen {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: normal;
  display: block;
}

.implementation-section-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-content-vaardigheden-ontwikkelen-trainen {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 4rem);
}

.implementation-text-vaardigheden-ontwikkelen-trainen {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: var(--font-heading);
}

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

.implementation-checklist-vaardigheden-ontwikkelen-trainen {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checklist-item-vaardigheden-ontwikkelen-trainen {
  padding: 1rem;
  background: #ffffff;
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.checklist-title-vaardigheden-ontwikkelen-trainen {
  display: block;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.checklist-text-vaardigheden-ontwikkelen-trainen {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.implementation-image-vaardigheden-ontwikkelen-trainen {
  flex: 1 1 50%;
  max-width: 50%;
}

.impl-visual-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .implementation-content-vaardigheden-ontwikkelen-trainen {
    flex-direction: column;
  }

  .implementation-text-vaardigheden-ontwikkelen-trainen,
  .implementation-image-vaardigheden-ontwikkelen-trainen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-vaardigheden-ontwikkelen-trainen {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.conclusion-title-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: var(--font-heading);
}

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

.cta-section-vaardigheden-ontwikkelen-trainen {
  background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid #bbf7d0;
  margin-top: 2rem;
  text-align: center;
}

.cta-title-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.cta-description-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  margin-bottom: 1.5rem;
}

.cta-button-vaardigheden-ontwikkelen-trainen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-button-vaardigheden-ontwikkelen-trainen:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.disclaimer-section-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  background: #f8fafc;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-vaardigheden-ontwikkelen-trainen {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-md);
}

.disclaimer-title-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #d97706;
  margin-bottom: 1rem;
}

.disclaimer-text-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.related-posts-section-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.related-subtitle-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
}

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

.related-card-vaardigheden-ontwikkelen-trainen {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-vaardigheden-ontwikkelen-trainen:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.related-card-image-vaardigheden-ontwikkelen-trainen {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.related-card-title-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  padding: 0 1rem;
  margin-top: 0.5rem;
  line-height: 1.3;
}

.related-card-text-vaardigheden-ontwikkelen-trainen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  padding: 0 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-vaardigheden-ontwikkelen-trainen {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 0 1rem 1rem 1rem;
  transition: color 0.2s ease;
}

.related-card-link-vaardigheden-ontwikkelen-trainen:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

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

@media (min-width: 768px) {
  .hero-section-vaardigheden-ontwikkelen-trainen,
  .introduction-section-vaardigheden-ontwikkelen-trainen,
  .training-methodology-section-vaardigheden-ontwikkelen-trainen,
  .core-principles-section-vaardigheden-ontwikkelen-trainen,
  .skill-development-section-vaardigheden-ontwikkelen-trainen,
  .training-strategies-section-vaardigheden-ontwikkelen-trainen,
  .quote-section-vaardigheden-ontwikkelen-trainen,
  .implementation-section-vaardigheden-ontwikkelen-trainen,
  .conclusion-section-vaardigheden-ontwikkelen-trainen,
  .disclaimer-section-vaardigheden-ontwikkelen-trainen,
  .related-posts-section-vaardigheden-ontwikkelen-trainen {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-vaardigheden-ontwikkelen-trainen,
  .introduction-section-vaardigheden-ontwikkelen-trainen,
  .training-methodology-section-vaardigheden-ontwikkelen-trainen,
  .core-principles-section-vaardigheden-ontwikkelen-trainen,
  .skill-development-section-vaardigheden-ontwikkelen-trainen,
  .training-strategies-section-vaardigheden-ontwikkelen-trainen,
  .quote-section-vaardigheden-ontwikkelen-trainen,
  .implementation-section-vaardigheden-ontwikkelen-trainen,
  .conclusion-section-vaardigheden-ontwikkelen-trainen,
  .disclaimer-section-vaardigheden-ontwikkelen-trainen,
  .related-posts-section-vaardigheden-ontwikkelen-trainen {
    padding: 6rem 0;
  }
}

.main-reflectie-zelfbewustzijn-groei {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.breadcrumb-link-reflectie-zelfbewustzijn-groei {
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

.breadcrumb-link-reflectie-zelfbewustzijn-groei:hover {
  color: var(--color-primary);
}

.breadcrumb-separator-reflectie-zelfbewustzijn-groei {
  color: var(--color-text-muted);
}

.breadcrumb-current-reflectie-zelfbewustzijn-groei {
  color: var(--color-primary);
  font-weight: 600;
}

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

.hero-text-wrapper-reflectie-zelfbewustzijn-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
}

.hero-description-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-stats-reflectie-zelfbewustzijn-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.stat-item-reflectie-zelfbewustzijn-groei {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-label-reflectie-zelfbewustzijn-groei {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
}

.hero-image-reflectie-zelfbewustzijn-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-featured-image-reflectie-zelfbewustzijn-groei {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}

.article-meta-reflectie-zelfbewustzijn-groei {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-reflectie-zelfbewustzijn-groei {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-accent-light);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 500;
}

.meta-badge-reflectie-zelfbewustzijn-groei i {
  color: var(--color-primary);
}

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

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

.intro-text-reflectie-zelfbewustzijn-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.intro-body-reflectie-zelfbewustzijn-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.intro-image-reflectie-zelfbewustzijn-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-element-reflectie-zelfbewustzijn-groei {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

.content-one-section-reflectie-zelfbewustzijn-groei {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

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

.content-one-text-reflectie-zelfbewustzijn-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.content-one-body-reflectie-zelfbewustzijn-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.content-one-image-reflectie-zelfbewustzijn-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-element-reflectie-zelfbewustzijn-groei {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

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

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

.content-two-image-reflectie-zelfbewustzijn-groei {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-two-image-element-reflectie-zelfbewustzijn-groei {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

.content-two-text-reflectie-zelfbewustzijn-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.content-two-body-reflectie-zelfbewustzijn-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

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

.techniques-header-reflectie-zelfbewustzijn-groei {
  text-align: center;
  margin-bottom: 3rem;
}

.techniques-tag-reflectie-zelfbewustzijn-groei {
  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;
  text-transform: uppercase;
}

.techniques-title-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.techniques-subtitle-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.techniques-list-reflectie-zelfbewustzijn-groei {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-item-reflectie-zelfbewustzijn-groei {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
}

.technique-number-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
  font-family: var(--font-heading);
}

.technique-content-reflectie-zelfbewustzijn-groei {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.technique-title-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

.technique-text-reflectie-zelfbewustzijn-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.featured-quote-reflectie-zelfbewustzijn-groei {
  padding: clamp(2rem, 5vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  margin: 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.quote-author-reflectie-zelfbewustzijn-groei {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
}

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

.benefits-header-reflectie-zelfbewustzijn-groei {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-title-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.benefits-cards-reflectie-zelfbewustzijn-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.benefits-card-reflectie-zelfbewustzijn-groei {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.benefits-card-text-reflectie-zelfbewustzijn-groei {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

.practice-image-reflectie-zelfbewustzijn-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-image-element-reflectie-zelfbewustzijn-groei {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

.practice-text-reflectie-zelfbewustzijn-groei {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.practice-body-reflectie-zelfbewustzijn-groei {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

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

.conclusion-content-reflectie-zelfbewustzijn-groei {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-cta-box-reflectie-zelfbewustzijn-groei {
  background: var(--color-primary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
}

.cta-title-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-reflectie-zelfbewustzijn-groei {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.btn-cta-reflectie-zelfbewustzijn-groei {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.9375rem, 1vw, 1rem);
  font-weight: 600;
  background: #ffffff;
  color: var(--color-primary);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-primary);
}

.btn-cta-reflectie-zelfbewustzijn-groei:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.related-header-reflectie-zelfbewustzijn-groei {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.related-subtitle-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
}

.related-cards-reflectie-zelfbewustzijn-groei {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.related-card-reflectie-zelfbewustzijn-groei {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.related-card-image-reflectie-zelfbewustzijn-groei img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-reflectie-zelfbewustzijn-groei {
  padding: clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

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

.related-card-text-reflectie-zelfbewustzijn-groei {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.related-card-link-reflectie-zelfbewustzijn-groei {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.related-card-link-reflectie-zelfbewustzijn-groei:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.disclaimer-section-reflectie-zelfbewustzijn-groei {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-bg-tertiary);
  overflow: hidden;
}

.disclaimer-content-reflectie-zelfbewustzijn-groei {
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-title-reflectie-zelfbewustzijn-groei {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-reflectie-zelfbewustzijn-groei {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero-content-reflectie-zelfbewustzijn-groei,
  .intro-wrapper-reflectie-zelfbewustzijn-groei,
  .content-one-wrapper-reflectie-zelfbewustzijn-groei,
  .content-two-wrapper-reflectie-zelfbewustzijn-groei,
  .practice-wrapper-reflectie-zelfbewustzijn-groei {
    flex-direction: column;
  }

  .hero-text-wrapper-reflectie-zelfbewustzijn-groei,
  .hero-image-reflectie-zelfbewustzijn-groei,
  .intro-text-reflectie-zelfbewustzijn-groei,
  .intro-image-reflectie-zelfbewustzijn-groei,
  .content-one-text-reflectie-zelfbewustzijn-groei,
  .content-one-image-reflectie-zelfbewustzijn-groei,
  .content-two-image-reflectie-zelfbewustzijn-groei,
  .content-two-text-reflectie-zelfbewustzijn-groei,
  .practice-image-reflectie-zelfbewustzijn-groei,
  .practice-text-reflectie-zelfbewustzijn-groei {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-two-image-reflectie-zelfbewustzijn-groei {
    order: 0;
  }

  .hero-stats-reflectie-zelfbewustzijn-groei {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .technique-item-reflectie-zelfbewustzijn-groei {
    flex-direction: column;
    gap: 1rem;
  }

  .technique-number-reflectie-zelfbewustzijn-groei {
    min-width: auto;
  }

  .related-card-reflectie-zelfbewustzijn-groei {
    flex: 1 1 100%;
    max-width: none;
  }

  .benefits-card-reflectie-zelfbewustzijn-groei {
    flex: 1 1 100%;
    max-width: none;
  }
}

.groeipad-growth-about {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

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

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

.origin-text-block-about {
  flex: 1 1 350px;
  min-width: 300px;
}

.origin-visual-about {
  flex: 1 1 350px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.origin-title-about {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.origin-highlight-about {
  background: var(--color-accent-light);
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.origin-highlight-text-about {
  font-size: 1rem;
  color: var(--color-text-primary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .origin-section-about {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  .origin-content-about {
    flex-direction: column;
  }

  .origin-text-block-about {
    flex: 1 1 100%;
  }

  .origin-visual-about {
    flex: 1 1 100%;
  }
}

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

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

.journey-header-about {
  text-align: center;
  margin-bottom: 3rem;
}

.journey-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: 500;
  margin-bottom: 1rem;
}

.journey-heading-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.journey-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.journey-timeline-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.timeline-item-about {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.timeline-year-about {
  flex-shrink: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: 80px;
}

.timeline-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.timeline-milestone-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.timeline-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .journey-section-about {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  .timeline-item-about {
    gap: 1rem;
  }

  .timeline-year-about {
    min-width: 60px;
    font-size: 1.25rem;
  }
}

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

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

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

.philosophy-image-about {
  flex: 1 1 350px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  order: 2;
}

.philosophy-text-about {
  flex: 1 1 350px;
  min-width: 300px;
  order: 1;
}

.philosophy-heading-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.philosophy-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.values-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.value-card-about {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-bg-tertiary);
}

.value-icon-about {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.value-name-about {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.value-desc-about {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .philosophy-section-about {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  .philosophy-content-about {
    flex-direction: column;
  }

  .philosophy-image-about {
    order: 1;
  }

  .philosophy-text-about {
    order: 2;
  }

  .value-card-about {
    flex: 1 1 100%;
  }
}

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

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

.approach-header-about {
  text-align: center;
  margin-bottom: 3rem;
}

.approach-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: 500;
  margin-bottom: 1rem;
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.approach-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.methodology-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
}

.methodology-step-about {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

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

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

.step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.step-description-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .approach-section-about {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  .methodology-step-about {
    gap: 1rem;
  }

  .step-number-about {
    min-width: 50px;
    font-size: 1.75rem;
  }
}

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

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

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

.commitment-text-about {
  flex: 1 1 350px;
  min-width: 300px;
}

.commitment-image-about {
  flex: 1 1 350px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.commitment-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.commitment-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

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

.benefit-icon-about {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 2px;
}

.benefit-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .commitment-section-about {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
  }

  .commitment-content-about {
    flex-direction: column;
  }

  .commitment-text-about {
    flex: 1 1 100%;
  }

  .commitment-image-about {
    flex: 1 1 100%;
  }
}

.disclaimer-section-about {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-bg-tertiary);
  position: relative;
  overflow: hidden;
}

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

.disclaimer-content-about {
  max-width: 800px;
}

.disclaimer-header-about {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

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

.disclaimer-title-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .disclaimer-section-about {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .disclaimer-header-about {
    gap: 0.75rem;
  }

  .disclaimer-icon-about {
    font-size: 1.25rem;
  }
}

.legal-hub {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

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

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

.legal-hub-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-hub-hero h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.legal-hub-section-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-hub-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: clamp(1rem, 3vw, 2rem);
}

.legal-hub-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

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

.legal-hub-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-hub-contact h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-hub-contact-label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.legal-hub-contact-value {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

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

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

.thank-you-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4rem, 12vw, 6rem);
  height: clamp(4rem, 12vw, 6rem);
  border-radius: 50%;
  background: var(--color-accent-light);
}

.thank-icon i {
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--color-primary);
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.3px;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

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

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .thank-section h1 {
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: 2.5rem;
  }

  .btn-primary:hover {
    box-shadow: var(--shadow-xl);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.error-decoration-1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  top: -100px;
  right: -100px;
}

.error-decoration-2 {
  width: 300px;
  height: 300px;
  background: var(--color-secondary);
  bottom: -80px;
  left: -80px;
}

.error-decoration-3 {
  width: 250px;
  height: 250px;
  background: var(--color-primary);
  top: 50%;
  right: 5%;
  opacity: 0.02;
}

.error-content {
  position: relative;
  z-index: 10;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.error-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  animation: float 3s ease-in-out infinite;
}

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

.error-icon-wrapper {
  width: clamp(4rem, 8vw, 6rem);
  height: clamp(4rem, 8vw, 6rem);
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  animation: spin 8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.error-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.2;
}

.error-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
  max-width: 600px;
}

.error-description {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
  letter-spacing: 0.3px;
}

.error-suggestions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 600px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.suggestion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-tertiary);
  transition: all 0.3s ease;
}

.suggestion-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.1);
  transform: translateY(-2px);
}

.suggestion-item i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
}

.suggestion-item span {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.15);
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    min-height: 100vh;
  }

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

  .error-code-wrapper {
    margin-bottom: 2rem;
  }
}

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

  .error-decoration-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
  }

  .error-decoration-2 {
    width: 400px;
    height: 400px;
    bottom: -120px;
    left: -120px;
  }

  .error-code-wrapper {
    gap: 2.5rem;
  }

  .suggestion-item {
    padding: 1.5rem;
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 8rem 0;
  }

  .error-code {
    font-size: 8rem;
  }

  .error-title {
    font-size: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }

  .error-icon-wrapper {
    animation: none;
  }

  .suggestion-item:hover {
    transform: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

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

.suggestion-item:focus-within {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}