@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --color-bg-primary: #f9fafb;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f3f4f6;
  --color-bg-card: #ffffff;

  --color-text-primary: #1f2937;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;

  --color-primary: #e85d04;
  --color-primary-hover: #c2410c;
  --color-primary-light: #fde8d8;
  --color-secondary: #f97316;
  --color-secondary-light: #fed7aa;

  --color-success: #10b981;
  --color-success-light: #d1fae5;
  --color-warning: #f59e0b;
  --color-warning-light: #fef3c7;
  --color-danger: #ef4444;
  --color-danger-light: #fee2e2;

  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;

  --font-primary: 'Open Sans', sans-serif;
  --font-heading: 'Libre Baskerville', serif;

  --spacing-xs: 0.375rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

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

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

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

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

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: 1.875rem;
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

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

h6 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

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

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

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

button {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

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

input, textarea, select {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm) var(--spacing-md);
  transition: all var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

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

textarea {
  resize: vertical;
  font-size: 1rem;
  line-height: var(--line-height-normal);
}

label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.9375rem;
}

.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

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

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

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

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

.btn-secondary:hover {
  background: #d65a0b;
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-header {
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-border-light);
}

.card-body {
  margin-bottom: var(--spacing-md);
}

.card-body:last-child {
  margin-bottom: 0;
}

.card-footer {
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border-light);
}

.badge {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

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

.badge-success {
  background: var(--color-success-light);
  color: var(--color-success);
}

.badge-warning {
  background: var(--color-warning-light);
  color: var(--color-warning);
}

.badge-danger {
  background: var(--color-danger-light);
  color: var(--color-danger);
}

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

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

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

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

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

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

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

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

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

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

.font-light {
  font-weight: 300;
}

.leading-tight {
  line-height: var(--line-height-tight);
}

.leading-normal {
  line-height: var(--line-height-normal);
}

.leading-relaxed {
  line-height: var(--line-height-relaxed);
}

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

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

.my-xs { margin-top: var(--spacing-xs); margin-bottom: var(--spacing-xs); }
.my-sm { margin-top: var(--spacing-sm); margin-bottom: var(--spacing-sm); }
.my-md { margin-top: var(--spacing-md); margin-bottom: var(--spacing-md); }
.my-lg { margin-top: var(--spacing-lg); margin-bottom: var(--spacing-lg); }
.my-xl { margin-top: var(--spacing-xl); margin-bottom: var(--spacing-xl); }
.my-2xl { margin-top: var(--spacing-2xl); margin-bottom: var(--spacing-2xl); }

.pt-xs { padding-top: var(--spacing-xs); }
.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }
.pt-2xl { padding-top: var(--spacing-2xl); }

.pb-xs { padding-bottom: var(--spacing-xs); }
.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }
.pb-2xl { padding-bottom: var(--spacing-2xl); }

.py-xs { padding-top: var(--spacing-xs); padding-bottom: var(--spacing-xs); }
.py-sm { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-md { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-lg { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-xl { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }
.py-2xl { padding-top: var(--spacing-2xl); padding-bottom: var(--spacing-2xl); }

.px-xs { padding-left: var(--spacing-xs); padding-right: var(--spacing-xs); }
.px-sm { padding-left: var(--spacing-sm); padding-right: var(--spacing-sm); }
.px-md { padding-left: var(--spacing-md); padding-right: var(--spacing-md); }
.px-lg { padding-left: var(--spacing-lg); padding-right: var(--spacing-lg); }
.px-xl { padding-left: var(--spacing-xl); padding-right: var(--spacing-xl); }
.px-2xl { padding-left: var(--spacing-2xl); padding-right: var(--spacing-2xl); }

.flex {
  display: flex;
}

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

.flex-row {
  flex-direction: row;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-xs { gap: var(--spacing-xs); }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.border {
  border: 1px solid var(--color-border);
}

.border-t {
  border-top: 1px solid var(--color-border);
}

.border-b {
  border-bottom: 1px solid var(--color-border);
}

.border-l {
  border-left: 1px solid var(--color-border);
}

.border-r {
  border-right: 1px solid var(--color-border);
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

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

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

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

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.header-growth-compass {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  position: static;
  z-index: 100;
  width: 100%;
  top: 0;
}

.header-growth-compass-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: auto;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 70px;
}

.header-growth-compass-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-growth-compass-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

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

.header-growth-compass-brand:hover .header-growth-compass-logo-text {
  color: var(--color-primary);
  transition: color var(--transition-base);
}

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

.header-growth-compass-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-base);
}

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

.header-growth-compass-nav-link:hover {
  color: var(--color-primary);
}

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

.header-growth-compass-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

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

.header-growth-compass-mobile-toggle {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 5px;
  z-index: 102;
  flex-shrink: 0;
}

.header-growth-compass-hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  display: block;
}

.header-growth-compass-hamburger::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  margin-bottom: 5px;
  transition: all var(--transition-base);
}

.header-growth-compass-hamburger::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  margin-top: 5px;
  transition: all var(--transition-base);
}

.header-growth-compass-mobile-toggle[aria-expanded="true"] .header-growth-compass-hamburger {
  opacity: 0;
}

.header-growth-compass-mobile-toggle[aria-expanded="true"] .header-growth-compass-hamburger::before {
  margin-bottom: 0;
  transform: rotate(45deg) translateY(11px);
}

.header-growth-compass-mobile-toggle[aria-expanded="true"] .header-growth-compass-hamburger::after {
  margin-top: 0;
  transform: rotate(-45deg) translateY(-11px);
}

.header-growth-compass-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 101;
  overflow-y: auto;
  padding-top: 70px;
}

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

.header-growth-compass-mobile-header {
  padding: 1rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  justify-content: flex-end;
}

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

.header-growth-compass-mobile-close:hover {
  color: var(--color-primary);
}

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

.header-growth-compass-mobile-link {
  padding: 1rem clamp(1rem, 3vw, 2rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  font-weight: 500;
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.header-growth-compass-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
}

.header-growth-compass-mobile-cta {
  margin: 2rem clamp(1rem, 3vw, 2rem) 1rem;
  padding: 0.875rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: 0.5rem;
  display: block;
  text-align: center;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

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

@media (min-width: 768px) {
  .header-growth-compass-mobile-toggle {
    display: none !important;
  }

  .header-growth-compass-mobile-menu {
    display: none !important;
  }

  .header-growth-compass-desktop-nav {
    display: flex;
  }

  .header-growth-compass-cta-button {
    display: block;
  }
}

@media (max-width: 767px) {
  .header-growth-compass-container {
    min-height: 60px;
  }

  .header-growth-compass-desktop-nav {
    display: none;
  }

  .header-growth-compass-cta-button {
    display: none;
  }
}

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

.eq-growth-portal * {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.hero-content--top {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  text-align: center;
}

.hero-text-block--top {
  max-width: 900px;
}

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

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

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

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

.btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 2vw, 2rem);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 1rem);
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

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

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

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

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

.btn-tertiary--top {
  background: transparent;
  color: var(--color-primary);
  border: none;
  text-decoration: underline;
  padding: 0.5rem 0;
}

.btn-tertiary--top:hover {
  color: var(--color-primary-hover);
}

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

  .btn {
    width: 100%;
  }
}

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

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

