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

:root {
  
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #faf5ff;
  --color-bg-tertiary: #f3e8ff;
  --color-bg-card: #ffffff;
  
  
  --color-text-primary: #1e1b4b;
  --color-text-secondary: #6b7280;
  --color-text-muted: #9ca3af;
  
  
  --color-primary: #7c3aed;
  --color-primary-hover: #6d28d9;
  --color-secondary: #a78bfa;
  --color-tertiary: #c4b5fd;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(124, 58, 237, 0.08);
  --shadow-md: 0 4px 12px rgba(124, 58, 237, 0.12);
  --shadow-lg: 0 10px 25px rgba(124, 58, 237, 0.15);
  --shadow-xl: 0 20px 40px rgba(124, 58, 237, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

h5 {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
}

h6 {
  font-size: 1rem;
  color: var(--color-text-secondary);
}

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

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

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

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

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

section {
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

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

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  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 {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden {
  display: none !important;
}

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

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

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

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

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

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

.accent-line {
  width: 3rem;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: 0 auto;
}

.accent-line-left {
  width: 3rem;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
}

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

.badge {
  display: inline-block;
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
}

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

.icon-sm {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.875rem;
}

.icon-md {
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
}

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

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

input, textarea, select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease;
  color: var(--color-text-primary);
  background: var(--color-bg-card);
}

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

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

@media (max-width: 767px) {
  section {
    padding: clamp(2rem, 5vw, 3.5rem) 0;
  }
  
  h1 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
  }
  
  h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

@media print {
  body {
    background: white;
  }
  
  .no-print {
    display: none !important;
  }
}
.header-consciousness-gateway {
    position: static;
    background: var(--color-bg-primary);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: var(--shadow-sm);
  }

  .header-consciousness-gateway-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
    height: clamp(70px, 12vw, 90px);
  }

  .header-consciousness-gateway-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    flex-shrink: 0;
    transition: opacity 300ms ease-in-out;
  }

  .header-consciousness-gateway-brand:hover {
    opacity: 0.85;
  }

  .header-consciousness-gateway-brand:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: 6px;
  }

  .header-consciousness-gateway-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .header-consciousness-gateway-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.3px;
  }

  .header-consciousness-gateway-desktop-nav {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
  }

  .header-consciousness-gateway-nav-link {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 300ms ease-in-out;
    position: relative;
    padding: 0.5rem 0;
  }

  .header-consciousness-gateway-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 300ms ease-in-out;
  }

  .header-consciousness-gateway-nav-link:hover {
    color: var(--color-primary);
  }

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

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

  .header-consciousness-gateway-cta-button {
    display: none;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: #ffffff;
    font-size: clamp(0.75rem, 1vw, 0.95rem);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    flex-shrink: 0;
    text-align: center;
  }

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

  .header-consciousness-gateway-cta-button:active {
    transform: translateY(0);
  }

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

  .header-consciousness-gateway-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: opacity 300ms ease-in-out;
  }

  .header-consciousness-gateway-mobile-toggle:hover {
    opacity: 0.7;
  }

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

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

  .header-consciousness-gateway-mobile-toggle.active .header-consciousness-gateway-hamburger:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .header-consciousness-gateway-mobile-toggle.active .header-consciousness-gateway-hamburger:nth-child(2) {
    opacity: 0;
  }

  .header-consciousness-gateway-mobile-toggle.active .header-consciousness-gateway-hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

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

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

  .header-consciousness-gateway-mobile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem clamp(1rem, 5vw, 2rem);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  }

  .header-consciousness-gateway-mobile-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
  }

  .header-consciousness-gateway-mobile-close {
    background: transparent;
    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-in-out;
  }

  .header-consciousness-gateway-mobile-close:hover {
    color: var(--color-primary);
  }

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

  .header-consciousness-gateway-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .header-consciousness-gateway-mobile-link {
    padding: 1.25rem clamp(1rem, 5vw, 2rem);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
    transition: all 300ms ease-in-out;
  }

  .header-consciousness-gateway-mobile-link:hover {
    background: rgba(124, 58, 237, 0.08);
    padding-left: clamp(1.25rem, 5vw, 2.25rem);
    color: var(--color-primary);
  }

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

  .header-consciousness-gateway-mobile-cta {
    display: block;
    margin: 2rem clamp(1rem, 5vw, 2rem) 3rem;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: all 300ms ease-in-out;
  }

  .header-consciousness-gateway-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .header-consciousness-gateway-mobile-cta:active {
    transform: translateY(0);
  }

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

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

    .header-consciousness-gateway-cta-button {
      display: inline-block;
    }

    .header-consciousness-gateway-mobile-toggle {
      display: none;
    }

    .header-consciousness-gateway-mobile-menu {
      display: none !important;
    }

    .header-consciousness-gateway-container {
      height: clamp(75px, 10vw, 95px);
    }
  }

  @media (max-width: 767px) {
    .header-consciousness-gateway-desktop-nav {
      display: none;
    }

    .header-consciousness-gateway-cta-button {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .header-consciousness-gateway-brand,
    .header-consciousness-gateway-nav-link,
    .header-consciousness-gateway-nav-link::after,
    .header-consciousness-gateway-cta-button,
    .header-consciousness-gateway-mobile-toggle,
    .header-consciousness-gateway-hamburger,
    .header-consciousness-gateway-mobile-menu,
    .header-consciousness-gateway-mobile-link,
    .header-consciousness-gateway-mobile-cta {
      transition-duration: 0.01ms !important;
    }
  }

    .growth-hub {
  width: 100%;
}

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

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

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

p {
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: #7c3aed;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  background: #6d28d9;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: #7c3aed;
  border-color: #7c3aed;
}

.btn-outline:hover {
  background: #faf5ff;
  border-color: #6d28d9;
  color: #6d28d9;
}

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

.hero-deco-gradient {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-orb-1 {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(168, 85, 247, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-orb-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(196, 181, 253, 0.05);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-deco-shape-2 {
  position: absolute;
  bottom: 15%;
  right: 20%;
  width: 280px;
  height: 200px;
  background: rgba(124, 58, 237, 0.03);
  border-radius: 45% 55% 30% 70% / 30% 45% 55% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-accent-line {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-float-panel {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 180px;
  height: 140px;
  background: rgba(250, 245, 255, 0.4);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 12px;
  transform: rotate(8deg);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-glow-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #1e1b4b;
  margin-bottom: 1rem;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0;
}

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

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

.hero-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

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

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

.about-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #faf5ff;
  position: relative;
}

.about-deco-mesh {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-deco-accent-1 {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(168, 85, 247, 0.04);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.about-deco-accent-2 {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(196, 181, 253, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.about-deco-line {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

.about-deco-shape {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(124, 58, 237, 0.03);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.about-deco-glow {
  position: absolute;
  top: 20%;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

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

.about-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.about-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-point-icon {
  flex-shrink: 0;
  color: #7c3aed;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.about-point-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

.about-image-block {
  flex: 1 1 350px;
  min-width: 300px;
}

.about-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
  object-fit: cover;
}

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

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

.values-deco-orb-top {
  position: absolute;
  top: -100px;
  right: 10%;
  width: 350px;
  height: 350px;
  background: rgba(124, 58, 237, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.values-deco-shape-left {
  position: absolute;
  top: 30%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(168, 85, 247, 0.04);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.values-deco-accent-right {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(196, 181, 253, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.values-deco-glow-bottom {
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.values-deco-line-accent {
  position: absolute;
  top: 25%;
  left: 50%;
  width: 180px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.values-header {
  text-align: center;
  margin-bottom: 3rem;
}

.values-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.values-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  margin-bottom: 1rem;
}

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

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

.values-card {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #faf5ff;
  border-radius: 12px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.values-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.12);
}

.values-card-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #7c3aed;
  line-height: 1;
}

.values-card-title {
  font-size: 1.25rem;
  color: #1e1b4b;
  font-weight: 700;
}

.values-card-text {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

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

.process-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #f3e8ff;
  position: relative;
}

.process-deco-gradient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-float-1 {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(168, 85, 247, 0.04);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-float-2 {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 280px;
  height: 280px;
  background: rgba(196, 181, 253, 0.05);
  border-radius: 45% 55% 50% 50% / 50% 50% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.process-deco-accent {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 400px;
  height: 200px;
  background: rgba(139, 92, 246, 0.03);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-glow {
  position: absolute;
  bottom: 0;
  right: 20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.process-deco-shape {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(168, 85, 247, 0.03);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.process-deco-line {
  position: absolute;
  bottom: 40%;
  left: 50%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124, 58, 237, 0.15);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.process-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  margin-bottom: 1rem;
}

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

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

.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 12px;
  align-items: flex-start;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.1);
}

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

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

.process-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e1b4b;
}

.process-step-text {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

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

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

.featured-deco-shape-1 {
  position: absolute;
  top: 15%;
  left: -80px;
  width: 350px;
  height: 350px;
  background: rgba(124, 58, 237, 0.04);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.featured-deco-orb {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(168, 85, 247, 0.05);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-deco-accent-line {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

.featured-deco-glow {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.featured-deco-mesh {
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(196, 181, 253, 0.04) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.featured-header {
  text-align: center;
  margin-bottom: 3rem;
}

.featured-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  margin-bottom: 1rem;
}

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

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

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

.featured-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}

.featured-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0;
  padding: 0;
}

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

.featured-card-title {
  font-size: 1.125rem;
  color: #1e1b4b;
  font-weight: 700;
  line-height: 1.4;
}

.featured-card-text {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  flex: 1;
}

.featured-card-link {
  color: #7c3aed;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.featured-card-link:hover {
  color: #6d28d9;
}

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

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

.testimonial-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #faf5ff;
  position: relative;
}

.testimonial-deco-shape {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(124, 58, 237, 0.04);
  border-radius: 45% 55% 50% 50% / 50% 50% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.testimonial-deco-glow-1 {
  position: absolute;
  top: 0;
  left: -150px;
  width: 400px;
  height: 400px;
  background: rgba(168, 85, 247, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-deco-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: rgba(196, 181, 253, 0.04);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.testimonial-deco-accent {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.testimonial-deco-line {
  position: absolute;
  bottom: 30%;
  right: 20%;
  width: 150px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

.testimonial-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonial-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonial-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
}

.testimonial-quote {
  padding: 2.5rem;
  background: #ffffff;
  border-left: 4px solid #7c3aed;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
}

.testimonial-quote-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e1b4b;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author {
  font-size: 0.95rem;
  color: #1e1b4b;
  font-weight: 600;
}

.testimonial-detail {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  justify-content: center;
}

.testimonial-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 1 auto;
}

.testimonial-benefit-icon {
  color: #7c3aed;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.testimonial-benefit-text {
  font-size: 0.9375rem;
  color: #6b7280;
}

@media (max-width: 768px) {
  .testimonial-benefits {
    flex-direction: column;
    gap: 1rem;
  }
  
  .testimonial-benefit {
    justify-content: flex-start;
  }
}

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

.contact-deco-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-orb-1 {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(168, 85, 247, 0.05);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-orb-2 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 280px;
  height: 280px;
  background: rgba(196, 181, 253, 0.04);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-accent-shape {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: rgba(124, 58, 237, 0.03);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.contact-deco-glow {
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-deco-line-accent {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

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

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  margin-bottom: 1rem;
}

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

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
}

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

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

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

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

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #faf5ff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  color: #1e1b4b;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #9ca3af;
}

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

.contact-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: #7c3aed;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
}

.contact-submit:hover {
  background: #6d28d9;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

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

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

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

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

.contact-faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #faf5ff;
  border-radius: 8px;
  border-left: 3px solid #7c3aed;
}

.contact-faq-question {
  font-size: 0.95rem;
  color: #1e1b4b;
  font-weight: 600;
}

.contact-faq-answer {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-form-block,
  .contact-info-block {
    flex: 1 1 100%;
    min-width: auto;
  }
}

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

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

.cookie-banner-text {
  color: #e2e8f0;
  font-size: 0.875rem;
  margin: 0;
  max-width: 500px;
  line-height: 1.5;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 300ms ease;
  font-family: 'Inter', sans-serif;
}

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

.cookie-btn-accept:hover {
  background: #6d28d9;
}

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

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

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: stretch;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
  }
}

@media (max-width: 768px) {
  section {
    padding: clamp(2rem, 5vw, 3.5rem) 0;
  }
}

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

*:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

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

    .footer {
    background: var(--color-bg-primary);
    padding: clamp(2.5rem, 6vw, 5rem) 0;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    margin-top: 0;
  }

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

  .footer-content {
    display: block;
  }

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

  .footer-copyright-section {
    margin-bottom: 0;
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(124, 58, 237, 0.08);
  }

  .footer-section-title {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    color: #1e1b4b;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
  }

  .footer-about-text {
    font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
    line-height: 1.7;
    color: #6b7280;
    max-width: 400px;
  }

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

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

  .footer-nav-link:hover,
  .footer-legal-link:hover {
    color: #7c3aed;
  }

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

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

  .footer-contact-info {
    display: block;
  }

  .footer-contact-item {
    font-size: clamp(0.875rem, 1vw, 0.95rem);
    color: #6b7280;
    margin-bottom: 0.75rem;
    line-height: 1.6;
  }

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

  .footer-contact-label {
    font-weight: 600;
    color: #1e1b4b;
    display: block;
    margin-bottom: 0.25rem;
  }

  .footer-contact-value {
    color: #6b7280;
    display: block;
  }

  .footer-copyright-text {
    font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
    color: #9ca3af;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.3px;
  }

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

    .footer-about-section {
      flex: 1 1 280px;
      margin-bottom: 0;
    }

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

    .footer-contact-section {
      flex: 1 1 280px;
      margin-bottom: 0;
    }

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

    .footer-copyright-section {
      flex: 1 1 100%;
      margin-bottom: 0;
      margin-top: clamp(1.5rem, 3vw, 2rem);
    }

    .footer-nav-links,
    .footer-legal-links {
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-nav-link,
    .footer-legal-link {
      display: block;
    }
  }

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

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

    .footer-contact-section {
      flex: 1 1 300px;
    }

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

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

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

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

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

.main.category-page-emotional-growth {
  width: 100%;
  overflow: hidden;
}

.hero-section-emotional-growth {
  position: relative;
  overflow: hidden;
  background: #faf5ff;
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

.hero-decorative-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-glow-2 {
  position: absolute;
  bottom: 5%;
  left: -8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-shape-1 {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 200px;
  height: 250px;
  background: rgba(168, 85, 247, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-decorative-line-accent {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-tag-emotional-growth {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle-emotional-growth {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-stats-emotional-growth {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2.5rem;
}

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

.hero-stat-number-emotional-growth {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #7c3aed;
  line-height: 1;
  display: block;
}

.hero-stat-label-emotional-growth {
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-buttons-emotional-growth {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary-emotional-growth {
  background: #7c3aed;
  color: #ffffff;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.btn-primary-emotional-growth:hover {
  background: #6d28d9;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

.btn-outline-emotional-growth {
  background: transparent;
  color: #7c3aed;
  border: 2px solid #7c3aed;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
}

.btn-outline-emotional-growth:hover {
  background: #faf5ff;
  border-color: #6d28d9;
  color: #6d28d9;
}

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

.posts-header-emotional-growth {
  text-align: center;
  margin-bottom: 3rem;
}

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

.posts-subtitle-emotional-growth {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.card-emotional-growth {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: #ffffff;
  border: 1px solid #f3e8ff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
  transition: all 0.3s ease;
}

.card-emotional-growth:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.15);
  border-color: #e9d5ff;
}

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

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

.card-text-emotional-growth {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #6b7280;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-emotional-growth {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meta-badge-emotional-growth {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: #faf5ff;
  color: #7c3aed;
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

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

.card-link-emotional-growth {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7c3aed;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 0.5rem;
}

.card-link-emotional-growth:hover {
  color: #6d28d9;
  transform: translateX(4px);
}

.card-link-emotional-growth::after {
  content: '';
  transition: transform 0.3s ease;
}

.card-link-emotional-growth:hover::after {
  transform: translateX(3px);
}

.quote-section-emotional-growth {
  position: relative;
  overflow: hidden;
  background: #faf5ff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.quote-decorative-accent-1 {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.quote-decorative-accent-2 {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.featured-quote-emotional-growth {
  position: relative;
  z-index: 10;
  max-width: 750px;
  margin: 0 auto;
  padding: 2.5rem;
  background: #ffffff;
  border-left: 5px solid #7c3aed;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.1);
}

.quote-text-emotional-growth {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 500;
  color: #1e1b4b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-author-emotional-growth {
  font-size: 0.9375rem;
  color: #7c3aed;
  font-weight: 600;
  font-style: normal;
}

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

.benefits-decorative-shape-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(168, 85, 247, 0.05);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.benefits-decorative-glow-1 {
  position: absolute;
  bottom: 15%;
  left: -8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.benefits-header-emotional-growth {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.benefits-subtitle-emotional-growth {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-list-emotional-growth {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item-emotional-growth {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.75rem;
  background: #faf5ff;
  border-radius: 10px;
  border-left: 4px solid #7c3aed;
  transition: all 0.3s ease;
}

.benefit-item-emotional-growth:hover {
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.12);
  transform: translateX(4px);
}

.benefit-number-emotional-growth {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #7c3aed;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.benefit-content-emotional-growth {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-title-emotional-growth {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #1e1b4b;
}

.benefit-text-emotional-growth {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #6b7280;
  line-height: 1.6;
}

.cta-section-emotional-growth {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.cta-decorative-glow-1 {
  position: absolute;
  top: -15%;
  right: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-decorative-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.cta-decorative-shape-1 {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(168, 85, 247, 0.08);
  border-radius: 50% 40% 60% 50% / 60% 50% 40% 50%;
  z-index: 1;
  pointer-events: none;
}

.cta-box-emotional-growth {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.cta-title-emotional-growth {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-description-emotional-growth {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-cta-emotional-growth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #7c3aed;
  color: #ffffff;
  padding: clamp(0.875rem, 1.5vw, 1.25rem) clamp(2rem, 4vw, 3rem);
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
  text-decoration: none;
}

.btn-cta-emotional-growth:hover {
  background: #6d28d9;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-section-emotional-growth {
    padding: clamp(2rem, 5vw, 3.5rem) 0;
  }

  .hero-stats-emotional-growth {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .posts-grid-emotional-growth {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

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

  .benefit-item-emotional-growth {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .benefit-number-emotional-growth {
    min-width: 60px;
  }

  .featured-quote-emotional-growth {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-emotional-growth {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .posts-grid-emotional-growth {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .card-emotional-growth {
    flex: 1 1 320px;
    max-width: 400px;
  }

  .benefit-item-emotional-growth {
    gap: 2.5rem;
    padding: 2rem;
  }
}

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

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

*:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

.main-emotionele-intelligentie-basis {
  width: 100%;
}

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

.hero-section-emotionele-intelligentie-basis {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.breadcrumbs-emotionele-intelligentie-basis {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-emotionele-intelligentie-basis {
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-emotionele-intelligentie-basis:hover {
  color: #6d28d9;
  text-decoration: underline;
}

.breadcrumb-separator-emotionele-intelligentie-basis {
  color: #cbd5e1;
}

.breadcrumb-current-emotionele-intelligentie-basis {
  color: #6b7280;
}

.hero-content-emotionele-intelligentie-basis {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero-content-emotionele-intelligentie-basis {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text-wrapper-emotionele-intelligentie-basis {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hero-text-wrapper-emotionele-intelligentie-basis {
    flex: 1 1 50%;
  }
}

.hero-title-emotionele-intelligentie-basis {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: #1e1b4b;
  line-height: 1.1;
}

.hero-subtitle-emotionele-intelligentie-basis {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #6b7280;
  line-height: 1.6;
}

.article-meta-emotionele-intelligentie-basis {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-emotionele-intelligentie-basis {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #faf5ff;
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-emotionele-intelligentie-basis i {
  font-size: 1rem;
}

.hero-image-wrapper-emotionele-intelligentie-basis {
  flex: 1 1 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-image-wrapper-emotionele-intelligentie-basis {
    flex: 1 1 50%;
  }
}

.hero-image-emotionele-intelligentie-basis {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.introduction-section-emotionele-intelligentie-basis {
  background: #faf5ff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.introduction-wrapper-emotionele-intelligentie-basis {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .introduction-wrapper-emotionele-intelligentie-basis {
    flex-direction: row;
  }
}

.introduction-text-emotionele-intelligentie-basis {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .introduction-text-emotionele-intelligentie-basis {
    flex: 1 1 50%;
  }
}

.introduction-title-emotionele-intelligentie-basis {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e1b4b;
}

.introduction-paragraph-emotionele-intelligentie-basis {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #4b5563;
  line-height: 1.7;
}

.introduction-image-emotionele-intelligentie-basis {
  flex: 1 1 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .introduction-image-emotionele-intelligentie-basis {
    flex: 1 1 50%;
  }
}

.introduction-img-emotionele-intelligentie-basis {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.core-pillars-section-emotionele-intelligentie-basis {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

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

.section-tag-emotionele-intelligentie-basis {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.core-pillars-title-emotionele-intelligentie-basis {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 1rem;
}

.core-pillars-subtitle-emotionele-intelligentie-basis {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.pillars-grid-emotionele-intelligentie-basis {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.pillar-card-emotionele-intelligentie-basis {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card-emotionele-intelligentie-basis:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.pillar-number-emotionele-intelligentie-basis {
  font-size: 2.5rem;
  font-weight: 800;
  color: #7c3aed;
  line-height: 1;
}

.pillar-title-emotionele-intelligentie-basis {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #1e1b4b;
}

.pillar-text-emotionele-intelligentie-basis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #6b7280;
  line-height: 1.6;
}

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

.practice-section-emotionele-intelligentie-basis {
  background: #faf5ff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.practice-wrapper-emotionele-intelligentie-basis {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .practice-wrapper-emotionele-intelligentie-basis {
    flex-direction: row;
  }
}

.practice-text-emotionele-intelligentie-basis {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .practice-text-emotionele-intelligentie-basis {
    flex: 1 1 50%;
  }
}

.practice-title-emotionele-intelligentie-basis {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e1b4b;
}

.practice-steps-emotionele-intelligentie-basis {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.practice-step-emotionele-intelligentie-basis {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #7c3aed;
}

.practice-step-number-emotionele-intelligentie-basis {
  font-size: 1.75rem;
  font-weight: 800;
  color: #7c3aed;
  flex-shrink: 0;
  line-height: 1;
  min-width: 50px;
}

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

.practice-step-title-emotionele-intelligentie-basis {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 700;
  color: #1e1b4b;
}

.practice-step-text-emotionele-intelligentie-basis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #6b7280;
  line-height: 1.6;
}

.practice-image-emotionele-intelligentie-basis {
  flex: 1 1 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .practice-image-emotionele-intelligentie-basis {
    flex: 1 1 50%;
  }
}

.practice-img-emotionele-intelligentie-basis {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.quote-section-emotionele-intelligentie-basis {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.featured-quote-emotionele-intelligentie-basis {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #7c3aed;
  background: #faf5ff;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

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

.quote-author-emotionele-intelligentie-basis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #6b7280;
  font-style: normal;
}

.benefits-section-emotionele-intelligentie-basis {
  background: #f3e8ff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.benefits-header-emotionele-intelligentie-basis {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.benefits-title-emotionele-intelligentie-basis {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e1b4b;
  text-align: center;
}

.benefits-wrapper-emotionele-intelligentie-basis {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .benefits-wrapper-emotionele-intelligentie-basis {
    flex-direction: row;
  }
}

.benefits-image-emotionele-intelligentie-basis {
  flex: 1 1 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .benefits-image-emotionele-intelligentie-basis {
    flex: 1 1 50%;
  }
}

.benefits-img-emotionele-intelligentie-basis {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.benefits-content-emotionele-intelligentie-basis {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefits-content-emotionele-intelligentie-basis {
    flex: 1 1 50%;
  }
}

.benefits-content-title-emotionele-intelligentie-basis {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: #1e1b4b;
}

.benefit-item-emotionele-intelligentie-basis {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border-left: 3px solid #7c3aed;
}

.benefit-item-title-emotionele-intelligentie-basis {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 0.5rem;
}

.benefit-item-text-emotionele-intelligentie-basis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

.action-section-emotionele-intelligentie-basis {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.action-content-emotionele-intelligentie-basis {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.action-title-emotionele-intelligentie-basis {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
}

.action-text-emotionele-intelligentie-basis {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #f3e8ff;
  line-height: 1.7;
  max-width: 600px;
}

.action-button-emotionele-intelligentie-basis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: #ffffff;
  color: #7c3aed;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 0.5rem;
}

.action-button-emotionele-intelligentie-basis:hover {
  background: #f3e8ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.related-section-emotionele-intelligentie-basis {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

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

.related-title-emotionele-intelligentie-basis {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 0.75rem;
}

.related-subtitle-emotionele-intelligentie-basis {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #6b7280;
}

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

.related-card-emotionele-intelligentie-basis {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  text-decoration: none;
}

.related-card-emotionele-intelligentie-basis:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
  border-color: #7c3aed;
}

.related-card-image-emotionele-intelligentie-basis {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-emotionele-intelligentie-basis {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: #1e1b4b;
}

.related-card-text-emotionele-intelligentie-basis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #6b7280;
  line-height: 1.6;
}

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

.disclaimer-section-emotionele-intelligentie-basis {
  background: #f9fafb;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 1px solid #e5e7eb;
}

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

.disclaimer-title-emotionele-intelligentie-basis {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 1rem;
}

.disclaimer-text-emotionele-intelligentie-basis {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #4b5563;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .core-pillars-section-emotionele-intelligentie-basis {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .pillars-grid-emotionele-intelligentie-basis {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-content-emotionele-intelligentie-basis {
    gap: 1.5rem;
  }

  .introduction-wrapper-emotionele-intelligentie-basis {
    gap: 1.5rem;
  }

  .practice-wrapper-emotionele-intelligentie-basis {
    gap: 1.5rem;
  }

  .benefits-wrapper-emotionele-intelligentie-basis {
    gap: 1.5rem;
  }

  .practice-step-emotionele-intelligentie-basis {
    gap: 1rem;
    padding: 1rem;
  }
}

.main-zelfinzicht-reflectie-techniek {
  width: 100%;
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

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

.hero-section-zelfinzicht-reflectie-techniek {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #faf5ff;
}

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

.hero-text-block-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-image-block-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-title-zelfinzicht-reflectie-techniek {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle-zelfinzicht-reflectie-techniek {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.breadcrumbs-zelfinzicht-reflectie-techniek {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-zelfinzicht-reflectie-techniek {
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-zelfinzicht-reflectie-techniek:hover {
  color: #6d28d9;
  text-decoration: underline;
}

.breadcrumb-separator-zelfinzicht-reflectie-techniek {
  color: #cbd5e1;
}

.breadcrumb-current-zelfinzicht-reflectie-techniek {
  color: #6b7280;
}

.article-meta-zelfinzicht-reflectie-techniek {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-zelfinzicht-reflectie-techniek {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-zelfinzicht-reflectie-techniek i {
  font-size: 0.875rem;
}

.hero-image-zelfinzicht-reflectie-techniek {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

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

  .hero-text-block-zelfinzicht-reflectie-techniek,
  .hero-image-block-zelfinzicht-reflectie-techniek {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.intro-section-zelfinzicht-reflectie-techniek {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
}

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

.intro-text-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-image-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  min-width: 280px;
}

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

.intro-image-element-zelfinzicht-reflectie-techniek {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-zelfinzicht-reflectie-techniek {
    flex-direction: column;
  }

  .intro-text-zelfinzicht-reflectie-techniek,
  .intro-image-zelfinzicht-reflectie-techniek {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.fundamentals-section-zelfinzicht-reflectie-techniek {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #f8fafc;
}

.section-header-zelfinzicht-reflectie-techniek {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-zelfinzicht-reflectie-techniek {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-zelfinzicht-reflectie-techniek {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: #1e1b4b;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle-zelfinzicht-reflectie-techniek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.fundamentals-content-zelfinzicht-reflectie-techniek {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.fundamentals-text-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  min-width: 280px;
}

.fundamentals-image-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  min-width: 280px;
}

.fundamentals-heading-zelfinzicht-reflectie-techniek {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  color: #1e1b4b;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.fundamentals-paragraph-zelfinzicht-reflectie-techniek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.fundamentals-emphasis-zelfinzicht-reflectie-techniek {
  font-weight: 600;
  color: #1e1b4b;
}

.fundamentals-image-element-zelfinzicht-reflectie-techniek {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .fundamentals-content-zelfinzicht-reflectie-techniek {
    flex-direction: column;
  }

  .fundamentals-text-zelfinzicht-reflectie-techniek,
  .fundamentals-image-zelfinzicht-reflectie-techniek {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.reflection-techniques-section-zelfinzicht-reflectie-techniek {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
}

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

.techniques-text-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  min-width: 280px;
}

.techniques-image-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  min-width: 280px;
}

.techniques-intro-zelfinzicht-reflectie-techniek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.technique-list-zelfinzicht-reflectie-techniek {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-item-zelfinzicht-reflectie-techniek {
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #7c3aed;
}

.technique-title-zelfinzicht-reflectie-techniek {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 0.5rem;
}

.technique-description-zelfinzicht-reflectie-techniek {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.techniques-image-element-zelfinzicht-reflectie-techniek {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .techniques-wrapper-zelfinzicht-reflectie-techniek {
    flex-direction: column;
  }

  .techniques-text-zelfinzicht-reflectie-techniek,
  .techniques-image-zelfinzicht-reflectie-techniek {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.benefits-section-zelfinzicht-reflectie-techniek {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #faf5ff;
}

.benefits-grid-zelfinzicht-reflectie-techniek {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.benefit-card-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
  transition: all 0.3s ease;
}

.benefit-card-zelfinzicht-reflectie-techniek:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.benefit-icon-zelfinzicht-reflectie-techniek {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 10px;
  color: #7c3aed;
  font-size: 1.5rem;
}

.benefit-title-zelfinzicht-reflectie-techniek {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e1b4b;
}

.benefit-text-zelfinzicht-reflectie-techniek {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

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

.journey-section-zelfinzicht-reflectie-techniek {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
}

.journey-content-zelfinzicht-reflectie-techniek {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  flex-wrap: wrap;
}

.journey-text-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  min-width: 280px;
}

.journey-image-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  min-width: 280px;
}

.journey-paragraph-zelfinzicht-reflectie-techniek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.journey-steps-zelfinzicht-reflectie-techniek {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.journey-step-zelfinzicht-reflectie-techniek {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number-zelfinzicht-reflectie-techniek {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #7c3aed;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-zelfinzicht-reflectie-techniek {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.step-title-zelfinzicht-reflectie-techniek {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e1b4b;
}

.step-text-zelfinzicht-reflectie-techniek {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.journey-image-element-zelfinzicht-reflectie-techniek {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .journey-content-zelfinzicht-reflectie-techniek {
    flex-direction: column;
    align-items: center;
  }

  .journey-text-zelfinzicht-reflectie-techniek,
  .journey-image-zelfinzicht-reflectie-techniek {
    flex: 1 1 100%;
    min-width: auto;
  }

  .journey-step-zelfinzicht-reflectie-techniek {
    flex-direction: row;
  }
}

.featured-quote-section-zelfinzicht-reflectie-techniek {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #faf5ff;
}

.featured-quote-zelfinzicht-reflectie-techniek {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #7c3aed;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

.quote-text-zelfinzicht-reflectie-techniek {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e1b4b;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.quote-author-zelfinzicht-reflectie-techniek {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: normal;
}

.challenges-section-zelfinzicht-reflectie-techniek {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
}

.challenges-content-zelfinzicht-reflectie-techniek {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
  flex-wrap: wrap;
}

.challenges-text-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  min-width: 280px;
}

.challenges-image-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  min-width: 280px;
}

.challenges-intro-zelfinzicht-reflectie-techniek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.challenge-list-zelfinzicht-reflectie-techniek {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.challenge-item-zelfinzicht-reflectie-techniek {
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #a78bfa;
}

.challenge-title-zelfinzicht-reflectie-techniek {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 0.5rem;
}

.challenge-text-zelfinzicht-reflectie-techniek {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.challenges-image-element-zelfinzicht-reflectie-techniek {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .challenges-content-zelfinzicht-reflectie-techniek {
    flex-direction: column;
    align-items: center;
  }

  .challenges-text-zelfinzicht-reflectie-techniek,
  .challenges-image-zelfinzicht-reflectie-techniek {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.conclusion-section-zelfinzicht-reflectie-techniek {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #faf5ff;
}

.conclusion-content-zelfinzicht-reflectie-techniek {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-zelfinzicht-reflectie-techniek {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-text-zelfinzicht-reflectie-techniek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-section-zelfinzicht-reflectie-techniek {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  border-radius: 12px;
  text-align: center;
}

.cta-title-zelfinzicht-reflectie-techniek {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-text-zelfinzicht-reflectie-techniek {
  font-size: 1rem;
  color: #f3e8ff;
  margin-bottom: 1.5rem;
}

.btn-primary-zelfinzicht-reflectie-techniek {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #7c3aed;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.btn-primary-zelfinzicht-reflectie-techniek:hover {
  background: #f3e8ff;
  color: #6d28d9;
  transform: translateY(-2px);
}

.related-section-zelfinzicht-reflectie-techniek {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #ffffff;
}

.related-title-zelfinzicht-reflectie-techniek {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.related-subtitle-zelfinzicht-reflectie-techniek {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #6b7280;
  margin-bottom: 2.5rem;
}

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

.related-card-zelfinzicht-reflectie-techniek {
  flex: 1 1 300px;
  max-width: 400px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-zelfinzicht-reflectie-techniek:hover {
  background: #ffffff;
  border-color: #7c3aed;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.12);
  transform: translateY(-4px);
}

.related-card-content-zelfinzicht-reflectie-techniek {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-zelfinzicht-reflectie-techniek {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e1b4b;
}

.related-card-text-zelfinzicht-reflectie-techniek {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
}

.read-more-zelfinzicht-reflectie-techniek {
  font-size: 0.875rem;
  color: #7c3aed;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.related-card-zelfinzicht-reflectie-techniek:hover .read-more-zelfinzicht-reflectie-techniek {
  color: #6d28d9;
}

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

.disclaimer-section-zelfinzicht-reflectie-techniek {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #f8fafc;
}

.disclaimer-content-zelfinzicht-reflectie-techniek {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #94a3b8;
  border-radius: 8px;
}

.disclaimer-title-zelfinzicht-reflectie-techniek {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #1e1b4b;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-zelfinzicht-reflectie-techniek {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-section-zelfinzicht-reflectie-techniek {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .intro-section-zelfinzicht-reflectie-techniek,
  .fundamentals-section-zelfinzicht-reflectie-techniek,
  .reflection-techniques-section-zelfinzicht-reflectie-techniek,
  .benefits-section-zelfinzicht-reflectie-techniek,
  .journey-section-zelfinzicht-reflectie-techniek,
  .featured-quote-section-zelfinzicht-reflectie-techniek,
  .challenges-section-zelfinzicht-reflectie-techniek,
  .conclusion-section-zelfinzicht-reflectie-techniek,
  .related-section-zelfinzicht-reflectie-techniek,
  .disclaimer-section-zelfinzicht-reflectie-techniek {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .benefits-grid-zelfinzicht-reflectie-techniek {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .benefits-grid-zelfinzicht-reflectie-techniek {
    justify-content: center;
  }

  .related-cards-zelfinzicht-reflectie-techniek {
    justify-content: center;
  }
}

.main-emotieregulatie-stressmanagement {
  width: 100%;
}

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

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

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

.breadcrumb-link-emotieregulatie-stressmanagement {
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-emotieregulatie-stressmanagement:hover {
  color: #6d28d9;
  text-decoration: underline;
}

.breadcrumb-separator-emotieregulatie-stressmanagement {
  color: #9ca3af;
}

.breadcrumb-current-emotieregulatie-stressmanagement {
  color: #4b5563;
  font-weight: 500;
}

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

.hero-text-wrapper-emotieregulatie-stressmanagement {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-emotieregulatie-stressmanagement {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: #1e1b4b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle-emotieregulatie-stressmanagement {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-stats-emotieregulatie-stressmanagement {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid #e5d4ff;
}

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

.stat-number-emotieregulatie-stressmanagement {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #7c3aed;
  line-height: 1;
}

.stat-label-emotieregulatie-stressmanagement {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.hero-image-emotieregulatie-stressmanagement {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-emotieregulatie-stressmanagement {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}

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

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

  .hero-stats-emotieregulatie-stressmanagement {
    gap: 1.5rem;
  }
}

.meta-section-emotieregulatie-stressmanagement {
  background: #ffffff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5d4ff;
  overflow: hidden;
}

.meta-section-emotieregulatie-stressmanagement .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.meta-badges-emotieregulatie-stressmanagement {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-start;
}

.meta-badge-emotieregulatie-stressmanagement {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #faf5ff;
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-emotieregulatie-stressmanagement i {
  color: #7c3aed;
}

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

.intro-section-emotieregulatie-stressmanagement .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

.intro-text-emotieregulatie-stressmanagement {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-emotieregulatie-stressmanagement {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-emotieregulatie-stressmanagement {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-emotieregulatie-stressmanagement {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-emotieregulatie-stressmanagement {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

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

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

.content-section-one-emotieregulatie-stressmanagement {
  background: #faf5ff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-one-emotieregulatie-stressmanagement .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

.content-text-one-emotieregulatie-stressmanagement {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-emotieregulatie-stressmanagement {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-paragraph-one-emotieregulatie-stressmanagement {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pillars-list-emotieregulatie-stressmanagement {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.pillar-item-emotieregulatie-stressmanagement {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #7c3aed;
}

.pillar-number-emotieregulatie-stressmanagement {
  font-size: 1.5rem;
  font-weight: 800;
  color: #7c3aed;
  flex-shrink: 0;
  min-width: 40px;
  line-height: 1;
}

.pillar-content-emotieregulatie-stressmanagement {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pillar-title-emotieregulatie-stressmanagement {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e1b4b;
}

.pillar-text-emotieregulatie-stressmanagement {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
}

.content-image-one-emotieregulatie-stressmanagement {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-emotieregulatie-stressmanagement {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-one-emotieregulatie-stressmanagement {
    flex-direction: column;
  }

  .content-text-one-emotieregulatie-stressmanagement,
  .content-image-one-emotieregulatie-stressmanagement {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-emotieregulatie-stressmanagement {
  background: #1e1b4b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.featured-quote-emotieregulatie-stressmanagement {
  padding: 2.5rem;
  border-left: 5px solid #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 12px;
  margin: 0;
}

.quote-text-emotieregulatie-stressmanagement {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-emotieregulatie-stressmanagement {
  font-size: 0.9375rem;
  color: #d1d5db;
  font-style: normal;
  display: block;
}

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

.content-section-two-emotieregulatie-stressmanagement .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

.content-image-two-emotieregulatie-stressmanagement {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-two-emotieregulatie-stressmanagement {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.content-text-two-emotieregulatie-stressmanagement {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-emotieregulatie-stressmanagement {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-paragraph-two-emotieregulatie-stressmanagement {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.techniques-list-emotieregulatie-stressmanagement {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.technique-item-emotieregulatie-stressmanagement {
  padding: 1.25rem;
  background: #faf5ff;
  border-radius: 12px;
  border-left: 4px solid #a78bfa;
}

.technique-title-emotieregulatie-stressmanagement {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 0.5rem;
}

.technique-text-emotieregulatie-stressmanagement {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-wrapper-two-emotieregulatie-stressmanagement {
    flex-direction: column-reverse;
  }

  .content-text-two-emotieregulatie-stressmanagement,
  .content-image-two-emotieregulatie-stressmanagement {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.techniques-section-emotieregulatie-stressmanagement {
  background: #f3e8ff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.techniques-header-emotieregulatie-stressmanagement {
  text-align: center;
  margin-bottom: 3rem;
}

.techniques-section-title-emotieregulatie-stressmanagement {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.techniques-section-subtitle-emotieregulatie-stressmanagement {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

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

.technique-card-emotieregulatie-stressmanagement {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technique-card-emotieregulatie-stressmanagement:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
}

.technique-card-icon-emotieregulatie-stressmanagement {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf5ff;
  border-radius: 12px;
  color: #7c3aed;
  font-size: 1.75rem;
}

.technique-card-title-emotieregulatie-stressmanagement {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e1b4b;
}

.technique-card-text-emotieregulatie-stressmanagement {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
}

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

.content-section-three-emotieregulatie-stressmanagement {
  background: #faf5ff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-three-emotieregulatie-stressmanagement .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

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

.content-text-three-emotieregulatie-stressmanagement {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-emotieregulatie-stressmanagement {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-paragraph-three-emotieregulatie-stressmanagement {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-box-emotieregulatie-stressmanagement {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #7c3aed;
  margin-top: 1.5rem;
}

.highlight-title-emotieregulatie-stressmanagement {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 1rem;
}

.highlight-list-emotieregulatie-stressmanagement {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight-item-emotieregulatie-stressmanagement {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
  padding-left: 1.75rem;
  position: relative;
}

.highlight-item-emotieregulatie-stressmanagement::before {
  content: "";
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-weight: 700;
}

.content-image-three-emotieregulatie-stressmanagement {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-three-emotieregulatie-stressmanagement {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-three-emotieregulatie-stressmanagement {
    flex-direction: column;
  }

  .content-text-three-emotieregulatie-stressmanagement,
  .content-image-three-emotieregulatie-stressmanagement {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-content-emotieregulatie-stressmanagement {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-emotieregulatie-stressmanagement {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-emotieregulatie-stressmanagement {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.cta-box-emotieregulatie-stressmanagement {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 2.5rem;
}

.cta-title-emotieregulatie-stressmanagement {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-text-emotieregulatie-stressmanagement {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-emotieregulatie-stressmanagement {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #7c3aed;
  border-radius: 12px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.disclaimer-section-emotieregulatie-stressmanagement {
  background: #faf5ff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid #e5d4ff;
  border-bottom: 1px solid #e5d4ff;
  overflow: hidden;
}

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

.disclaimer-content-emotieregulatie-stressmanagement {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-emotieregulatie-stressmanagement {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: #1e1b4b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.disclaimer-text-emotieregulatie-stressmanagement {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #6b7280;
  line-height: 1.8;
  font-style: italic;
}

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

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

.related-header-emotieregulatie-stressmanagement {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-emotieregulatie-stressmanagement {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1e1b4b;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-emotieregulatie-stressmanagement {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-emotieregulatie-stressmanagement {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-emotieregulatie-stressmanagement:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
}

.related-card-image-emotieregulatie-stressmanagement {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-emotieregulatie-stressmanagement img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-emotieregulatie-stressmanagement {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.related-card-title-emotieregulatie-stressmanagement {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1e1b4b;
  line-height: 1.3;
}

.related-card-text-emotieregulatie-stressmanagement {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.6;
}

.related-card-link-emotieregulatie-stressmanagement {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7c3aed;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.3s ease, gap 0.3s ease;
}

.related-card-link-emotieregulatie-stressmanagement:hover {
  color: #6d28d9;
  gap: 0.75rem;
}

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

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

  .intro-section-emotieregulatie-stressmanagement {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .content-section-one-emotieregulatie-stressmanagement,
  .content-section-two-emotieregulatie-stressmanagement,
  .content-section-three-emotieregulatie-stressmanagement {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .techniques-section-emotieregulatie-stressmanagement {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .conclusion-section-emotieregulatie-stressmanagement {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-emotieregulatie-stressmanagement {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-stats-emotieregulatie-stressmanagement {
    gap: 3rem;
  }
}

.main-empathie-relatiebouwing {
  width: 100%;
}

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

.hero-section-empathie-relatiebouwing {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.breadcrumbs-empathie-relatiebouwing {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-empathie-relatiebouwing a {
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-empathie-relatiebouwing a:hover {
  color: #6d28d9;
  text-decoration: underline;
}

.breadcrumb-separator-empathie-relatiebouwing {
  color: #cbd5e1;
}

.breadcrumb-current-empathie-relatiebouwing {
  color: #64748b;
}

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

.hero-text-block-empathie-relatiebouwing {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-empathie-relatiebouwing {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #1e1b4b;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-empathie-relatiebouwing {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #6b7280;
  line-height: 1.6;
}

.hero-meta-empathie-relatiebouwing {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-empathie-relatiebouwing {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #faf5ff;
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-empathie-relatiebouwing i {
  font-size: 0.875rem;
}

.hero-image-block-empathie-relatiebouwing {
  flex: 1 1 45%;
}

.hero-image-empathie-relatiebouwing {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

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

  .hero-text-block-empathie-relatiebouwing,
  .hero-image-block-empathie-relatiebouwing {
    flex: 1 1 100%;
  }
}

.intro-section-empathie-relatiebouwing {
  background: #faf5ff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-empathie-relatiebouwing {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-paragraph-empathie-relatiebouwing {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.intro-image-empathie-relatiebouwing {
  flex: 1 1 50%;
}

.intro-image-file-empathie-relatiebouwing {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.12);
}

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

  .intro-text-empathie-relatiebouwing,
  .intro-image-empathie-relatiebouwing {
    flex: 1 1 100%;
  }
}

.foundations-section-empathie-relatiebouwing {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.foundations-header-empathie-relatiebouwing {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-empathie-relatiebouwing {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.foundations-title-empathie-relatiebouwing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 1rem;
}

.foundations-subtitle-empathie-relatiebouwing {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.foundations-grid-empathie-relatiebouwing {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.foundations-card-empathie-relatiebouwing {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #f3e8ff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
  transition: all 0.3s ease;
}

.foundations-card-empathie-relatiebouwing:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.12);
  border-color: #e9d5ff;
}

.card-icon-empathie-relatiebouwing {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf5ff;
  color: #7c3aed;
  border-radius: 10px;
  font-size: 1.5rem;
}

.card-title-empathie-relatiebouwing {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e1b4b;
}

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

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

.skills-section-empathie-relatiebouwing {
  background: #faf5ff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.skills-text-empathie-relatiebouwing {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skills-title-empathie-relatiebouwing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e1b4b;
  line-height: 1.2;
}

.skills-paragraph-empathie-relatiebouwing {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.skills-steps-empathie-relatiebouwing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.skills-step-empathie-relatiebouwing {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #7c3aed;
}

.step-number-empathie-relatiebouwing {
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 800;
  color: #7c3aed;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.step-content-empathie-relatiebouwing {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-empathie-relatiebouwing {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #1e1b4b;
}

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

.skills-image-empathie-relatiebouwing {
  flex: 1 1 50%;
}

.skills-image-file-empathie-relatiebouwing {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.12);
}

@media (max-width: 768px) {
  .skills-content-empathie-relatiebouwing {
    flex-direction: column;
  }

  .skills-text-empathie-relatiebouwing,
  .skills-image-empathie-relatiebouwing {
    flex: 1 1 100%;
  }
}

.barriers-section-empathie-relatiebouwing {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.barriers-header-empathie-relatiebouwing {
  text-align: center;
  margin-bottom: 3rem;
}

.barriers-title-empathie-relatiebouwing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 2rem;
}

.featured-quote-empathie-relatiebouwing {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #7c3aed;
  background: #faf5ff;
  margin: 2rem 0;
  border-radius: 8px;
}

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

.quote-cite-empathie-relatiebouwing {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: normal;
  display: block;
}

.barriers-content-empathie-relatiebouwing {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
  margin-top: 2rem;
}

.barriers-image-empathie-relatiebouwing {
  flex: 1 1 45%;
}

.barriers-image-file-empathie-relatiebouwing {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.12);
}

.barriers-text-empathie-relatiebouwing {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.barriers-subtitle-empathie-relatiebouwing {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1e1b4b;
}

.barriers-paragraph-empathie-relatiebouwing {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .barriers-content-empathie-relatiebouwing {
    flex-direction: column;
  }

  .barriers-image-empathie-relatiebouwing,
  .barriers-text-empathie-relatiebouwing {
    flex: 1 1 100%;
  }
}

.growth-section-empathie-relatiebouwing {
  background: #faf5ff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.growth-header-empathie-relatiebouwing {
  text-align: center;
  margin-bottom: 3rem;
}

.growth-title-empathie-relatiebouwing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 1rem;
}

.growth-subtitle-empathie-relatiebouwing {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.growth-grid-empathie-relatiebouwing {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.growth-card-empathie-relatiebouwing {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e9d5ff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
  transition: all 0.3s ease;
}

.growth-card-empathie-relatiebouwing:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.12);
}

.growth-card-number-empathie-relatiebouwing {
  font-size: 2rem;
  font-weight: 800;
  color: #7c3aed;
  line-height: 1;
}

.growth-card-title-empathie-relatiebouwing {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e1b4b;
}

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

.growth-image-section-empathie-relatiebouwing {
  display: flex;
  justify-content: center;
}

.growth-image-empathie-relatiebouwing {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

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

.impact-section-empathie-relatiebouwing {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.impact-text-empathie-relatiebouwing {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.impact-title-empathie-relatiebouwing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e1b4b;
  line-height: 1.2;
}

.impact-paragraph-empathie-relatiebouwing {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #4b5563;
  line-height: 1.7;
}

.impact-image-empathie-relatiebouwing {
  flex: 1 1 50%;
}

.impact-image-file-empathie-relatiebouwing {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.12);
}

@media (max-width: 768px) {
  .impact-content-empathie-relatiebouwing {
    flex-direction: column;
  }

  .impact-text-empathie-relatiebouwing,
  .impact-image-empathie-relatiebouwing {
    flex: 1 1 100%;
  }
}

.cta-section-empathie-relatiebouwing {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-box-empathie-relatiebouwing {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.cta-title-empathie-relatiebouwing {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
}

.cta-text-empathie-relatiebouwing {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #ffffff;
  max-width: 600px;
  line-height: 1.7;
}

.cta-button-empathie-relatiebouwing {
  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, 1rem);
  font-weight: 600;
  background: #ffffff;
  color: #7c3aed;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.cta-button-empathie-relatiebouwing:hover {
  background: #faf5ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.related-section-empathie-relatiebouwing {
  background: #faf5ff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-empathie-relatiebouwing {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-empathie-relatiebouwing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 0.5rem;
}

.related-subtitle-empathie-relatiebouwing {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #6b7280;
}

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

.related-card-empathie-relatiebouwing {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #ffffff;
  border: 1px solid #e9d5ff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
  transition: all 0.3s ease;
}

.related-card-empathie-relatiebouwing:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.12);
  border-color: #d8b4fe;
}

.related-card-image-empathie-relatiebouwing {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-empathie-relatiebouwing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-empathie-relatiebouwing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.related-card-title-empathie-relatiebouwing {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e1b4b;
}

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

.related-card-link-empathie-relatiebouwing {
  color: #7c3aed;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.related-card-link-empathie-relatiebouwing:hover {
  color: #6d28d9;
  text-decoration: underline;
}

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

.disclaimer-section-empathie-relatiebouwing {
  background: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-box-empathie-relatiebouwing {
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  border-left: 4px solid #7c3aed;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
}

.disclaimer-title-empathie-relatiebouwing {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
  .hero-section-empathie-relatiebouwing {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .foundations-section-empathie-relatiebouwing,
  .skills-section-empathie-relatiebouwing,
  .barriers-section-empathie-relatiebouwing,
  .growth-section-empathie-relatiebouwing,
  .impact-section-empathie-relatiebouwing,
  .related-section-empathie-relatiebouwing {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-empathie-relatiebouwing,
  .intro-section-empathie-relatiebouwing,
  .foundations-section-empathie-relatiebouwing,
  .skills-section-empathie-relatiebouwing,
  .barriers-section-empathie-relatiebouwing,
  .growth-section-empathie-relatiebouwing,
  .impact-section-empathie-relatiebouwing,
  .cta-section-empathie-relatiebouwing,
  .related-section-empathie-relatiebouwing,
  .disclaimer-section-empathie-relatiebouwing {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

.main-leiderschap-emotioneel-bewustzijn {
  width: 100%;
  background: #ffffff;
}

.hero-section-leiderschap-emotioneel-bewustzijn {
  background: linear-gradient(135deg, #f8fafc 0%, #faf5ff 100%);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  position: relative;
}

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

.hero-text-wrapper-leiderschap-emotioneel-bewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.25rem);
  font-weight: 700;
  color: #1e1b4b;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: #64748b;
  line-height: 1.5;
}

.hero-meta-leiderschap-emotioneel-bewustzijn {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.meta-badge-leiderschap-emotioneel-bewustzijn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-image-wrapper-leiderschap-emotioneel-bewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-leiderschap-emotioneel-bewustzijn {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

@media (max-width: 768px) {
  .hero-content-leiderschap-emotioneel-bewustzijn {
    flex-direction: column;
  }
  
  .hero-text-wrapper-leiderschap-emotioneel-bewustzijn,
  .hero-image-wrapper-leiderschap-emotioneel-bewustzijn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.breadcrumbs-leiderschap-emotioneel-bewustzijn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-leiderschap-emotioneel-bewustzijn {
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-leiderschap-emotioneel-bewustzijn:hover {
  color: #6d28d9;
  text-decoration: underline;
}

.breadcrumb-separator-leiderschap-emotioneel-bewustzijn {
  color: #cbd5e1;
}

.breadcrumb-current-leiderschap-emotioneel-bewustzijn {
  color: #475569;
  font-weight: 500;
}

.introduction-section-leiderschap-emotioneel-bewustzijn {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.introduction-wrapper-leiderschap-emotioneel-bewustzijn {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.introduction-text-leiderschap-emotioneel-bewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.introduction-heading-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e1b4b;
}

.introduction-description-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.introduction-image-leiderschap-emotioneel-bewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-tag-leiderschap-emotioneel-bewustzijn {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.12);
}

@media (max-width: 768px) {
  .introduction-wrapper-leiderschap-emotioneel-bewustzijn {
    flex-direction: column;
  }
  
  .introduction-text-leiderschap-emotioneel-bewustzijn,
  .introduction-image-leiderschap-emotioneel-bewustzijn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-first-section-leiderschap-emotioneel-bewustzijn {
  background: #faf5ff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-first-wrapper-leiderschap-emotioneel-bewustzijn {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-first-text-leiderschap-emotioneel-bewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-first-title-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 1.5rem;
}

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

.content-first-steps-leiderschap-emotioneel-bewustzijn {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-leiderschap-emotioneel-bewustzijn {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #7c3aed;
}

.step-number-leiderschap-emotioneel-bewustzijn {
  font-size: 2rem;
  font-weight: 800;
  color: #7c3aed;
  flex-shrink: 0;
  min-width: 50px;
  line-height: 1;
}

.step-content-leiderschap-emotioneel-bewustzijn {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-leiderschap-emotioneel-bewustzijn {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e1b4b;
}

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

.content-first-image-leiderschap-emotioneel-bewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-first-image-tag-leiderschap-emotioneel-bewustzijn {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.12);
}

@media (max-width: 768px) {
  .content-first-wrapper-leiderschap-emotioneel-bewustzijn {
    flex-direction: column;
  }
  
  .content-first-text-leiderschap-emotioneel-bewustzijn,
  .content-first-image-leiderschap-emotioneel-bewustzijn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-second-section-leiderschap-emotioneel-bewustzijn {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-second-wrapper-leiderschap-emotioneel-bewustzijn {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-second-image-leiderschap-emotioneel-bewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-second-image-tag-leiderschap-emotioneel-bewustzijn {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.12);
}

.content-second-text-leiderschap-emotioneel-bewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-second-title-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e1b4b;
}

.content-second-description-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.content-second-highlight-leiderschap-emotioneel-bewustzijn {
  padding: 1.5rem;
  background: #f3e8ff;
  border-left: 4px solid #7c3aed;
  border-radius: 8px;
  margin: 1rem 0;
}

.highlight-title-leiderschap-emotioneel-bewustzijn {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 0.5rem;
}

.highlight-text-leiderschap-emotioneel-bewustzijn {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-second-wrapper-leiderschap-emotioneel-bewustzijn {
    flex-direction: column;
  }
  
  .content-second-image-leiderschap-emotioneel-bewustzijn,
  .content-second-text-leiderschap-emotioneel-bewustzijn {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.content-third-section-leiderschap-emotioneel-bewustzijn {
  background: #faf5ff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-third-wrapper-leiderschap-emotioneel-bewustzijn {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-third-text-leiderschap-emotioneel-bewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-third-title-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e1b4b;
}

.content-third-description-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.content-third-list-leiderschap-emotioneel-bewustzijn {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-third-list-item-leiderschap-emotioneel-bewustzijn {
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  border-left: 3px solid #7c3aed;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.content-third-list-item-leiderschap-emotioneel-bewustzijn strong {
  color: #1e1b4b;
  font-weight: 600;
}

.featured-quote-leiderschap-emotioneel-bewustzijn {
  padding: 2rem 2.5rem;
  background: #ffffff;
  border-left: 4px solid #7c3aed;
  border-radius: 8px;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-text-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #1e1b4b;
  line-height: 1.6;
}

.quote-author-leiderschap-emotioneel-bewustzijn {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.content-third-image-leiderschap-emotioneel-bewustzijn {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-third-image-tag-leiderschap-emotioneel-bewustzijn {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.12);
}

@media (max-width: 768px) {
  .content-third-wrapper-leiderschap-emotioneel-bewustzijn {
    flex-direction: column;
  }
  
  .content-third-text-leiderschap-emotioneel-bewustzijn,
  .content-third-image-leiderschap-emotioneel-bewustzijn {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-content-leiderschap-emotioneel-bewustzijn {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.conclusion-title-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e1b4b;
}

.conclusion-text-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.conclusion-steps-leiderschap-emotioneel-bewustzijn {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.conclusion-step-leiderschap-emotioneel-bewustzijn {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 1.5rem;
  background: #faf5ff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.conclusion-step-title-leiderschap-emotioneel-bewustzijn {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e1b4b;
}

.conclusion-step-text-leiderschap-emotioneel-bewustzijn {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.conclusion-closing-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  font-weight: 500;
}

@media (max-width: 768px) {
  .conclusion-steps-leiderschap-emotioneel-bewustzijn {
    flex-direction: column;
  }
  
  .conclusion-step-leiderschap-emotioneel-bewustzijn {
    flex: 1 1 100%;
    max-width: none;
  }
}

.related-section-leiderschap-emotioneel-bewustzijn {
  background: #faf5ff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-leiderschap-emotioneel-bewustzijn {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 1rem;
}

.related-subtitle-leiderschap-emotioneel-bewustzijn {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

.related-card-leiderschap-emotioneel-bewustzijn {
  flex: 1 1 300px;
  max-width: 400px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-leiderschap-emotioneel-bewustzijn:hover {
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
  transform: translateY(-4px);
  border-color: #7c3aed;
}

.related-card-title-leiderschap-emotioneel-bewustzijn {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e1b4b;
  margin: 0;
}

.related-card-description-leiderschap-emotioneel-bewustzijn {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-card-arrow-leiderschap-emotioneel-bewustzijn {
  color: #7c3aed;
  font-weight: 600;
  font-size: 1.25rem;
}

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

.disclaimer-section-leiderschap-emotioneel-bewustzijn {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-leiderschap-emotioneel-bewustzijn {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #cbd5e1;
}

.disclaimer-title-leiderschap-emotioneel-bewustzijn {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e1b4b;
  margin-bottom: 1rem;
}

.disclaimer-text-leiderschap-emotioneel-bewustzijn {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

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

@media (min-width: 768px) {
  .hero-section-leiderschap-emotioneel-bewustzijn {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
  
  .introduction-section-leiderschap-emotioneel-bewustzijn,
  .content-first-section-leiderschap-emotioneel-bewustzijn,
  .content-second-section-leiderschap-emotioneel-bewustzijn,
  .content-third-section-leiderschap-emotioneel-bewustzijn,
  .conclusion-section-leiderschap-emotioneel-bewustzijn {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-leiderschap-emotioneel-bewustzijn {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .introduction-section-leiderschap-emotioneel-bewustzijn,
  .content-first-section-leiderschap-emotioneel-bewustzijn,
  .content-second-section-leiderschap-emotioneel-bewustzijn,
  .content-third-section-leiderschap-emotioneel-bewustzijn,
  .conclusion-section-leiderschap-emotioneel-bewustzijn {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
}

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #faf5ff;
  --color-bg-tertiary: #f3e8ff;
  --color-bg-card: #ffffff;
  --color-text-primary: #1e1b4b;
  --color-text-secondary: #6b7280;
  --color-text-muted: #9ca3af;
  --color-primary: #7c3aed;
  --color-primary-hover: #6d28d9;
  --color-secondary: #a78bfa;
  --color-tertiary: #c4b5fd;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(124, 58, 237, 0.08);
  --shadow-md: 0 4px 12px rgba(124, 58, 237, 0.12);
  --shadow-lg: 0 10px 25px rgba(124, 58, 237, 0.15);
  --shadow-xl: 0 20px 40px rgba(124, 58, 237, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
}

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

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

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

.groei-emotionele-about {
  font-family: var(--font-primary);
}

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

.opening-hero-about .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.opening-hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 750px;
}

.opening-title-about {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.opening-tagline-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.opening-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.opening-stat-item-about {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.opening-stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

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

@media (max-width: 768px) {
  .opening-hero-about .container {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

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

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

.mission-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}

.mission-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-2xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

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

.mission-description-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.mission-blocks-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.mission-block-about {
  flex: 1 1 280px;
  max-width: 350px;
  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 rgba(124, 58, 237, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-block-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mission-block-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.mission-block-heading-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.mission-block-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .mission-block-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.journey-subtitle-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-2xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.journey-heading-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.journey-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 850px;
  margin: 0 auto;
}

.journey-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.journey-step-number-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  line-height: 1;
  min-width: 60px;
}

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

.journey-step-title-about {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.journey-step-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .journey-step-about {
    gap: 1rem;
  }
}

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

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

.philosophy-text-about {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.philosophy-eyebrow-about {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-primary);
}

.philosophy-main-title-about {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.philosophy-description-about {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.philosophy-quote-block-about {
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  font-style: italic;
}

.philosophy-quote-text-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.philosophy-quote-author-about {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: normal;
  font-weight: 500;
}

.philosophy-image-about {
  flex: 1 1 300px;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

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

.values-header-about {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.values-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(124, 58, 237, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-2xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.values-main-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.values-intro-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.value-card-about {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.25rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 58, 237, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon-about {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.75rem;
  margin: 0 auto;
}

.value-title-about {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.value-description-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

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

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

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

.commitment-intro-about {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.commitment-intro-title-about {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.commitment-intro-text-about {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.commitment-points-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.commitment-point-about {
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.commitment-point-icon-about {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.commitment-point-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.commitment-point-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .commitment-point-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-notice-about {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.disclaimer-content-about {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.disclaimer-icon-about {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-title-about {
  font-size: clamp(1.25rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.disclaimer-text-about {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .disclaimer-notice-about {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }
}

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

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

.legal-portal {
  width: 100%;
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.legal-hero {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  position: relative;
  overflow: hidden;
}

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

.legal-hero h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hero-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.legal-hero-meta {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-muted);
  font-style: italic;
}

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

.legal-content-section:nth-child(even) {
  background: var(--color-bg-secondary);
}

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

.legal-section-block {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.legal-content-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-content-section:nth-child(even) h2 {
  color: var(--color-primary-hover);
}

.legal-content-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-content-section:nth-child(even) p {
  color: var(--color-text-secondary);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  margin-top: clamp(0.5rem, 1vw, 1rem);
  padding-left: clamp(1.5rem, 3vw, 2rem);
}

.legal-list li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-content-section:nth-child(even) .legal-list li {
  color: var(--color-text-secondary);
}

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

.legal-contact-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  max-width: 800px;
}

.legal-contact-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.25;
}

.legal-contact-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: 1.7;
}

.legal-contact-item {
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 1vw, 0.5rem);
}

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

.legal-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

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

  .legal-content-section {
    padding: 5rem 0;
  }

  .legal-contact-section {
    padding: 5rem 0;
  }
}

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

  .legal-content-section {
    padding: 6rem 0;
  }

  .legal-contact-section {
    padding: 6rem 0;
  }
}

.thank-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);
  margin: 0 auto;
}

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon i {
  font-size: clamp(3rem, 10vw, 5rem);
  color: var(--color-primary);
  animation: icon-pulse 0.8s ease-out;
}

@keyframes icon-pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 clamp(1rem, 3vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
  letter-spacing: 0.3px;
}

.thank-description,
.thank-next-steps {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

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

  .thank-icon i {
    margin-bottom: 0.5rem;
  }

  .thank-section h1 {
    margin-bottom: 1rem;
  }

  .thank-lead {
    margin-bottom: 2rem;
  }

  .thank-description,
  .thank-next-steps {
    margin-bottom: 1.5rem;
  }

  .thank-next-steps {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .thank-content {
    max-width: 700px;
  }

  .thank-section h1 {
    margin-bottom: 1.25rem;
  }

  .thank-lead {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
  }

  .thank-description,
  .thank-next-steps {
    font-size: 1.0625rem;
  }

  .thank-next-steps {
    margin-bottom: 3rem;
  }

  .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    min-height: 100vh;
  }

  .thank-section h1 {
    font-size: 3rem;
  }

  .thank-icon i {
    font-size: 5rem;
  }
}

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

@media print {
  .thank-section {
    min-height: auto;
  }

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

.main.error-page {
  width: 100%;
}

.error-section {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 0;
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--color-tertiary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.25;
  animation: float 8s ease-in-out infinite reverse;
  z-index: 0;
}

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

.error-section .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-lg);
}

.error-visual {
  position: relative;
  margin-bottom: var(--space-lg);
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw + 1rem, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  animation: slideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.error-icon {
  position: absolute;
  bottom: -15px;
  right: -20px;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-primary);
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin: 0;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 550px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-features {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  animation: fadeInUp 0.8s ease-out 0.5s both;
  margin: var(--space-md) 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-width: 120px;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-item i {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-primary);
}

.feature-item span {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw + 0.3rem, 0.875rem);
  color: var(--color-text-primary);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.error-content .btn {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary) 100%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-xl) 0;
    min-height: 100vh;
  }

  .error-content {
    gap: var(--space-xl);
  }

  .error-visual {
    margin-bottom: var(--space-xl);
  }

  .error-features {
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
  }

  .feature-item {
    padding: var(--space-lg);
    min-width: 140px;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) 0;
  }

  .error-content {
    gap: var(--space-2xl);
  }

  .error-visual {
    margin-bottom: var(--space-2xl);
  }

  .error-icon {
    bottom: -25px;
    right: -30px;
  }

  .error-features {
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
  }

  .feature-item {
    padding: var(--space-lg);
    min-width: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-title,
  .error-subtitle,
  .error-description,
  .error-features,
  .error-content .btn,
  .error-icon {
    animation: none;
  }

  .error-section::before,
  .error-section::after {
    animation: none;
  }

  .feature-item {
    transition: none;
  }

  .btn {
    transition: none;
  }
}

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

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

.header-consciousness-gateway-mobile-toggle.active{
  display: none;
} 