.about-preview-text--top {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-preview-title--top {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.about-preview-description--top {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

.about-preview-text-detail--top {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

.about-preview-image--top {
  flex: 1 1 50%;
}

.about-preview-image--top img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .about-preview-content--top {
    flex-direction: column;
  }

  .about-preview-text--top {
    flex: 1 1 100%;
  }

  .about-preview-image--top {
    flex: 1 1 100%;
  }
}

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

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

.features-large-primary--top {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
}

.features-large-image--top {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.features-large-image--top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-large-overlay--top {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}

.features-large-overlay-title--top {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
}

.features-large-overlay-text--top {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: #f1f5f9;
  margin: 0;
  line-height: 1.7;
  max-width: 600px;
}

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

.features-large-card--top {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.features-large-card--top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.features-large-card-title--top {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
}

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

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

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

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

.features-grid-title--top {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
}

.features-grid-list--top {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.features-grid-item--top {
  padding: clamp(1.5rem, 2vw, 2rem) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.features-grid-item--top:last-child {
  border-bottom: none;
}

.features-grid-item-title--top {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
}

.features-grid-item-text--top {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

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

.cta-content--top {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  text-align: center;
}

.cta-icon-block--top {
  font-size: 3.5rem;
  color: var(--color-primary);
}

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

.cta-text--top {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
  max-width: 600px;
}

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

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

.values-title--top {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
}

.values-circles--top {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  align-items: stretch;
}

.values-circle--top {
  flex: 1 1 calc(25% - 1.5rem);
  min-width: 200px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2.5rem);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.values-circle--top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.values-circle-icon--top {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.values-circle-title--top {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

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

@media (max-width: 1024px) {
  .values-circle--top {
    flex: 1 1 calc(50% - 1.5rem);
  }
}

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

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

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

.statistics-title--top {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
}

.statistics-subtitle--top {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

.statistics-bars--top {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2.5rem);
}

.statistics-bar-item--top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.statistics-bar-header--top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.statistics-bar-percentage--top {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 700;
  color: var(--color-primary);
}

.statistics-bar-track--top {
  width: 100%;
  height: 8px;
  background: var(--color-bg-secondary);
  border-radius: 4px;
  overflow: hidden;
}

.statistics-bar-fill--top {
  height: 100%;
  background: var(--color-primary);
  border-radius: 4px;
  transition: width 0.6s ease;
}

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

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

.benefits-title--top {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
}

.benefits-accordion--top {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefits-item--top {
  border: 1px solid var(--color-border-light);
  border-top: none;
}

.benefits-item--top:first-child {
  border-top: 1px solid var(--color-border-light);
}

.benefits-summary--top {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-tertiary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.3s ease;
}

.benefits-summary--top:hover {
  background: var(--color-bg-primary);
}

.benefits-summary-text--top {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.benefits-summary-icon--top {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 300;
}

.benefits-item--top[open] .benefits-summary--top {
  background: var(--color-bg-primary);
}

.benefits-item--top[open] .benefits-summary-icon--top {
  transform: rotate(45deg);
}

.benefits-details--top {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-card);
}

.benefits-details-text--top {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

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

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

.testimonials-title--top {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
}

.testimonials-layout--top {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

.testimonials-main--top {
  flex: 1 1 60%;
}

.testimonials-main-quote--top {
  background: var(--color-bg-card);
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-primary);
}

.testimonials-main-text--top {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
  line-height: 1.8;
  font-style: italic;
}

.testimonials-main-author--top {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonials-author-name--top {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.testimonials-author-role--top {
  font-size: clamp(0.75rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-muted);
}

.testimonials-side--top {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonials-side-quote--top {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--color-secondary);
}

.testimonials-side-text--top {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

.testimonials-side-author--top {
  font-size: clamp(0.75rem, 0.9vw + 0.4rem, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .testimonials-layout--top {
    flex-direction: column;
  }

  .testimonials-main--top {
    flex: 1 1 100%;
  }

  .testimonials-side--top {
    flex: 1 1 100%;
  }
}

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

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

.featured-posts-title--top {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
}

.featured-posts-subtitle--top {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

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

.featured-post-card--top {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.featured-post-image--top {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.featured-post-image--top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.featured-post-body--top {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.featured-post-title--top {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.featured-post-description--top {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.featured-post-link--top {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  transition: color 0.3s ease;
}

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

.featured-posts-cta--top {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

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

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

.cookie-banner-text {
  color: #f1f5f9;
  margin: 0;
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
  flex: 1 1 auto;
  min-width: 250px;
  line-height: 1.5;
}

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

.cookie-btn-accept {
  padding: 0.5rem 1.25rem;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
  transition: background 0.3s ease;
}

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

.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
  transition: all 0.3s ease;
}

.cookie-btn-decline:hover {
  border-color: #f1f5f9;
  color: #ffffff;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 1rem;
  }

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

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

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

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

  .btn {
    width: 100%;
  }

  .values-circles--top {
    flex-direction: column;
  }

  .values-circle--top {
    flex: 1 1 100%;
  }

  .features-large-card--top {
    flex: 1 1 100%;
  }
}

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

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

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

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

.footer-about p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 45ch;
}

.footer h3 {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-family: var(--font-heading);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.footer a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: color var(--transition-base);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-contact p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  margin: 0.5rem 0;
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.95rem);
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .footer-about {
    flex: 1 1 280px;
    min-width: 250px;
  }

  .footer-nav,
  .footer-contact,
  .footer-legal {
    flex: 1 1 200px;
    min-width: 180px;
  }

  .footer-copyright {
    flex: 1 1 100%;
  }

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

@media (min-width: 1024px) {
  .footer-about {
    flex: 1 1 300px;
  }

  .footer-nav,
  .footer-contact,
  .footer-legal {
    flex: 0 1 auto;
  }
}
    

.category-page-emotional-intelligence-netherlands {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.hero-section-emotional-intelligence-netherlands {
  background: linear-gradient(135deg, #e85d04 0%, #f97316 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
  color: #ffffff;
}

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

.hero-content-emotional-intelligence-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.hero-text-wrapper-emotional-intelligence-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-title-emotional-intelligence-netherlands {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-emotional-intelligence-netherlands {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-stats-emotional-intelligence-netherlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 1rem;
}

.stat-block-emotional-intelligence-netherlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-emotional-intelligence-netherlands {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.stat-label-emotional-intelligence-netherlands {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.posts-section-emotional-intelligence-netherlands {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-emotional-intelligence-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.posts-header-emotional-intelligence-netherlands {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.posts-title-emotional-intelligence-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-emotional-intelligence-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.card-emotional-intelligence-netherlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  overflow: hidden;
}

.card-emotional-intelligence-netherlands:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-large-emotional-intelligence-netherlands {
  flex: 1 1 100%;
  max-width: 500px;
}

.card-medium-emotional-intelligence-netherlands {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 280px;
  max-width: 380px;
}

.card-small-emotional-intelligence-netherlands {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 260px;
  max-width: 320px;
}

.card-image-emotional-intelligence-netherlands {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.card-body-emotional-intelligence-netherlands {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.card-title-emotional-intelligence-netherlands {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-emotional-intelligence-netherlands {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-emotional-intelligence-netherlands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  color: var(--color-text-muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border-light);
}

.card-reading-time-emotional-intelligence-netherlands,
.card-level-emotional-intelligence-netherlands,
.card-date-emotional-intelligence-netherlands {
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  align-items: center;
  color: var(--color-text-muted);
}

.card-reading-time-emotional-intelligence-netherlands i,
.card-level-emotional-intelligence-netherlands i,
.card-date-emotional-intelligence-netherlands i {
  color: var(--color-primary);
  font-size: 0.9em;
}

.card-link-emotional-intelligence-netherlands {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  text-decoration: none;
  transition: all var(--transition-base);
  margin-top: 0.5rem;
}

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

@media (max-width: 767px) {
  .card-large-emotional-intelligence-netherlands,
  .card-medium-emotional-intelligence-netherlands,
  .card-small-emotional-intelligence-netherlands {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .posts-grid-emotional-intelligence-netherlands {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats-emotional-intelligence-netherlands {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .card-large-emotional-intelligence-netherlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .card-medium-emotional-intelligence-netherlands,
  .card-small-emotional-intelligence-netherlands {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: 100%;
    min-width: auto;
  }
}

@media (min-width: 1024px) {
  .card-large-emotional-intelligence-netherlands {
    flex: 1 1 100%;
  }

  .card-medium-emotional-intelligence-netherlands {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .card-small-emotional-intelligence-netherlands {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

.main-actief-luisteren-nederlandse-communicatie {
    width: 100%;
    overflow: hidden;
  }

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

  .hero-section-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-primary);
    padding: clamp(2rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

  .breadcrumbs-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(0.75rem, 1vw + 0.4rem, 0.95rem);
  }

  .breadcrumbs-actief-luisteren-nederlandse-communicatie a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .breadcrumbs-actief-luisteren-nederlandse-communicatie a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
  }

  .breadcrumbs-actief-luisteren-nederlandse-communicatie span {
    color: var(--color-text-muted);
  }

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

  .hero-text-block-actief-luisteren-nederlandse-communicatie {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-image-block-actief-luisteren-nederlandse-communicatie {
    flex: 1 1 50%;
    max-width: 50%;
  }

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

  .hero-subtitle-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-meta-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex-wrap: wrap;
  }

  .meta-item-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    color: var(--color-text-secondary);
  }

  .meta-item-actief-luisteren-nederlandse-communicatie i {
    color: var(--color-primary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  }

  .hero-image-actief-luisteren-nederlandse-communicatie {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  @media (max-width: 768px) {
    .hero-content-actief-luisteren-nederlandse-communicatie {
      flex-direction: column;
    }

    .hero-text-block-actief-luisteren-nederlandse-communicatie {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .hero-image-block-actief-luisteren-nederlandse-communicatie {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .author-sidebar-section-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .content-with-sidebar-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: flex-start;
  }

  .author-sidebar-actief-luisteren-nederlandse-communicatie {
    flex: 0 0 auto;
    width: 200px;
    position: sticky;
    top: 2rem;
  }

  .author-card-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-card);
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1.25rem);
  }

  .author-photo-actief-luisteren-nederlandse-communicatie {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
  }

  .author-name-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.4;
  }

  .author-name-actief-luisteren-nederlandse-communicatie a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .author-name-actief-luisteren-nederlandse-communicatie a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
  }

  .author-position-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
    color: var(--color-primary);
    font-weight: 600;
    margin: 0;
  }

  .author-bio-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
  }

  .article-body-actief-luisteren-nederlandse-communicatie {
    flex: 1 1 auto;
    min-width: 0;
  }

  .intro-section-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-primary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

  .intro-content-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
  }

  .intro-text-actief-luisteren-nederlandse-communicatie {
    flex: 1 1 55%;
    max-width: 55%;
  }

  .intro-highlight-actief-luisteren-nederlandse-communicatie {
    flex: 1 1 45%;
    max-width: 45%;
  }

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

  .intro-paragraph-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .intro-paragraph-actief-luisteren-nederlandse-communicatie:last-child {
    margin-bottom: 0;
  }

  .highlight-box-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-tertiary);
    border-left: 4px solid var(--color-primary);
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: flex-start;
  }

  .highlight-box-actief-luisteren-nederlandse-communicatie i {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  .highlight-text-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.05rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  .highlight-text-actief-luisteren-nederlandse-communicatie strong {
    color: var(--color-text-primary);
  }

  @media (max-width: 768px) {
    .intro-content-actief-luisteren-nederlandse-communicatie {
      flex-direction: column;
    }

    .intro-text-actief-luisteren-nederlandse-communicatie {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .intro-highlight-actief-luisteren-nederlandse-communicatie {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .author-sidebar-actief-luisteren-nederlandse-communicatie {
      width: 100%;
      position: static;
    }

    .content-with-sidebar-actief-luisteren-nederlandse-communicatie {
      flex-direction: column;
    }
  }

  .content-one-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-secondary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

  .content-wrapper-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .content-text-block-actief-luisteren-nederlandse-communicatie {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .content-image-block-actief-luisteren-nederlandse-communicatie {
    flex: 1 1 50%;
    max-width: 50%;
  }

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

  .content-paragraph-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .content-image-actief-luisteren-nederlandse-communicatie {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  .levels-list-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }

  .level-item-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: flex-start;
  }

  .level-number-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
    line-height: 1;
    margin: 0;
  }

  .level-content-actief-luisteren-nederlandse-communicatie {
    flex: 1;
  }

  .level-title-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem 0;
  }

  .level-text-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.05rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  .disclaimer-section-before-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-tertiary);
    padding: clamp(2rem, 5vw, 3.5rem) 0;
    overflow: hidden;
  }

  .disclaimer-content-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .disclaimer-box-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-card);
    border-left: 4px solid var(--color-warning);
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: flex-start;
  }

  .disclaimer-box-actief-luisteren-nederlandse-communicatie i {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: var(--color-warning);
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  .disclaimer-text-actief-luisteren-nederlandse-communicatie {
    flex: 1;
  }

  .disclaimer-text-actief-luisteren-nederlandse-communicatie p {
    font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.05rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  .disclaimer-text-actief-luisteren-nederlandse-communicatie strong {
    color: var(--color-text-primary);
  }

  .content-two-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-primary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

  .techniques-list-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }

  .technique-item-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-tertiary);
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--radius-md);
  }

  .technique-title-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem 0;
  }

  .technique-text-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.05rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  .content-three-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-secondary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

  .obstacles-section-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-tertiary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    overflow: hidden;
  }

  .obstacles-content-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .obstacles-title-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .obstacles-intro-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
  }

  .barriers-grid-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
  }

  .barrier-card-actief-luisteren-nederlandse-communicatie {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
    min-width: 250px;
    background: var(--color-bg-card);
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }

  .barrier-title-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
  }

  .barrier-text-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.05rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 768px) {
    .content-wrapper-actief-luisteren-nederlandse-communicatie {
      flex-direction: column;
    }

    .content-text-block-actief-luisteren-nederlandse-communicatie {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .content-image-block-actief-luisteren-nederlandse-communicatie {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .barrier-card-actief-luisteren-nederlandse-communicatie {
      flex: 1 1 100%;
    }
  }

  .conclusion-section-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .conclusion-content-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2vw, 2rem);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .conclusion-title-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .conclusion-paragraph-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.15rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
  }

  .related-posts-section-actief-luisteren-nederlandse-communicatie {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .related-content-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .related-title-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin: 0;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-grid-actief-luisteren-nederlandse-communicatie {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    justify-content: center;
  }

  .related-card-actief-luisteren-nederlandse-communicatie {
    flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.667rem));
    min-width: 280px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .related-card-actief-luisteren-nederlandse-communicatie:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .related-image-actief-luisteren-nederlandse-communicatie {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .related-image-actief-luisteren-nederlandse-communicatie img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .related-body-actief-luisteren-nederlandse-communicatie {
    padding: clamp(1.25rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
  }

  .related-card-title-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.35rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.3;
  }

  .related-card-title-actief-luisteren-nederlandse-communicatie a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .related-card-title-actief-luisteren-nederlandse-communicatie a:hover {
    color: var(--color-primary);
  }

  .related-card-text-actief-luisteren-nederlandse-communicatie {
    font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.05rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 1024px) {
    .related-card-actief-luisteren-nederlandse-communicatie {
      flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1.25rem));
      min-width: 250px;
    }
  }

  @media (max-width: 768px) {
    .related-card-actief-luisteren-nederlandse-communicatie {
      flex: 1 1 100%;
      min-width: 100%;
    }
  }

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

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

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

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

.main-journaling-emotionele-zelfontdekking {
  background: var(--color-bg-primary);
}

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

.breadcrumbs-journaling-emotionele-zelfontdekking {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-journaling-emotionele-zelfontdekking a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-base);
}

.breadcrumbs-journaling-emotionele-zelfontdekking a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-journaling-emotionele-zelfontdekking span {
  color: var(--color-text-muted);
}

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

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

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

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

.hero-lead-journaling-emotionele-zelfontdekking {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-journaling-emotionele-zelfontdekking {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.meta-item-journaling-emotionele-zelfontdekking {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-text-muted);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
}

.meta-item-journaling-emotionele-zelfontdekking i {
  color: var(--color-accent);
}

.hero-image-journaling-emotionele-zelfontdekking {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .hero-content-journaling-emotionele-zelfontdekking {
    flex-direction: column;
  }
  
  .hero-text-block-journaling-emotionele-zelfontdekking,
  .hero-image-block-journaling-emotionele-zelfontdekking {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .hero-meta-journaling-emotionele-zelfontdekking {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

.author-sidebar-journaling-emotionele-zelfontdekking {
  position: sticky;
  top: clamp(1rem, 3vw, 2rem);
  width: 240px;
  float: left;
  margin-right: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  z-index: 10;
}

.author-card-journaling-emotionele-zelfontdekking {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.author-photo-journaling-emotionele-zelfontdekking {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: 3px solid var(--color-accent);
}

.author-name-journaling-emotionele-zelfontdekking {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 700;
  margin: 0;
}

.author-name-journaling-emotionele-zelfontdekking a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-base);
}

.author-name-journaling-emotionele-zelfontdekking a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.author-title-journaling-emotionele-zelfontdekking {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  margin: 0;
}

.author-bio-journaling-emotionele-zelfontdekking {
  color: var(--color-text-muted);
  font-size: clamp(0.8rem, 0.95vw, 0.875rem);
  line-height: var(--line-height-normal);
  margin: 0;
}

@media (max-width: 1024px) {
  .author-sidebar-journaling-emotionele-zelfontdekking {
    position: relative;
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }
}

.intro-section-journaling-emotionele-zelfontdekking {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-journaling-emotionele-zelfontdekking {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-journaling-emotionele-zelfontdekking {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-journaling-emotionele-zelfontdekking {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-element-journaling-emotionele-zelfontdekking {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

.disclaimer-section-journaling-emotionele-zelfontdekking {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-journaling-emotionele-zelfontdekking {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.disclaimer-icon-journaling-emotionele-zelfontdekking {
  font-size: 1.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-text-journaling-emotionele-zelfontdekking {
  flex: 1;
}

.disclaimer-title-journaling-emotionele-zelfontdekking {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.disclaimer-paragraph-journaling-emotionele-zelfontdekking {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: var(--line-height-normal);
  margin: 0;
}

.content-first-journaling-emotionele-zelfontdekking {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-wrapper-journaling-emotionele-zelfontdekking {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-block-journaling-emotionele-zelfontdekking {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-first-title-journaling-emotionele-zelfontdekking {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.content-first-paragraph-journaling-emotionele-zelfontdekking {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-box-journaling-emotionele-zelfontdekking {
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-secondary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.highlight-text-journaling-emotionele-zelfontdekking {
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: var(--line-height-normal);
  margin: 0;
}

.content-image-block-journaling-emotionele-zelfontdekking {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-element-journaling-emotionele-zelfontdekking {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

.content-second-journaling-emotionele-zelfontdekking {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-wrapper-second-journaling-emotionele-zelfontdekking {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-second-journaling-emotionele-zelfontdekking {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-second-journaling-emotionele-zelfontdekking {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-second-title-journaling-emotionele-zelfontdekking {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

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

.step-item-journaling-emotionele-zelfontdekking {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.step-number-journaling-emotionele-zelfontdekking {
  background: var(--color-accent);
  color: var(--color-bg-secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content-journaling-emotionele-zelfontdekking {
  flex: 1;
}

.step-title-journaling-emotionele-zelfontdekking {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 700;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.step-text-journaling-emotionele-zelfontdekking {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: var(--line-height-normal);
  margin: 0;
}

@media (max-width: 768px) {
  .content-wrapper-second-journaling-emotionele-zelfontdekking {
    flex-direction: column;
  }
  
  .content-image-second-journaling-emotionele-zelfontdekking,
  .content-text-second-journaling-emotionele-zelfontdekking {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial;
  }
}

.content-third-journaling-emotionele-zelfontdekking {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-wrapper-third-journaling-emotionele-zelfontdekking {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-third-journaling-emotionele-zelfontdekking {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-third-title-journaling-emotionele-zelfontdekking {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.content-third-paragraph-journaling-emotionele-zelfontdekking {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-image-third-journaling-emotionele-zelfontdekking {
  flex: 1 1 50%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .content-wrapper-third-journaling-emotionele-zelfontdekking {
    flex-direction: column;
  }
  
  .content-text-third-journaling-emotionele-zelfontdekking,
  .content-image-third-journaling-emotionele-zelfontdekking {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-journaling-emotionele-zelfontdekking {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-journaling-emotionele-zelfontdekking {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-journaling-emotionele-zelfontdekking {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.conclusion-text-journaling-emotionele-zelfontdekking {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: var(--line-height-relaxed);
}

.cta-link-journaling-emotionele-zelfontdekking {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-bg-secondary);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  transition: var(--transition-base);
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.cta-link-journaling-emotionele-zelfontdekking:hover {
  background: var(--color-accent-hover);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.related-title-journaling-emotionele-zelfontdekking {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: var(--line-height-tight);
  font-weight: 700;
  text-align: center;
}

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

.related-card-journaling-emotionele-zelfontdekking {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  flex: 0 1 calc(33.333% - 1.5rem);
  min-width: 280px;
}

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

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

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

.related-card-title-journaling-emotionele-zelfontdekking {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin: 0;
}

.related-card-description-journaling-emotionele-zelfontdekking {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: var(--line-height-normal);
  margin: 0;
  flex: 1;
}

.related-card-link-journaling-emotionele-zelfontdekking {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: var(--transition-base);
  align-self: flex-start;
}

.related-card-link-journaling-emotionele-zelfontdekking:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-journaling-emotionele-zelfontdekking {
    flex: 0 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-journaling-emotionele-zelfontdekking {
    flex: 0 1 100%;
  }
  
  .related-cards-journaling-emotionele-zelfontdekking {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

.main-stressmanagement-professionele-omgeving {
  width: 100%;
  margin: 0 auto;
}

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

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

.breadcrumbs-stressmanagement-professionele-omgeving {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.breadcrumbs-stressmanagement-professionele-omgeving a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-stressmanagement-professionele-omgeving a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.hero-wrapper-stressmanagement-professionele-omgeving {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

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

.hero-text-block-stressmanagement-professionele-omgeving {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-stressmanagement-professionele-omgeving {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-stressmanagement-professionele-omgeving {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-meta-stressmanagement-professionele-omgeving {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 2px solid var(--color-border-light);
}

.meta-item-stressmanagement-professionele-omgeving {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
}

.meta-item-stressmanagement-professionele-omgeving i {
  color: var(--color-primary);
}

.hero-img-stressmanagement-professionele-omgeving {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .hero-content-stressmanagement-professionele-omgeving {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .hero-text-block-stressmanagement-professionele-omgeving,
  .hero-image-block-stressmanagement-professionele-omgeving {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-stressmanagement-professionele-omgeving {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.author-sidebar-section-stressmanagement-professionele-omgeving {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.content-with-author-stressmanagement-professionele-omgeving {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
}

.author-sticky-stressmanagement-professionele-omgeving {
  flex: 0 0 250px;
  position: sticky;
  top: 2rem;
}

.author-card-stressmanagement-professionele-omgeving {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.author-photo-stressmanagement-professionele-omgeving {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  display: block;
}

.author-name-stressmanagement-professionele-omgeving {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.author-name-stressmanagement-professionele-omgeving a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-name-stressmanagement-professionele-omgeving a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.author-title-stressmanagement-professionele-omgeving {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.author-bio-stressmanagement-professionele-omgeving {
  font-size: clamp(0.8rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.article-content-stressmanagement-professionele-omgeving {
  flex: 1 1 100%;
}

@media (max-width: 1024px) {
  .content-with-author-stressmanagement-professionele-omgeving {
    flex-direction: column;
  }

  .author-sticky-stressmanagement-professionele-omgeving {
    flex: 1 1 100%;
    position: static;
  }

  .author-card-stressmanagement-professionele-omgeving {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
  }

  .author-photo-stressmanagement-professionele-omgeving {
    margin: 0;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .author-card-stressmanagement-professionele-omgeving {
    flex-direction: column;
    text-align: center;
  }

  .author-photo-stressmanagement-professionele-omgeving {
    margin: 0 auto 1rem;
  }
}

.intro-section-stressmanagement-professionele-omgeving {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

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

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

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

.intro-title-stressmanagement-professionele-omgeving {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-stressmanagement-professionele-omgeving {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-stressmanagement-professionele-omgeving {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .intro-content-stressmanagement-professionele-omgeving {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

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

.highlight-section-stressmanagement-professionele-omgeving {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.highlight-wrapper-stressmanagement-professionele-omgeving {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.highlight-title-stressmanagement-professionele-omgeving {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.highlight-boxes-stressmanagement-professionele-omgeving {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.highlight-box-stressmanagement-professionele-omgeving {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 100%;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-number-stressmanagement-professionele-omgeving {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.highlight-box-title-stressmanagement-professionele-omgeving {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.highlight-conclusion-stressmanagement-professionele-omgeving {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  line-height: 1.7;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 2px solid var(--color-border-light);
}

@media (max-width: 768px) {
  .highlight-box-stressmanagement-professionele-omgeving {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.techniques-section-stressmanagement-professionele-omgeving {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

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

.techniques-text-stressmanagement-professionele-omgeving {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-stressmanagement-professionele-omgeving {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-stressmanagement-professionele-omgeving {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-intro-stressmanagement-professionele-omgeving {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.techniques-subheading-stressmanagement-professionele-omgeving {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-description-stressmanagement-professionele-omgeving {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.techniques-img-stressmanagement-professionele-omgeving {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .techniques-wrapper-stressmanagement-professionele-omgeving {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .techniques-text-stressmanagement-professionele-omgeving,
  .techniques-image-stressmanagement-professionele-omgeving {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-stressmanagement-professionele-omgeving {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

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

.disclaimer-title-stressmanagement-professionele-omgeving {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-stressmanagement-professionele-omgeving {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-secondary);
  border-radius: clamp(0.5rem, 1vw, 0.75rem);
}

.integration-section-stressmanagement-professionele-omgeving {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

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

.integration-image-stressmanagement-professionele-omgeving {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.integration-text-stressmanagement-professionele-omgeving {
  flex: 1 1 50%;
  max-width: 50%;
}

.integration-img-stressmanagement-professionele-omgeving {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.integration-title-stressmanagement-professionele-omgeving {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.integration-paragraph-stressmanagement-professionele-omgeving {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .integration-wrapper-stressmanagement-professionele-omgeving {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .integration-image-stressmanagement-professionele-omgeving,
  .integration-text-stressmanagement-professionele-omgeving {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }
}

.cta-section-stressmanagement-professionele-omgeving {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.cta-wrapper-stressmanagement-professionele-omgeving {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.cta-title-stressmanagement-professionele-omgeving {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-stressmanagement-professionele-omgeving {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.cta-button-stressmanagement-professionele-omgeving {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: clamp(0.5rem, 1vw, 0.75rem);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.15);
}

.cta-button-stressmanagement-professionele-omgeving:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 93, 4, 0.25);
  text-decoration: none;
}

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

.related-wrapper-stressmanagement-professionele-omgeving {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-stressmanagement-professionele-omgeving {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-grid-stressmanagement-professionele-omgeving {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-stressmanagement-professionele-omgeving {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 100%;
  background: var(--color-bg-card);
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-stressmanagement-professionele-omgeving:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.related-image-stressmanagement-professionele-omgeving {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.related-img-stressmanagement-professionele-omgeving {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-stressmanagement-professionele-omgeving:hover .related-img-stressmanagement-professionele-omgeving {
  transform: scale(1.05);
}

.related-content-stressmanagement-professionele-omgeving {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-stressmanagement-professionele-omgeving {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.related-card-title-stressmanagement-professionele-omgeving a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-card-title-stressmanagement-professionele-omgeving a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.related-card-text-stressmanagement-professionele-omgeving {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .related-card-stressmanagement-professionele-omgeving {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 240px;
  }
}

@media (max-width: 768px) {
  .related-card-stressmanagement-professionele-omgeving {
    flex: 1 1 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero-meta-stressmanagement-professionele-omgeving {
    flex-direction: column;
    gap: 0.5rem;
  }

  .breadcrumbs-stressmanagement-professionele-omgeving {
    font-size: 0.75rem;
    gap: 0.25rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

p, li, span, cite {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.breadcrumbs-zelfreflectie-patroonherkenning {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

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

.breadcrumbs-zelfreflectie-patroonherkenning a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-zelfreflectie-patroonherkenning span {
  color: var(--color-text-muted);
}

.hero-wrapper-zelfreflectie-patroonherkenning {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

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

.hero-text-block-zelfreflectie-patroonherkenning {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-zelfreflectie-patroonherkenning {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-meta-zelfreflectie-patroonherkenning {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.meta-item-zelfreflectie-patroonherkenning {
  color: var(--color-text-secondary);
}

.meta-divider-zelfreflectie-patroonherkenning {
  color: var(--color-text-muted);
}

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

.hero-lead-zelfreflectie-patroonherkenning {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.hero-image-zelfreflectie-patroonherkenning {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

  .hero-text-block-zelfreflectie-patroonherkenning,
  .hero-image-block-zelfreflectie-patroonherkenning {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-zelfreflectie-patroonherkenning {
    max-height: 300px;
  }
}

.author-sidebar-section-zelfreflectie-patroonherkenning {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.author-sticky-zelfreflectie-patroonherkenning {
  position: sticky;
  top: 2rem;
  margin-left: clamp(1rem, 4vw, 2rem);
  width: clamp(200px, 22vw, 280px);
}

.author-card-zelfreflectie-patroonherkenning {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.author-photo-zelfreflectie-patroonherkenning {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border: 2px solid var(--color-primary);
}

.author-name-zelfreflectie-patroonherkenning {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin: 0.5rem 0 0;
}

.author-name-zelfreflectie-patroonherkenning a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

.author-name-zelfreflectie-patroonherkenning a:hover {
  color: var(--color-primary);
}

.author-position-zelfreflectie-patroonherkenning {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  color: var(--color-primary);
  font-weight: 600;
}

.author-bio-zelfreflectie-patroonherkenning {
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .author-sidebar-section-zelfreflectie-patroonherkenning {
    display: none;
  }
}

.intro-section-zelfreflectie-patroonherkenning {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-block-zelfreflectie-patroonherkenning {
  max-width: 100%;
}

.intro-title-zelfreflectie-patroonherkenning {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.intro-text-zelfreflectie-patroonherkenning {
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-highlight-zelfreflectie-patroonherkenning {
  display: flex;
  flex-direction: column;
}

.highlight-box-zelfreflectie-patroonherkenning {
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.08) 0%, rgba(232, 93, 4, 0.04) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.highlight-title-zelfreflectie-patroonherkenning {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.highlight-text-zelfreflectie-patroonherkenning {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

.content-one-text-zelfreflectie-patroonherkenning {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-zelfreflectie-patroonherkenning {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-zelfreflectie-patroonherkenning {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.content-one-text-zelfreflectie-patroonherkenning {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.steps-list-zelfreflectie-patroonherkenning {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.step-item-zelfreflectie-patroonherkenning {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.step-number-zelfreflectie-patroonherkenning {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.step-content-zelfreflectie-patroonherkenning {
  flex: 1;
  padding-top: 0.25rem;
}

.step-title-zelfreflectie-patroonherkenning {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-text-zelfreflectie-patroonherkenning {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.content-one-image-img-zelfreflectie-patroonherkenning {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

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

  .content-one-image-img-zelfreflectie-patroonherkenning {
    max-height: 300px;
  }
}

.content-two-zelfreflectie-patroonherkenning {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-two-image-zelfreflectie-patroonherkenning {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-two-text-zelfreflectie-patroonherkenning {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-zelfreflectie-patroonherkenning {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.content-two-text-zelfreflectie-patroonherkenning {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.technique-cards-zelfreflectie-patroonherkenning {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.technique-card-zelfreflectie-patroonherkenning {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  transition: var(--transition-base);
}

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

.technique-title-zelfreflectie-patroonherkenning {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.technique-text-zelfreflectie-patroonherkenning {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.content-two-image-img-zelfreflectie-patroonherkenning {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

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

  .content-two-image-zelfreflectie-patroonherkenning {
    order: 0;
  }

  .content-two-image-img-zelfreflectie-patroonherkenning {
    max-height: 300px;
  }
}

.content-three-zelfreflectie-patroonherkenning {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-three-text-zelfreflectie-patroonherkenning {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-image-zelfreflectie-patroonherkenning {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-zelfreflectie-patroonherkenning {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.content-three-text-zelfreflectie-patroonherkenning {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

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

.pattern-item-zelfreflectie-patroonherkenning {
  padding-left: clamp(1.25rem, 2vw, 1.75rem);
  border-left: 3px solid var(--color-primary);
}

.pattern-name-zelfreflectie-patroonherkenning {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.pattern-description-zelfreflectie-patroonherkenning {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.content-three-image-img-zelfreflectie-patroonherkenning {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

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

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

  .content-three-image-img-zelfreflectie-patroonherkenning {
    max-height: 300px;
  }
}

.disclaimer-section-zelfreflectie-patroonherkenning {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.disclaimer-content-zelfreflectie-patroonherkenning {
  max-width: 100%;
}

.disclaimer-title-zelfreflectie-patroonherkenning {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 600;
}

.disclaimer-text-zelfreflectie-patroonherkenning {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

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

.conclusion-content-zelfreflectie-patroonherkenning {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 100%;
}

.conclusion-title-zelfreflectie-patroonherkenning {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  line-height: 1.3;
}

.conclusion-text-zelfreflectie-patroonherkenning {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.conclusion-cta-zelfreflectie-patroonherkenning {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-link-zelfreflectie-patroonherkenning {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  transition: var(--transition-base);
  width: fit-content;
}

.cta-link-zelfreflectie-patroonherkenning:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.related-section-zelfreflectie-patroonherkenning {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

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

.related-title-zelfreflectie-patroonherkenning {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
}

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

.related-card-zelfreflectie-patroonherkenning {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  max-width: 350px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

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

.related-card-title-zelfreflectie-patroonherkenning {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-title-zelfreflectie-patroonherkenning a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

.related-card-title-zelfreflectie-patroonherkenning a:hover {
  color: var(--color-primary);
}

.related-card-description-zelfreflectie-patroonherkenning {
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  padding: 0.75rem clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .related-card-zelfreflectie-patroonherkenning {
    flex: 1 1 calc(50% - 1rem);
    max-width: none;
  }
}

@media (max-width: 640px) {
  .related-card-zelfreflectie-patroonherkenning {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-zelfreflectie-patroonherkenning {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (max-width: 768px) {
  .steps-list-zelfreflectie-patroonherkenning {
    gap: 1rem;
  }

  .step-number-zelfreflectie-patroonherkenning {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .step-item-zelfreflectie-patroonherkenning {
    gap: 0.75rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

.eq-journey-about {
  background: var(--color-bg-primary);
}

.hero-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-light);
}

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

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

.hero-tag-about {
  display: inline-block;
  background: var(--color-bg-tertiary);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.3rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

.foundation-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.section-label-about {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.section-title-about {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-primary);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.foundation-grid-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.foundation-card-about {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.foundation-card-about:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

.card-icon-about {
  width: 50px;
  height: 50px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.card-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

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

.approach-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

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

.approach-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

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

.approach-text-about {
  flex: 1 1 100%;
}

.approach-visual-about {
  flex: 1 1 100%;
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.approach-list-about {
  list-style: none;
  margin-top: 1.5rem;
}

.approach-item-about {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
}

.approach-item-about:last-child {
  margin-bottom: 0;
}

.approach-check-about {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--color-bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: bold;
  margin-top: 2px;
}

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

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

.practice-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.practice-grid-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.practice-box-about {
  background: var(--color-bg-card);
  padding: clamp(2rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.practice-box-about:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.practice-number-about {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.practice-label-about {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.practice-description-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

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

.values-header-about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

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

.values-text-about {
  flex: 1 1 100%;
}

.values-visual-about {
  flex: 1 1 100%;
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.value-highlight-about {
  background: var(--color-bg-tertiary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  border-left: 4px solid var(--color-secondary);
}

.value-highlight-text-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-style: italic;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

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

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary);
  line-height: 1.4;
}

.disclaimer-text-about {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.intro-paragraph-about {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.intro-paragraph-about strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.cta-link-about {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  transition: var(--transition-base);
}

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

@media (min-width: 768px) {
  .approach-split-about {
    flex-direction: row;
    align-items: center;
  }

  .approach-text-about {
    flex: 1 1 45%;
  }

  .approach-visual-about {
    flex: 1 1 50%;
  }

  .values-split-about {
    flex-direction: row-reverse;
    align-items: center;
  }

  .values-text-about {
    flex: 1 1 45%;
  }

  .values-visual-about {
    flex: 1 1 50%;
  }

  .practice-grid-about {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .foundation-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .approach-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .practice-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .values-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .foundation-grid-about {
    grid-template-columns: repeat(3, 1fr);
  }

  .practice-grid-about {
    grid-template-columns: repeat(3, 1fr);
  }
}

.author-profile-marieke-van-den-berg {
  width: 100%;
}

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

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

.hero-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.hero-split-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.hero-image-wrapper-marieke-van-den-berg {
  flex: 1 1 40%;
  min-height: 300px;
  max-height: 500px;
}

.hero-photo-marieke-van-den-berg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero-credentials-marieke-van-den-berg {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.credentials-tag-marieke-van-den-berg {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-position-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.credentials-list-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.credential-item-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.credential-icon-marieke-van-den-berg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.5rem, 5vw, 3.5rem);
  height: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  flex-shrink: 0;
}

.credential-text-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.credential-label-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.credential-value-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  margin: 0;
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .hero-split-marieke-van-den-berg {
    flex-direction: column;
  }

  .hero-image-wrapper-marieke-van-den-berg {
    flex: 1 1 100%;
    max-height: 350px;
  }

  .hero-credentials-marieke-van-den-berg {
    flex: 1 1 100%;
  }
}

.expertise-section-marieke-van-den-berg {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expertise-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.expertise-header-marieke-van-den-berg {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.expertise-tag-marieke-van-den-berg {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.expertise-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.expertise-subtitle-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.expertise-grid-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.expertise-card-marieke-van-den-berg {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all var(--transition-base);
}

.expertise-card-marieke-van-den-berg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.expertise-card-icon-marieke-van-den-berg {
  width: clamp(3rem, 5vw, 4rem);
  height: clamp(3rem, 5vw, 4rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.expertise-card-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.expertise-card-text-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 1023px) {
  .expertise-card-marieke-van-den-berg {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 639px) {
  .expertise-card-marieke-van-den-berg {
    flex: 1 1 100%;
  }
}

.experience-section-marieke-van-den-berg {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.experience-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.experience-header-marieke-van-den-berg {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.experience-tag-marieke-van-den-berg {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.experience-subtitle-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.experience-timeline-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.timeline-item-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.timeline-marker-marieke-van-den-berg {
  flex-shrink: 0;
  width: clamp(4rem, 6vw, 5.5rem);
  height: clamp(4rem, 6vw, 5.5rem);
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

.timeline-content-marieke-van-den-berg {
  flex: 1;
  padding-top: clamp(0.5rem, 1vw, 0.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.timeline-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.timeline-text-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 639px) {
  .timeline-item-marieke-van-den-berg {
    flex-direction: column;
  }

  .timeline-marker-marieke-van-den-berg {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.1rem;
  }
}

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

.approach-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.approach-header-marieke-van-den-berg {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.approach-tag-marieke-van-den-berg {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.approach-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-subtitle-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-split-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.approach-text-marieke-van-den-berg {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.approach-paragraph-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.0625rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-stats-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.stat-item-marieke-van-den-berg {
  flex: 1 1 auto;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.stat-number-marieke-van-den-berg {
  color: var(--color-accent);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
}

.stat-label-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 500;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.approach-image-marieke-van-den-berg {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 450px;
}

.approach-img-marieke-van-den-berg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1023px) {
  .approach-split-marieke-van-den-berg {
    flex-direction: column;
  }

  .approach-text-marieke-van-den-berg {
    flex: 1 1 100%;
  }

  .approach-image-marieke-van-den-berg {
    flex: 1 1 100%;
  }
}

.publications-section-marieke-van-den-berg {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.publications-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.publications-header-marieke-van-den-berg {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.publications-tag-marieke-van-den-berg {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.publications-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.publications-subtitle-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.publications-list-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.publication-item-marieke-van-den-berg {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  transition: all var(--transition-base);
}

.publication-item-marieke-van-den-berg:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.publication-icon-marieke-van-den-berg {
  width: clamp(2.5rem, 4vw, 3.5rem);
  height: clamp(2.5rem, 4vw, 3.5rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.publication-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  margin: 0;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.publication-meta-marieke-van-den-berg {
  color: var(--color-text-muted);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  font-weight: 500;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.publication-description-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.publication-link-marieke-van-den-berg {
  color: var(--color-accent);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
}

.publication-link-marieke-van-den-berg:hover {
  color: var(--color-accent-hover);
  transform: translateX(4px);
}

.belief-section-marieke-van-den-berg {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.belief-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.belief-header-marieke-van-den-berg {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

.belief-tag-marieke-van-den-berg {
  color: var(--color-accent);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.belief-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.belief-quote-block-marieke-van-den-berg {
  background: var(--color-bg-card);
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: var(--shadow-sm);
}

.belief-quote-text-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-family: var(--font-heading);
  line-height: var(--line-height-relaxed);
  margin: 0;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.belief-quote-author-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 600;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.belief-description-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.0625rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-section-marieke-van-den-berg {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-box-marieke-van-den-berg {
  background: var(--color-bg-card);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.cta-title-marieke-van-den-berg {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-marieke-van-den-berg {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-buttons-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

.cta-btn-primary-marieke-van-den-berg,
.cta-btn-secondary-marieke-van-den-berg {
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.cta-btn-primary-marieke-van-den-berg {
  background: var(--color-accent);
  color: white;
}

.cta-btn-primary-marieke-van-den-berg:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.cta-btn-secondary-marieke-van-den-berg {
  background: var(--color-bg-tertiary);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.cta-btn-secondary-marieke-van-den-berg:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 639px) {
  .cta-buttons-marieke-van-den-berg {
    flex-direction: column;
  }

  .cta-btn-primary-marieke-van-den-berg,
  .cta-btn-secondary-marieke-van-den-berg {
    width: 100%;
    text-align: center;
  }
}

.services-page {
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-2xl) var(--spacing-md);
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-light);
}

.services-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

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

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-2xl) var(--spacing-md);
  overflow: hidden;
}

.services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  transition: background-color var(--transition-base);
}

.service-card:hover .service-card-icon {
  background-color: var(--color-primary);
}

.service-card-icon i {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.service-card:hover .service-card-icon i {
  color: var(--color-bg-primary);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-sm) 0;
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.service-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

.service-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border-light);
}

.service-detail {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  background-color: var(--color-bg-secondary);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
}

.services-description {
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  border: 1px solid var(--color-border-light);
}

.services-description-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.services-description-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-relaxed);
}

.services-description-text:last-child {
  margin-bottom: 0;
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-2xl) var(--spacing-md);
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
}

.services-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-sm) 0;
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-lg) 0;
  line-height: var(--line-height-relaxed);
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

@media (min-width: 768px) {
  .services-hero {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .services-content {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .services-cta {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 4rem var(--spacing-lg);
  }

  .services-content {
    padding: 4rem var(--spacing-lg);
  }

  .services-cta {
    padding: 4rem var(--spacing-lg);
  }

  .service-card {
    padding: var(--spacing-xl);
  }
}

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

.portfolio-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
  overflow: hidden;
}

.portfolio-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

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

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

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--spacing-2xl) var(--spacing-xl);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-xl) var(--spacing-md);
  overflow: hidden;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .portfolio-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }

  .portfolio-projects {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }

  .portfolio-projects {
    padding: var(--spacing-2xl) var(--spacing-xl);
  }
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

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

.portfolio-card-body {
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-meta {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  align-items: center;
  flex-wrap: wrap;
}

.portfolio-card--pool {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.portfolio-card-date {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

.portfolio-card-details {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border-light);
}

.portfolio-detail {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (min-width: 768px) {
  .portfolio-card-image {
    height: 280px;
  }

  .portfolio-card-body {
    padding: var(--spacing-xl);
  }
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-xl) var(--spacing-md);
  overflow: hidden;
}

.portfolio-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-lg) 0;
  line-height: var(--line-height-relaxed);
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
}

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

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

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--spacing-2xl) var(--spacing-xl);
  }
}

.emotional-growth-legal {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.emotional-growth-legal .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.emotional-growth-legal .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-2xl) 0;
}

.emotional-growth-legal h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-tight);
}

.emotional-growth-legal .last-updated {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-2xl);
  font-style: italic;
}

.emotional-growth-legal h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-tight);
}

.emotional-growth-legal p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-md);
}

.emotional-growth-legal ul {
  margin: var(--spacing-md) 0 var(--spacing-md) var(--spacing-lg);
  list-style: disc;
}

.emotional-growth-legal li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-sm);
}

.emotional-growth-legal .section {
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.emotional-growth-legal .section:last-child {
  border-bottom: none;
}

.emotional-growth-legal .contact-section {
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
}

.emotional-growth-legal .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary);
}

.emotional-growth-legal .contact-section p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-primary);
}

.emotional-growth-legal strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .emotional-growth-legal .content {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .emotional-growth-legal .container {
    padding: 0 var(--spacing-xl);
  }

  .emotional-growth-legal .content {
    padding: var(--spacing-2xl) var(--spacing-xl);
  }
}

main.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg) 0;
}

.thank-you-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.thank-you-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.success-icon {
  margin-bottom: var(--spacing-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  color: var(--color-success);
  width: 80px;
  height: 80px;
  animation: scaleIn var(--transition-slow) ease-out forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-you-wrapper h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-lg) 0;
  line-height: var(--line-height-tight);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.lead-text {
  font-family: var(--font-primary);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-lg) 0;
  line-height: var(--line-height-relaxed);
  font-weight: 600;
}

.description-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-relaxed);
}

.next-steps-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-2xl) 0;
  line-height: var(--line-height-relaxed);
}

.btn-home {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  margin-top: var(--spacing-md);
}

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

.btn-home:active {
  transform: translateY(0);
}

@media (min-width: 480px) {
  .thank-you-wrapper {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }
}

@media (min-width: 768px) {
  main.thank-you-page {
    padding: var(--spacing-2xl) 0;
  }

  .thank-you-wrapper {
    padding: var(--spacing-2xl);
  }

  .success-icon svg {
    width: 100px;
    height: 100px;
  }

  .thank-you-wrapper h1 {
    margin-bottom: var(--spacing-xl);
  }

  .btn-home {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--spacing-xl);
  }

  .thank-you-wrapper {
    padding: 4rem var(--spacing-2xl);
  }
}

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

main.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-md);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--spacing-xl);
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.error-code-container {
  position: relative;
  display: inline-block;
}

.error-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
  display: block;
  letter-spacing: -0.05em;
  animation: float 3s ease-in-out infinite;
}

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

.error-icon {
  width: clamp(80px, 20vw, 140px);
  height: clamp(80px, 20vw, 140px);
  margin: var(--spacing-md) auto 0;
  color: var(--color-primary);
  opacity: 0.8;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
}

.error-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.error-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.error-content h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin: var(--spacing-sm) 0;
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
  padding: var(--spacing-md) 0;
}

.error-actions {
  margin: var(--spacing-lg) 0 var(--spacing-xl);
}

.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-family: var(--font-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

.error-hints {
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.error-hint-title {
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
}

.error-hint-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.error-hint-list li {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  padding-left: var(--spacing-lg);
  position: relative;
  line-height: var(--line-height-normal);
}

.error-hint-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

@media (min-width: 480px) {
  .error-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .error-wrapper {
    gap: var(--spacing-2xl);
  }

  .error-content {
    gap: var(--spacing-lg);
  }

  .error-code {
    animation: float 3.5s ease-in-out infinite;
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--spacing-2xl) var(--spacing-xl);
    min-height: 100vh;
  }

  .error-wrapper {
    gap: var(--spacing-2xl);
  }

  .error-visual {
    margin-bottom: var(--spacing-2xl);
  }

  .error-code-container {
    margin-bottom: var(--spacing-lg);
  }

  .error-content h1 {
    margin-top: var(--spacing-md);
  }

  .error-actions {
    margin: var(--spacing-2xl) 0;
  }

  .error-hints {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 0 var(--spacing-xl);
  }

  .error-wrapper {
    gap: var(--spacing-2xl);
  }

  .error-visual {
    margin-bottom: var(--spacing-2xl);
  }

  .error-description {
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  }

  .btn {
    padding: calc(var(--spacing-sm) + 0.25rem) calc(var(--spacing-lg) + 0.5rem);
  }

  .error-hint-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
  }

  .error-hint-list li {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }

  .error-icon {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

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

.contact-connect-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-connect-hero-content {
  text-align: center;
  padding: 0 var(--spacing-md);
}

.contact-connect-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
}

.contact-connect-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .contact-connect-hero {
    padding: 4.5rem 0;
  }
}

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

.contact-connect-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-connect-main-content {
  padding: 0 var(--spacing-md);
}

.contact-connect-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  width: 100%;
}

.contact-connect-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-connect-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-connect-main {
    padding: 4rem 0;
  }

  .contact-connect-form-wrapper {
    flex: 1 1 45%;
    min-width: 350px;
  }

  .contact-connect-info-wrapper {
    flex: 1 1 45%;
    min-width: 350px;
  }
}

@media (min-width: 1024px) {
  .contact-connect-main {
    padding: 5rem 0;
  }

  .contact-connect-grid {
    gap: 3.5rem;
  }
}

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

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

.contact-connect-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-connect-input,
.contact-connect-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

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

.contact-connect-input:focus,
.contact-connect-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.contact-connect-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-connect-privacy-notice {
  background-color: var(--color-bg-tertiary);
  border-left: 3px solid var(--color-primary);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin: 0.5rem 0 0 0;
}

.contact-connect-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-connect-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

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

.contact-connect-submit {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  margin-top: 0.5rem;
}

.contact-connect-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

.contact-connect-info-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
}

.contact-connect-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1.75rem 0;
  line-height: var(--line-height-tight);
}

.contact-connect-info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

.contact-connect-info-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.contact-connect-info-details {
  flex: 1;
  min-width: 0;
}

.contact-connect-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.25rem 0;
}

.contact-connect-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-connect-values-card {
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
}

.contact-connect-values-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
  line-height: var(--line-height-tight);
}

.contact-connect-values-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-connect-values-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  color: var(--color-text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: var(--line-height-normal);
}

.contact-connect-checkmark {
  flex-shrink: 0;
  color: var(--color-success);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: -0.125rem;
}

.contact-connect-cta {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-connect-cta-content {
  text-align: center;
  padding: 0 var(--spacing-md);
}

.contact-connect-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
}

.contact-connect-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-lg) 0;
  line-height: var(--line-height-relaxed);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-connect-cta-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  transition: background-color var(--transition-base), transform var(--transition-fast);
}

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

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

@media (min-width: 768px) {
  .contact-connect-cta {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .contact-connect-cta {
    padding: 5rem 0;
  }
}
.header-growth-compass-hamburger,.header-growth-compass-mobile-close,.header-growth-compass-mobile-toggle{
  width: 34px;
}

.header-growth-compass-desktop-nav{
  justify-content: flex-end;
}

.portfolio-card{
  display: flex;
  flex-direction: column !important;
}

.portfolio-card__content{
  width: 100% !important;
}

.portfolio-card-content{
  width: 100% !important;
}

.hero-title-index{
  word-break: break-all;
}

.services-cards,.services-cards-container,.services-grid,.services-container{
  display: flex;
  flex-direction: column;
}

.content{
  display: block;
}

.container{
  display: block !important;
}

html{
  scroll-padding-top: 80px;
}

img{
  max-width: 100%;
  height: auto;
}

input,textarea,select{
  max-width: 100%;
  box-sizing: border-box;
}

#cookieBanner{
  max-width: 100%;
  box-sizing: border-box;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

.card img,.portfolio-card img,[class*="-card"] img{
  flex-shrink: 0;
  align-self: flex-start;
  max-width: 100%;
  height: auto;
}

.header-growth-compass-mobile-menu{
  padding-top: max(env(safe-area-inset-top), 0px);
}
@media (max-width: 480px){
  .header-growth-compass-mobile-menu{
    max-width: 100%;
  }
}

.header-growth-compass-mobile-toggle[aria-expanded="true"]{
  display: none;
}

@media (max-width: 768px) {
  .featured-post-image--top {
    aspect-ratio: 6 / 9;
  }
  .card-image-emotional-intelligence-netherlands {
    aspect-ratio: 6 / 9;
  }
}
