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

:root {
  --color-bg-primary: #f0fdfa;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #ccfbf1;
  --color-bg-card: #ffffff;

  --color-text-primary: #134e4a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;

  --color-primary: #0891b2;
  --color-primary-hover: #0e7490;
  --color-primary-light: #a5f3fc;
  --color-secondary: #06b6d4;
  --color-secondary-light: #cffafe;

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

  --color-border: #e0f2fe;
  --color-border-light: #f0f9ff;

  --font-primary: 'DM Sans', sans-serif;
  --font-heading: 'Poppins', sans-serif;

  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;

  --radius-xs: 0.25rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

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

  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;

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

* {
  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);
  font-weight: 600;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.875rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  font-weight: 500;
}

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

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

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

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

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

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

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

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  box-shadow: none;
}

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

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

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

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border-light);
}

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

.card-compact {
  padding: var(--spacing-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

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

.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-center {
  text-align: center;
}

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

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

.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); }
.mt-3xl { margin-top: var(--spacing-3xl); }

.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); }
.mb-3xl { margin-bottom: var(--spacing-3xl); }

.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); }
.my-3xl { margin-top: var(--spacing-3xl); margin-bottom: var(--spacing-3xl); }

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

.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); }
.py-3xl { padding-top: var(--spacing-3xl); padding-bottom: var(--spacing-3xl); }

.flex {
  display: flex;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

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

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

.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); }
.gap-2xl { gap: var(--spacing-2xl); }

.grid {
  display: grid;
}

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

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

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

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

.hidden {
  display: none;
}

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

.input, .textarea, .select {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-bg-secondary);
  transition: all var(--transition-base);
}

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

.input:disabled, .textarea:disabled, .select:disabled {
  background: var(--color-bg-tertiary);
  color: var(--color-text-muted);
  cursor: not-allowed;
}

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

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

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

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

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

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

  .btn {
    width: 100%;
  }

  .card {
    padding: var(--spacing-lg);
  }
}
.header-floreer-wellness {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  position: static;
  z-index: 100;
}

.header-floreer-wellness-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: 70px;
  gap: clamp(1rem, 2vw, 2rem);
}

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

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

.header-floreer-wellness-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
  letter-spacing: -0.5px;
}

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

.header-floreer-wellness-desktop-nav {
  display: none;
  flex-direction: row;
  gap: clamp(0.5rem, 1vw, 1.5rem);
  align-items: center;
  flex: 1;
  margin: 0 clamp(1rem, 2vw, 2rem);
}

.header-floreer-wellness-nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.header-floreer-wellness-nav-link:hover {
  color: var(--color-primary);
}

.header-floreer-wellness-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-floreer-wellness-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-floreer-wellness-hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.header-floreer-wellness-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  padding-top: 70px;
}

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

.header-floreer-wellness-mobile-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.5rem);
  border-bottom: 1px solid var(--color-border-light);
}

.header-floreer-wellness-mobile-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

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

.header-floreer-wellness-mobile-close:hover {
  color: var(--color-primary);
}

.header-floreer-wellness-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  padding: clamp(1rem, 3vw, 1.5rem) 0;
  overflow-y: auto;
}

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

.header-floreer-wellness-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 4vw, 2rem);
}

.header-floreer-wellness-mobile-cta {
  padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 3vw, 1.5rem);
  background: var(--color-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  margin: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.header-floreer-wellness-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .header-floreer-wellness-container {
    height: 80px;
  }

  .header-floreer-wellness-desktop-nav {
    display: flex;
  }

  .header-floreer-wellness-cta-button {
    display: inline-block;
  }

  .header-floreer-wellness-mobile-toggle {
    display: none;
  }

  .header-floreer-wellness-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-floreer-wellness-container {
    height: 85px;
  }

  .header-floreer-wellness-nav-link {
    font-size: 1rem;
  }

  .header-floreer-wellness-cta-button {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
  }
}

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

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

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

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

.ga-hero-text-block {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.ga-hero-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--line-height-tight);
}

.ga-hero-subtitle {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.2rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ga-hero-cta-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 2.5vw, 2rem);
  border-radius: var(--radius-md);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

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

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

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

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

.ga-btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 2.5vw, 2rem);
}

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

.ga-hero-image-block {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ga-hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 50% 45% 55% 50% / 45% 55% 50% 50%;
  box-shadow: var(--shadow-lg);
}

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

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

  .ga-hero-image {
    max-height: 350px;
  }
}

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

.ga-features-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.ga-features-hero-card {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
}

.ga-features-hero-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ga-features-hero-description {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.ga-features-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.ga-features-card-icon {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-primary);
}

.ga-features-card-title {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ga-features-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .ga-features-cards-grid {
    flex-direction: column;
  }

  .ga-features-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.ga-about-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.ga-about-text-block {
  text-align: center;
}

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

.ga-about-description {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ga-about-stats-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}

.ga-stat-item {
  flex: 1 1 150px;
  min-width: 120px;
  text-align: center;
}

.ga-stat-number {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.ga-stat-label {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-top: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .ga-about-stats-bar {
    flex-direction: row;
    gap: 1rem;
  }

  .ga-stat-item {
    flex: 1 1 45%;
  }
}

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

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

.ga-values-list-block {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.ga-values-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ga-values-items {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

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

.ga-value-number {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
  line-height: 1;
}

.ga-value-text {
  flex: 1;
}

.ga-value-heading {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ga-value-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ga-values-image-block {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ga-values-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

  .ga-values-list-block,
  .ga-values-image-block {
    flex: 1 1 100%;
  }

  .ga-values-image {
    max-height: 300px;
  }
}

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

.ga-blog-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.ga-blog-header {
  text-align: center;
}

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

.ga-blog-subtitle {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.ga-blog-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

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

.ga-blog-card-featured {
  flex: 1 1 320px;
  max-width: 450px;
}

.ga-blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ga-blog-card-featured .ga-blog-card-image {
  height: 250px;
}

.ga-blog-card-content {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  flex: 1;
}

.ga-blog-card-title {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ga-blog-card-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ga-blog-card-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
}

.ga-blog-card-link:hover {
  color: var(--color-primary-hover);
}

.ga-blog-footer {
  text-align: center;
  padding-top: clamp(1rem, 2vw, 2rem);
}

@media (max-width: 768px) {
  .ga-blog-cards-grid {
    flex-direction: column;
  }

  .ga-blog-card,
  .ga-blog-card-featured {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.ga-newsletter-image-block {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ga-newsletter-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.ga-newsletter-cta-block {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.ga-newsletter-title {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ga-newsletter-description {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ga-newsletter-cta-button {
  align-self: flex-start;
}

.ga-newsletter-note {
  font-size: clamp(0.8rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

  .ga-newsletter-image-block,
  .ga-newsletter-cta-block {
    flex: 1 1 100%;
  }

  .ga-newsletter-image {
    max-height: 300px;
  }
}

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

.ga-faq-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.ga-faq-header {
  text-align: center;
}

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

.ga-faq-subtitle {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.ga-faq-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.ga-faq-question {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--line-height-tight);
}

.ga-faq-answer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .ga-faq-cards-grid {
    flex-direction: column;
  }

  .ga-faq-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.ga-cta-final-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.ga-cta-final-description {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.ga-cta-final-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-text-primary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: var(--shadow-lg);
}

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

.cookie-banner-text {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  flex: 0 0 auto;
}

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

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.6rem, 1vw, 0.85rem) clamp(1rem, 1.5vw, 1.5rem);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.8rem, 0.9vw + 0.5rem, 0.95rem);
  transition: all var(--transition-base);
}

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

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

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

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

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

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

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

  .ga-cta-final-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ga-about-stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .ga-stat-item {
    flex: 1 1 45%;
  }
}

    .footer {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem) 0;
  overflow: hidden;
  margin-top: 0;
}

.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, 5vw, 3.5rem);
}

.footer-about {
  max-width: 600px;
  padding-bottom: clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--color-border-light);
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 600;
}

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

.footer-sections {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
}

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

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

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.footer-nav-list li {
  margin: 0;
  padding: 0;
}

.footer-nav-list a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  transition: color var(--transition-fast) ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

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

.footer-legal-list li {
  margin: 0;
  padding: 0;
}

.footer-legal-list a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  transition: color var(--transition-fast) ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.footer-copyright {
  text-align: center;
  padding-top: clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid var(--color-border-light);
}

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

@media (max-width: 768px) {
  .footer-sections {
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .footer-nav-section,
  .footer-contact-section {
    flex: 1 1 100%;
  }

  .footer-legal-list {
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1rem);
  }

  .footer-about {
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-legal {
    border-top: none;
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: clamp(2rem, 5vw, 3rem) 0 clamp(1.5rem, 4vw, 2rem) 0;
  }

  .footer-content {
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .footer-nav-list,
  .footer-legal-list {
    gap: clamp(0.5rem, 1vw, 0.625rem);
  }

  .footer-nav-list a,
  .footer-legal-list a {
    font-size: clamp(0.8rem, 0.9vw, 0.875rem);
  }
}
    

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

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

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

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

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

.category-page-positive-psychology-wellbeing {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.hero-card-positive-psychology-wellbeing {
  background: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 700px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(19, 78, 74, 0.08);
  text-align: center;
}

.hero-title-positive-psychology-wellbeing {
  font-size: clamp(1.75rem, 5vw + 1rem, 3rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-positive-psychology-wellbeing {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.7;
}

.hero-stats-positive-psychology-wellbeing {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  flex-wrap: wrap;
}

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

.hero-stat-number-positive-psychology-wellbeing {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.hero-stat-label-positive-psychology-wellbeing {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  text-transform: lowercase;
}

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

.posts-content-positive-psychology-wellbeing {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

.posts-header-positive-psychology-wellbeing {
  text-align: center;
}

.posts-title-positive-psychology-wellbeing {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.posts-subtitle-positive-psychology-wellbeing {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.posts-grid-positive-psychology-wellbeing {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.card-featured-positive-psychology-wellbeing {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(19, 78, 74, 0.1);
  transition: all 0.3s ease;
}

.card-featured-positive-psychology-wellbeing:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(19, 78, 74, 0.15);
}

.card-image-wrapper-positive-psychology-wellbeing {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

.card-image-positive-psychology-wellbeing {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body-featured-positive-psychology-wellbeing {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.posts-grid-wrapper-positive-psychology-wellbeing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.card-positive-psychology-wellbeing {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 clamp(300px, 30%, 380px);
  background: var(--color-bg-card);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(19, 78, 74, 0.08);
  transition: all 0.3s ease;
}

.card-positive-psychology-wellbeing:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(19, 78, 74, 0.12);
}

.card-positive-psychology-wellbeing .card-image-positive-psychology-wellbeing {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--color-bg-tertiary);
}

.card-title-positive-psychology-wellbeing {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: var(--color-text-primary);
  line-height: 1.4;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.card-featured-positive-psychology-wellbeing .card-title-positive-psychology-wellbeing {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
}

.card-description-positive-psychology-wellbeing {
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.card-featured-positive-psychology-wellbeing .card-description-positive-psychology-wellbeing {
  padding: 0;
}

.card-meta-positive-psychology-wellbeing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.8rem, 1vw + 0.4rem, 0.95rem);
  color: var(--color-text-muted);
}

.card-featured-positive-psychology-wellbeing .card-meta-positive-psychology-wellbeing {
  padding: 0;
}

.card-meta-item-positive-psychology-wellbeing {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.card-meta-item-positive-psychology-wellbeing i {
  color: var(--color-accent);
  font-size: 0.9em;
}

.card-link-positive-psychology-wellbeing {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  transition: all 0.3s ease;
  width: fit-content;
  margin: clamp(0.5rem, 1vw, 1rem) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
}

.card-featured-positive-psychology-wellbeing .card-link-positive-psychology-wellbeing {
  margin: 0;
}

.card-link-positive-psychology-wellbeing:hover {
  background: var(--color-accent-hover);
  transform: translateX(2px);
}

.card-link-positive-psychology-wellbeing::after {
  content: '';
  font-size: 1.1em;
}

@media (min-width: 768px) {
  .hero-card-positive-psychology-wellbeing {
    padding: clamp(2.5rem, 5vw, 4rem);
  }

  .card-positive-psychology-wellbeing {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

@media (min-width: 1024px) {
  .hero-section-positive-psychology-wellbeing {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .posts-section-positive-psychology-wellbeing {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .card-featured-positive-psychology-wellbeing {
    flex-direction: row;
  }

  .card-image-wrapper-positive-psychology-wellbeing {
    flex: 1 1 55%;
    aspect-ratio: auto;
  }

  .card-body-featured-positive-psychology-wellbeing {
    flex: 1 1 45%;
    justify-content: center;
  }

  .card-positive-psychology-wellbeing {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

@media (max-width: 767px) {
  .posts-grid-wrapper-positive-psychology-wellbeing {
    flex-direction: column;
  }

  .card-positive-psychology-wellbeing {
    flex: 1 1 100%;
  }

  .hero-stats-positive-psychology-wellbeing {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

.main-flow-staat-bereiken {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

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

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

.breadcrumbs-flow-staat-bereiken {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-flow-staat-bereiken a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-flow-staat-bereiken a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-flow-staat-bereiken span {
  color: var(--color-text-muted);
}

.hero-content-flow-staat-bereiken {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-header-flow-staat-bereiken {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.hero-title-flow-staat-bereiken {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-flow-staat-bereiken {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  max-width: 650px;
}

.hero-meta-flow-staat-bereiken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1rem;
}

.meta-item-flow-staat-bereiken {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
}

.meta-item-flow-staat-bereiken i {
  color: var(--color-primary);
  font-size: 1.1em;
}

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

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

.intro-text-flow-staat-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-text-flow-staat-bereiken p {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.15rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-text-flow-staat-bereiken p:last-child {
  margin-bottom: 0;
}

.intro-image-flow-staat-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-flow-staat-bereiken {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.content-section-flow-staat-bereiken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-text-flow-staat-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-flow-staat-bereiken {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-text-body-flow-staat-bereiken {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-text-body-flow-staat-bereiken:last-child {
  margin-bottom: 0;
}

.content-image-flow-staat-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-flow-staat-bereiken img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.highlights-section-flow-staat-bereiken {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.highlights-content-flow-staat-bereiken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.highlight-box-flow-staat-bereiken {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
}

.highlight-title-flow-staat-bereiken {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw + 0.5rem, 1.5rem);
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.highlight-title-flow-staat-bereiken i {
  color: var(--color-primary);
  font-size: 1.3em;
}

.highlight-text-flow-staat-bereiken {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.6;
}

.practical-section-flow-staat-bereiken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practical-wrapper-flow-staat-bereiken {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.practical-text-flow-staat-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-flow-staat-bereiken {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-intro-flow-staat-bereiken {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.steps-flow-staat-bereiken {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.5vw, 2rem);
}

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

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

.step-title-flow-staat-bereiken {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text-flow-staat-bereiken {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.6;
}

.practical-image-flow-staat-bereiken {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-flow-staat-bereiken img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.related-posts-section-flow-staat-bereiken {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-flow-staat-bereiken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.related-title-flow-staat-bereiken {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-grid-flow-staat-bereiken {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-flow-staat-bereiken {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 100%;
  background: var(--color-bg-card);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
}

.related-card-flow-staat-bereiken:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(8, 145, 178, 0.15);
}

.related-image-flow-staat-bereiken {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.related-image-flow-staat-bereiken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-body-flow-staat-bereiken {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-card-title-flow-staat-bereiken {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-flow-staat-bereiken {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  flex: 1;
}

.related-link-flow-staat-bereiken {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.related-link-flow-staat-bereiken:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.disclaimer-section-flow-staat-bereiken {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  overflow: hidden;
}

.disclaimer-content-flow-staat-bereiken {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
}

.disclaimer-title-flow-staat-bereiken {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw + 0.5rem, 1.4rem);
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.disclaimer-title-flow-staat-bereiken i {
  color: var(--color-primary);
  font-size: 1.3em;
}

.disclaimer-text-flow-staat-bereiken {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.6;
}

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

.conclusion-content-flow-staat-bereiken {
  max-width: 750px;
  margin: 0 auto;
}

.conclusion-title-flow-staat-bereiken {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-flow-staat-bereiken {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.15rem);
  line-height: 1.7;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-text-flow-staat-bereiken:last-child {
  margin-bottom: 0;
}

.author-section-flow-staat-bereiken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.author-content-flow-staat-bereiken {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  max-width: 750px;
  margin: 0 auto;
}

.author-image-flow-staat-bereiken {
  flex-shrink: 0;
}

.author-photo-flow-staat-bereiken {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.author-info-flow-staat-bereiken {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.author-name-flow-staat-bereiken {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw + 0.5rem, 1.4rem);
  font-weight: 700;
  margin: 0;
}

.author-name-flow-staat-bereiken a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-name-flow-staat-bereiken a:hover {
  color: var(--color-primary);
}

.author-title-flow-staat-bereiken {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.05rem);
  font-weight: 600;
  margin: 0;
}

.author-bio-flow-staat-bereiken {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .intro-content-flow-staat-bereiken {
    flex-direction: column;
  }

  .intro-text-flow-staat-bereiken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-flow-staat-bereiken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-wrapper-flow-staat-bereiken {
    flex-direction: column;
  }

  .content-text-flow-staat-bereiken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-flow-staat-bereiken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-wrapper-flow-staat-bereiken {
    flex-direction: column;
  }

  .practical-text-flow-staat-bereiken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-image-flow-staat-bereiken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-grid-flow-staat-bereiken {
    flex-direction: column;
  }

  .related-card-flow-staat-bereiken {
    flex: 1 1 100%;
    min-width: unset;
  }

  .author-content-flow-staat-bereiken {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-info-flow-staat-bereiken {
    align-items: center;
  }

  .step-item-flow-staat-bereiken {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .related-card-flow-staat-bereiken {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 250px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .related-grid-flow-staat-bereiken {
    gap: clamp(1rem, 2vw, 2rem);
  }

  .related-card-flow-staat-bereiken {
    flex: 1 1 calc(50% - 1rem);
  }
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

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

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

a:hover {
  text-decoration: underline;
}

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

.main-sterktes-ontdekken {
  width: 100%;
  overflow-x: hidden;
}

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

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

.hero-header-sterktes-ontdekken {
  text-align: center;
}

.breadcrumbs-sterktes-ontdekken {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.9rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
}

.breadcrumbs-sterktes-ontdekken a {
  color: var(--color-primary);
}

.breadcrumbs-sterktes-ontdekken a:hover {
  color: var(--color-primary-hover);
}

.hero-title-sterktes-ontdekken {
  font-size: clamp(2rem, 6vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-sterktes-ontdekken {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
  font-family: var(--font-primary);
}

.hero-metadata-sterktes-ontdekken {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.metadata-item-sterktes-ontdekken {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
}

.metadata-item-sterktes-ontdekken i {
  color: var(--color-primary);
}

.hero-image-sterktes-ontdekken {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-img-sterktes-ontdekken {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

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

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

.intro-text-sterktes-ontdekken {
  max-width: 700px;
  margin: 0 auto;
}

.intro-title-sterktes-ontdekken {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
}

.intro-paragraph-sterktes-ontdekken {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-primary);
}

.intro-highlights-sterktes-ontdekken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.highlight-box-sterktes-ontdekken {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 250px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--color-border-light);
}

.highlight-icon-sterktes-ontdekken {
  font-size: 2.5rem;
  color: var(--color-primary);
  display: flex;
  justify-content: center;
}

.highlight-title-sterktes-ontdekken {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
}

.highlight-text-sterktes-ontdekken {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-primary);
}

.content-first-sterktes-ontdekken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-first-sterktes-ontdekken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-first-sterktes-ontdekken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.content-text-paragraph-sterktes-ontdekken {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-primary);
}

.process-steps-sterktes-ontdekken {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.step-sterktes-ontdekken {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.step-number-sterktes-ontdekken {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--font-heading);
}

.step-title-sterktes-ontdekken {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
}

.step-text-sterktes-ontdekken {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-primary);
}

.content-img-sterktes-ontdekken {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.related-inline-sterktes-ontdekken {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-sterktes-ontdekken {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-sterktes-ontdekken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.related-subtitle-sterktes-ontdekken {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
}

.related-cards-sterktes-ontdekken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

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

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

.related-image-wrapper-sterktes-ontdekken {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

.related-card-img-sterktes-ontdekken {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-sterktes-ontdekken {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.related-card-title-sterktes-ontdekken a {
  color: var(--color-text-primary);
}

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

.related-card-text-sterktes-ontdekken {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  font-family: var(--font-primary);
}

.related-card-meta-sterktes-ontdekken {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-family: var(--font-primary);
}

.content-second-sterktes-ontdekken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-second-sterktes-ontdekken {
  flex: 1 1 50%;
  max-width: 50%;
  order: 2;
}

.content-image-second-sterktes-ontdekken {
  flex: 1 1 50%;
  max-width: 50%;
  order: 1;
}

.content-title-second-sterktes-ontdekken {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.callout-box-sterktes-ontdekken {
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-md);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.callout-text-sterktes-ontdekken {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: 1.7;
  margin: 0;
  font-family: var(--font-primary);
}

.callout-text-sterktes-ontdekken strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.disclaimer-section-sterktes-ontdekken {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

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

.disclaimer-title-sterktes-ontdekken {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-title-sterktes-ontdekken i {
  color: var(--color-primary);
}

.disclaimer-text-sterktes-ontdekken {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  font-family: var(--font-primary);
}

.content-third-sterktes-ontdekken {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-third-sterktes-ontdekken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-third-sterktes-ontdekken {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.reflection-box-sterktes-ontdekken {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  margin: clamp(1.5rem, 3vw, 2rem) 0;
  border: 1px solid var(--color-border-light);
}

.reflection-title-sterktes-ontdekken {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.3rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1rem;
}

.reflection-list-sterktes-ontdekken {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reflection-item-sterktes-ontdekken {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  font-family: var(--font-primary);
}

.reflection-item-sterktes-ontdekken:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.author-section-sterktes-ontdekken {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
}

.author-content-sterktes-ontdekken {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.author-image-sterktes-ontdekken {
  flex: 0 0 auto;
}

.author-photo-sterktes-ontdekken {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--color-border);
}

.author-info-sterktes-ontdekken {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.author-label-sterktes-ontdekken {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
  font-weight: 500;
}

.author-name-sterktes-ontdekken {
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
}

.author-name-sterktes-ontdekken a {
  color: var(--color-text-primary);
}

.author-name-sterktes-ontdekken a:hover {
  color: var(--color-primary);
}

.author-title-sterktes-ontdekken {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 500;
  margin: 0;
}

.author-bio-sterktes-ontdekken {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-primary);
}

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

.conclusion-content-sterktes-ontdekken {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-sterktes-ontdekken {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-text-sterktes-ontdekken {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  font-family: var(--font-primary);
}

.cta-section-sterktes-ontdekken {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-button-sterktes-ontdekken {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  padding: clamp(0.875rem, 1vw + 0.5rem, 1.25rem) clamp(1.5rem, 2vw + 1rem, 2.5rem);
  border-radius: var(--radius-lg);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-button-sterktes-ontdekken:hover {
  background: var(--color-primary-hover);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .content-wrapper-first-sterktes-ontdekken,
  .content-wrapper-second-sterktes-ontdekken,
  .content-wrapper-third-sterktes-ontdekken {
    flex-direction: column;
  }

  .content-text-first-sterktes-ontdekken,
  .content-image-first-sterktes-ontdekken,
  .content-text-second-sterktes-ontdekken,
  .content-image-second-sterktes-ontdekken,
  .content-text-third-sterktes-ontdekken,
  .content-image-third-sterktes-ontdekken {
    flex: 1 1 100%;
    max-width: 100%;
    order: initial !important;
  }

  .highlight-box-sterktes-ontdekken {
    flex: 1 1 100%;
    min-width: auto;
  }

  .related-card-sterktes-ontdekken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .author-content-sterktes-ontdekken {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-info-sterktes-ontdekken {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-metadata-sterktes-ontdekken {
    flex-direction: column;
    gap: 0.75rem;
  }

  .breadcrumbs-sterktes-ontdekken {
    font-size: 0.75rem;
  }

  .process-steps-sterktes-ontdekken {
    gap: 1rem;
  }

  .reflection-list-sterktes-ontdekken {
    gap: 0.5rem;
  }
}

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

html, body {
  width: 100%;
}

body {
  background: var(--color-bg-primary);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  color: var(--color-text-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

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

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

.main-floreren-transformatie {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.hero-content-floreren-transformatie {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.breadcrumbs-floreren-transformatie {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.breadcrumbs-floreren-transformatie a {
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.breadcrumbs-floreren-transformatie a:hover {
  color: var(--color-accent-hover);
}

.breadcrumbs-floreren-transformatie span {
  color: var(--color-text-muted);
}

.hero-header-floreren-transformatie {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.hero-subtitle-floreren-transformatie {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

.hero-meta-floreren-transformatie {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2rem);
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-light);
}

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

.meta-item-floreren-transformatie i {
  color: var(--color-accent);
  font-size: 1.1em;
}

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

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

.intro-text-floreren-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-text-floreren-transformatie p {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.intro-image-floreren-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-floreren-transformatie img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.content-one-floreren-transformatie {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-one-text-floreren-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-floreren-transformatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.content-one-text-floreren-transformatie p {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.highlight-box-floreren-transformatie {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.highlight-title-floreren-transformatie {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.highlight-text-floreren-transformatie {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.6;
}

.content-one-image-floreren-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-floreren-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-image-floreren-transformatie img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.content-two-image-floreren-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-image-floreren-transformatie img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.content-two-text-floreren-transformatie {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-floreren-transformatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.content-two-text-floreren-transformatie p {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.content-two-list-floreren-transformatie {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-two-list-floreren-transformatie li {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.content-two-list-floreren-transformatie li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.1em;
}

.content-two-list-floreren-transformatie strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

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

.steps-header-floreren-transformatie {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.steps-title-floreren-transformatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.steps-subtitle-floreren-transformatie {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
}

.steps-content-floreren-transformatie {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.step-card-floreren-transformatie {
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.step-card-floreren-transformatie:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.step-number-floreren-transformatie {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  font-family: 'Poppins', sans-serif;
}

.step-title-floreren-transformatie {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.step-text-floreren-transformatie {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-card-floreren-transformatie {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.related-header-floreren-transformatie {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-floreren-transformatie {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.related-subtitle-floreren-transformatie {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

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

.related-card-floreren-transformatie {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: calc(33.333% - 1.5rem);
  background: var(--color-bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-floreren-transformatie:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.related-image-floreren-transformatie {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

.related-image-floreren-transformatie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-floreren-transformatie {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-floreren-transformatie {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.4;
}

.related-card-description-floreren-transformatie {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.3vw, 0.95rem);
  line-height: 1.5;
}

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

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

.disclaimer-section-floreren-transformatie {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-floreren-transformatie {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
}

.disclaimer-icon-floreren-transformatie {
  color: var(--color-accent);
  font-size: clamp(1.5rem, 3vw, 2rem);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-text-floreren-transformatie {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disclaimer-title-floreren-transformatie {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.disclaimer-body-floreren-transformatie {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.6;
}

.author-section-floreren-transformatie {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.author-content-floreren-transformatie {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.author-image-floreren-transformatie {
  flex-shrink: 0;
}

.author-image-floreren-transformatie img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.author-info-floreren-transformatie {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.author-name-floreren-transformatie {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  margin: 0;
}

.author-name-floreren-transformatie a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-name-floreren-transformatie a:hover {
  color: var(--color-accent);
}

.author-position-floreren-transformatie {
  color: var(--color-accent);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 500;
  margin: 0;
}

.author-bio-floreren-transformatie {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.6;
  margin: 0;
}

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

.conclusion-content-floreren-transformatie {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.conclusion-title-floreren-transformatie {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.conclusion-content-floreren-transformatie p {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.cta-box-floreren-transformatie {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.cta-text-floreren-transformatie {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 500;
}

.cta-button-floreren-transformatie {
  display: inline-block;
  background: var(--color-accent);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button-floreren-transformatie:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .intro-content-floreren-transformatie,
  .content-one-wrapper-floreren-transformatie,
  .content-two-wrapper-floreren-transformatie {
    flex-direction: column;
  }

  .intro-text-floreren-transformatie,
  .intro-image-floreren-transformatie,
  .content-one-text-floreren-transformatie,
  .content-one-image-floreren-transformatie,
  .content-two-text-floreren-transformatie,
  .content-two-image-floreren-transformatie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-floreren-transformatie {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.main-dagelijkse-gewoontes-optimisme {
  width: 100%;
  overflow-x: hidden;
}

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

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

.breadcrumbs-dagelijkse-gewoontes-optimisme {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-dagelijkse-gewoontes-optimisme a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  transition: all 0.3s ease;
}

.breadcrumbs-dagelijkse-gewoontes-optimisme a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-dagelijkse-gewoontes-optimisme span {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.hero-content-dagelijkse-gewoontes-optimisme {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-meta-dagelijkse-gewoontes-optimisme {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.meta-badge-dagelijkse-gewoontes-optimisme {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  font-weight: 600;
}

.meta-separator-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.meta-time-dagelijkse-gewoontes-optimisme,
.meta-date-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-secondary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.hero-title-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.hero-subtitle-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 700px;
}

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

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

.intro-text-dagelijkse-gewoontes-optimisme {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-text-dagelijkse-gewoontes-optimisme p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.intro-text-dagelijkse-gewoontes-optimisme p:last-child {
  margin-bottom: 0;
}

.intro-image-dagelijkse-gewoontes-optimisme {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-dagelijkse-gewoontes-optimisme img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

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

.habits-content-dagelijkse-gewoontes-optimisme {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.habits-text-dagelijkse-gewoontes-optimisme {
  flex: 1 1 50%;
  max-width: 50%;
}

.habits-title-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.habits-text-dagelijkse-gewoontes-optimisme p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.habits-text-dagelijkse-gewoontes-optimisme p:last-child {
  margin-bottom: 0;
}

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

.highlight-box-dagelijkse-gewoontes-optimisme p {
  color: var(--color-text-primary);
  margin: 0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
}

.highlight-box-dagelijkse-gewoontes-optimisme strong {
  color: var(--color-primary);
  font-weight: 700;
}

.habits-image-dagelijkse-gewoontes-optimisme {
  flex: 1 1 50%;
  max-width: 50%;
}

.habits-image-dagelijkse-gewoontes-optimisme img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

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

.affirmation-content-dagelijkse-gewoontes-optimisme {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.affirmation-image-dagelijkse-gewoontes-optimisme {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.affirmation-image-dagelijkse-gewoontes-optimisme img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.affirmation-text-dagelijkse-gewoontes-optimisme {
  flex: 1 1 50%;
  max-width: 50%;
}

.affirmation-title-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.affirmation-text-dagelijkse-gewoontes-optimisme p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.affirmation-text-dagelijkse-gewoontes-optimisme p:last-child {
  margin-bottom: 0;
}

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

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

.mindfulness-text-dagelijkse-gewoontes-optimisme {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindfulness-title-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.mindfulness-text-dagelijkse-gewoontes-optimisme p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.mindfulness-text-dagelijkse-gewoontes-optimisme p:last-child {
  margin-bottom: 0;
}

.mindfulness-image-dagelijkse-gewoontes-optimisme {
  flex: 1 1 50%;
  max-width: 50%;
}

.mindfulness-image-dagelijkse-gewoontes-optimisme img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.related-posts-section-dagelijkse-gewoontes-optimisme {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-header-dagelijkse-gewoontes-optimisme {
  text-align: center;
}

.related-title-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0 0 0.5rem 0;
}

.related-subtitle-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.related-cards-dagelijkse-gewoontes-optimisme {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
}

.related-card-dagelijkse-gewoontes-optimisme {
  flex: 1 1 calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 360px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

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

.related-card-image-dagelijkse-gewoontes-optimisme {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-dagelijkse-gewoontes-optimisme img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-dagelijkse-gewoontes-optimisme {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.related-card-title-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.related-card-desc-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex-grow: 1;
}

.related-card-link-dagelijkse-gewoontes-optimisme {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.related-card-link-dagelijkse-gewoontes-optimisme:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.disclaimer-section-dagelijkse-gewoontes-optimisme {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-dagelijkse-gewoontes-optimisme {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-warning);
}

.disclaimer-icon-dagelijkse-gewoontes-optimisme {
  flex-shrink: 0;
  color: var(--color-warning);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.disclaimer-text-dagelijkse-gewoontes-optimisme {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.disclaimer-title-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.disclaimer-body-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

.conclusion-content-dagelijkse-gewoontes-optimisme {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-text-dagelijkse-gewoontes-optimisme {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.conclusion-text-dagelijkse-gewoontes-optimisme p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.conclusion-text-dagelijkse-gewoontes-optimisme p:last-child {
  margin-bottom: 0;
}

.conclusion-image-dagelijkse-gewoontes-optimisme {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-dagelijkse-gewoontes-optimisme img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.author-section-dagelijkse-gewoontes-optimisme {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.author-content-dagelijkse-gewoontes-optimisme {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.author-avatar-dagelijkse-gewoontes-optimisme {
  flex-shrink: 0;
}

.author-avatar-dagelijkse-gewoontes-optimisme img {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  display: block;
  object-fit: cover;
}

.author-info-dagelijkse-gewoontes-optimisme {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.author-name-dagelijkse-gewoontes-optimisme {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.author-name-dagelijkse-gewoontes-optimisme a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.author-name-dagelijkse-gewoontes-optimisme a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.author-position-dagelijkse-gewoontes-optimisme {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 600;
  margin: 0;
}

.author-bio-dagelijkse-gewoontes-optimisme {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (max-width: 768px) {
  .intro-content-dagelijkse-gewoontes-optimisme,
  .habits-content-dagelijkse-gewoontes-optimisme,
  .affirmation-content-dagelijkse-gewoontes-optimisme,
  .mindfulness-content-dagelijkse-gewoontes-optimisme,
  .conclusion-content-dagelijkse-gewoontes-optimisme {
    flex-direction: column;
  }

  .intro-text-dagelijkse-gewoontes-optimisme,
  .intro-image-dagelijkse-gewoontes-optimisme,
  .habits-text-dagelijkse-gewoontes-optimisme,
  .habits-image-dagelijkse-gewoontes-optimisme,
  .affirmation-text-dagelijkse-gewoontes-optimisme,
  .affirmation-image-dagelijkse-gewoontes-optimisme,
  .mindfulness-text-dagelijkse-gewoontes-optimisme,
  .mindfulness-image-dagelijkse-gewoontes-optimisme,
  .conclusion-text-dagelijkse-gewoontes-optimisme,
  .conclusion-image-dagelijkse-gewoontes-optimisme {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .affirmation-image-dagelijkse-gewoontes-optimisme {
    order: 0;
  }

  .related-cards-dagelijkse-gewoontes-optimisme {
    flex-direction: column;
  }

  .related-card-dagelijkse-gewoontes-optimisme {
    flex: 1 1 100%;
    min-width: auto;
    max-width: 100%;
  }

  .author-content-dagelijkse-gewoontes-optimisme {
    flex-direction: column;
    text-align: center;
  }

  .author-info-dagelijkse-gewoontes-optimisme {
    gap: 0.35rem;
  }

  .disclaimer-content-dagelijkse-gewoontes-optimisme {
    flex-direction: column;
    gap: 1rem;
  }

  .disclaimer-icon-dagelijkse-gewoontes-optimisme {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-dagelijkse-gewoontes-optimisme {
    gap: 0.25rem;
  }

  .breadcrumbs-dagelijkse-gewoontes-optimisme a,
  .breadcrumbs-dagelijkse-gewoontes-optimisme span {
    font-size: 0.7rem;
  }

  .hero-meta-dagelijkse-gewoontes-optimisme {
    gap: 0.5rem;
  }

  .meta-badge-dagelijkse-gewoontes-optimisme {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }

  .related-card-image-dagelijkse-gewoontes-optimisme {
    height: 150px;
  }
}

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

html, body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--color-text-primary);
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: 'Poppins', sans-serif;
}

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

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

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

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

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

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

.flourish-wellbeing-about {
  background: var(--color-bg-primary);
  overflow: hidden;
}

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

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

.hero-header-wellbeing {
  text-align: center;
  max-width: 700px;
}

.hero-tag-wellbeing {
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.hero-title-wellbeing {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle-wellbeing {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.hero-visual-wellbeing {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(13, 110, 110, 0.1);
}

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

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

.story-header-wellbeing {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.story-label-wellbeing {
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.story-title-wellbeing {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

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

.story-split-wellbeing {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.story-text-wellbeing {
  flex: 1 1 45%;
  min-width: 0;
}

.story-text-para-wellbeing {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-text-para-wellbeing:last-child {
  margin-bottom: 0;
}

.story-image-wellbeing {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 450px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(13, 110, 110, 0.1);
}

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

  .story-text-wellbeing,
  .story-image-wellbeing {
    flex: 1 1 100%;
  }

  .story-image-wellbeing {
    min-height: 250px;
    max-height: 350px;
  }
}

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

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

.approach-header-wellbeing {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.approach-label-wellbeing {
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.approach-title-wellbeing {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

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

.pillars-grid-wellbeing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.pillar-card-wellbeing {
  background: var(--color-bg-secondary);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1 1 calc(50% - 1rem);
  min-width: 200px;
  max-width: 280px;
  transition: all 0.3s ease;
}

.pillar-card-wellbeing:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(13, 110, 110, 0.15);
  border-color: var(--color-primary);
}

.pillar-icon-wellbeing {
  color: var(--color-primary);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  display: block;
}

.pillar-name-wellbeing {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pillar-description-wellbeing {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

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

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

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

.foundation-header-wellbeing {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.foundation-label-wellbeing {
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.foundation-title-wellbeing {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

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

.foundation-split-wellbeing {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.foundation-image-wellbeing {
  flex: 1 1 45%;
  min-height: 300px;
  max-height: 450px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(13, 110, 110, 0.1);
}

.foundation-text-wellbeing {
  flex: 1 1 45%;
  min-width: 0;
}

.foundation-para-wellbeing {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.foundation-para-wellbeing:last-child {
  margin-bottom: 0;
}

.foundation-highlight-wellbeing {
  color: var(--color-primary);
  font-weight: 600;
}

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

  .foundation-image-wellbeing,
  .foundation-text-wellbeing {
    flex: 1 1 100%;
  }

  .foundation-image-wellbeing {
    min-height: 250px;
    max-height: 350px;
  }
}

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

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

.values-header-wellbeing {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.values-label-wellbeing {
  color: var(--color-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.values-title-wellbeing {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

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

.values-list-wellbeing {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  list-style: none;
}

.value-item-wellbeing {
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-item-wellbeing:hover {
  box-shadow: 0 8px 20px rgba(13, 110, 110, 0.1);
  transform: translateX(4px);
}

.value-name-wellbeing {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-description-wellbeing {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

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

.disclaimer-content-wellbeing {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-header-wellbeing {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-wellbeing {
  color: var(--color-primary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-title-wellbeing {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 1.5vw, 1.375rem);
  font-weight: 700;
}

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

@media (max-width: 768px) {
  .hero-section-wellbeing,
  .story-section-wellbeing,
  .approach-section-wellbeing,
  .foundation-section-wellbeing,
  .values-section-wellbeing,
  .disclaimer-section-wellbeing {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

@media (max-width: 480px) {
  .pillar-card-wellbeing {
    flex: 1 1 100%;
  }
}

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

html, body {
  width: 100%;
}

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, 3vw, 2rem);
}

.author-profile-marieke-van-den-berg {
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

.hero-section-marieke-van-den-berg {
  position: relative;
  height: clamp(400px, 60vh, 600px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-bg-primary);
}

.hero-background-marieke-van-den-berg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image-marieke-van-den-berg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay-marieke-van-den-berg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.hero-content-marieke-van-den-berg {
  position: relative;
  z-index: 3;
  padding: clamp(2rem, 5vw, 4rem) 0;
  text-align: left;
}

.hero-title-marieke-van-den-berg {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw + 0.5rem, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
}

.hero-subtitle-marieke-van-den-berg {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.hero-company-marieke-van-den-berg {
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.quote-section-marieke-van-den-berg {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
}

.editorial-quote-marieke-van-den-berg {
  border-left: 4px solid var(--color-accent);
  padding-left: var(--spacing-2xl);
}

.quote-text-marieke-van-den-berg {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.6;
  font-weight: 500;
}

.quote-author-marieke-van-den-berg {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin-top: var(--spacing-md);
}

.bio-section-marieke-van-den-berg {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.bio-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.bio-header-marieke-van-den-berg {
  text-align: center;
}

.bio-label-marieke-van-den-berg {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
}

.bio-title-marieke-van-den-berg {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.bio-text-marieke-van-den-berg {
  max-width: 900px;
  margin: 0 auto;
}

.bio-text-marieke-van-den-berg p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.bio-text-marieke-van-den-berg p:last-child {
  margin-bottom: 0;
}

.journey-section-marieke-van-den-berg {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.journey-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}

.journey-header-marieke-van-den-berg {
  text-align: center;
}

.journey-label-marieke-van-den-berg {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
}

.journey-title-marieke-van-den-berg {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.journey-timeline-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-left: var(--spacing-xl);
  border-left: 2px solid var(--color-border);
  position: relative;
}

.timeline-year-marieke-van-den-berg {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 700;
  color: var(--color-accent);
  min-width: 80px;
  flex-shrink: 0;
}

.timeline-content-marieke-van-den-berg {
  flex: 1;
}

.timeline-title-marieke-van-den-berg {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

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

.expertise-section-marieke-van-den-berg {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expertise-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}

.expertise-header-marieke-van-den-berg {
  text-align: center;
}

.expertise-label-marieke-van-den-berg {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
}

.expertise-title-marieke-van-den-berg {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.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 clamp(100%, (100% - 1.5rem) / 2, calc(50% - 0.75rem));
  min-width: 280px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  transition: all var(--transition-base);
}

.expertise-card-marieke-van-den-berg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.expertise-icon-marieke-van-den-berg {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-accent);
}

.expertise-card-title-marieke-van-den-berg {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

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

.articles-section-marieke-van-den-berg {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.articles-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}

.articles-header-marieke-van-den-berg {
  text-align: center;
}

.articles-label-marieke-van-den-berg {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
}

.articles-title-marieke-van-den-berg {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.articles-subtitle-marieke-van-den-berg {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.articles-list-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.article-item-marieke-van-den-berg {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}

.article-item-marieke-van-den-berg:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-number-marieke-van-den-berg {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
  min-width: 60px;
  flex-shrink: 0;
}

.article-title-marieke-van-den-berg {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.article-link-marieke-van-den-berg {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.article-link-marieke-van-den-berg:hover {
  color: var(--color-accent);
}

.article-excerpt-marieke-van-den-berg {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.article-readmore-marieke-van-den-berg {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-base);
}

.article-readmore-marieke-van-den-berg:hover {
  color: var(--color-accent-hover);
  gap: var(--spacing-md);
}

.articles-cta-marieke-van-den-berg {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-xl);
}

.contact-section-marieke-van-den-berg {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.contact-content-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-header-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-title-marieke-van-den-berg {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.contact-subtitle-marieke-van-den-berg {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.contact-box-marieke-van-den-berg {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  align-items: center;
}

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

.contact-link-marieke-van-den-berg {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
}

.contact-link-marieke-van-den-berg:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

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

.btn-primary-marieke-van-den-berg {
  background: var(--color-accent);
  color: #ffffff;
}

.btn-primary-marieke-van-den-berg:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .expertise-card-marieke-van-den-berg {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .timeline-item-marieke-van-den-berg {
    flex-direction: column;
    gap: var(--spacing-md);
    padding-left: 0;
    border-left: none;
  }

  .timeline-year-marieke-van-den-berg {
    min-width: auto;
  }

  .article-item-marieke-van-den-berg {
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: flex-start;
  }

  .article-number-marieke-van-den-berg {
    min-width: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .expertise-card-marieke-van-den-berg {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 280px;
  }
}

@media (min-width: 1024px) {
  .expertise-card-marieke-van-den-berg {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 300px;
  }
}

.faq-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-xl) var(--spacing-md);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.faq-hero-content {
  padding: var(--spacing-lg) 0;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  letter-spacing: -0.5px;
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 550px;
}

.faq-hero-visual {
  width: 100%;
  aspect-ratio: 16 / 12;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.faq-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .faq-hero-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
  }

  .faq-hero-content {
    padding: var(--spacing-xl) 0;
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }

  .faq-hero-container {
    gap: var(--spacing-3xl);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--spacing-xl) var(--spacing-md);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-card);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: var(--spacing-lg);
  background-color: var(--color-bg-card);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  transition: all var(--transition-base);
  font-family: var(--font-primary);
  text-align: left;
}

.faq-question:hover {
  background-color: var(--color-bg-secondary);
  color: var(--color-primary);
}

.faq-question-text {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
  font-weight: 600;
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  flex: 1;
}

.faq-toggle-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-question:hover .faq-toggle-icon {
  color: var(--color-primary-hover);
}

.faq-item[data-active="true"] .faq-question {
  background-color: var(--color-bg-secondary);
  color: var(--color-primary);
}

.faq-item[data-active="true"] .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--color-primary-hover);
}

.faq-answer {
  padding: 0 var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
  background-color: var(--color-bg-card);
  animation: slideDown var(--transition-base) ease-out;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
}

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

@media (min-width: 768px) {
  .faq-content {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .faq-accordion {
    gap: var(--spacing-lg);
  }

  .faq-question {
    padding: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .faq-content {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }
}

.faq-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-xl) var(--spacing-md);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.faq-cta-content {
  padding: var(--spacing-lg) 0;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
}

.faq-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-lg) 0;
  max-width: 500px;
}

.faq-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.faq-cta-button {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-align: center;
  border: 2px solid transparent;
}

.faq-cta-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
}

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

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

.faq-cta-secondary:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-text-primary);
}

.faq-cta-visual {
  width: 100%;
  aspect-ratio: 16 / 12;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.faq-cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .faq-cta {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .faq-cta-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
  }

  .faq-cta-buttons {
    flex-direction: row;
  }

  .faq-cta-button {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }

  .faq-cta-container {
    gap: var(--spacing-3xl);
  }
}

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

.services-hero {
  padding: var(--spacing-3xl) var(--spacing-md);
  background-color: var(--color-bg-primary);
  text-align: center;
  overflow: hidden;
}

.services-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
}

.services-hero-content p {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-normal);
}

.services-grid {
  padding: var(--spacing-3xl) var(--spacing-md);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.service-card {
  background-color: var(--color-bg-card);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  flex-shrink: 0;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  stroke: var(--color-primary);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-sm) 0;
  line-height: var(--line-height-tight);
}

.service-card p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--spacing-md) 0;
  flex-grow: 1;
}

.service-link {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  padding: var(--spacing-xs) 0;
  border-bottom: 2px solid var(--color-primary);
  transition: all var(--transition-fast);
  width: fit-content;
}

.service-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
}

.services-cta {
  padding: var(--spacing-3xl) var(--spacing-md);
  background-color: var(--color-bg-primary);
  text-align: center;
  overflow: hidden;
}

.services-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.services-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: var(--line-height-tight);
}

.services-cta-content p {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-xl) 0;
  line-height: var(--line-height-normal);
}

.cta-button {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

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

.services-images {
  padding: var(--spacing-3xl) var(--spacing-md);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.image-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }

  .services-grid {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }

  .services-cta {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }

  .services-images {
    padding: var(--spacing-4xl) var(--spacing-xl);
  }

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

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--spacing-4xl) var(--spacing-2xl);
  }

  .services-grid {
    padding: var(--spacing-4xl) var(--spacing-2xl);
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
  }

  .services-cta {
    padding: var(--spacing-4xl) var(--spacing-2xl);
  }

  .services-images {
    padding: var(--spacing-4xl) var(--spacing-2xl);
  }

  .image-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }

  .service-card {
    padding: var(--spacing-2xl);
  }
}

@media (min-width: 1440px) {
  .services-container {
    gap: var(--spacing-2xl);
  }

  .image-grid {
    gap: var(--spacing-2xl);
  }
}

.welzijn-legal {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.welzijn-legal main {
  width: 100%;
  overflow: hidden;
}

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

.welzijn-legal .content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-3xl) var(--spacing-md);
}

.welzijn-legal h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.welzijn-legal .last-updated {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 0.95rem);
  margin-bottom: var(--spacing-2xl);
  font-style: italic;
}

.welzijn-legal h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.welzijn-legal h2:first-of-type {
  margin-top: var(--spacing-xl);
}

.welzijn-legal p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
}

.welzijn-legal ul {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.welzijn-legal ul li {
  color: var(--color-text-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  padding-left: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  position: relative;
}

.welzijn-legal ul li::before {
  content: "";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.welzijn-legal .section {
  margin-bottom: var(--spacing-2xl);
}

.welzijn-legal .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  margin-top: var(--spacing-3xl);
}

.welzijn-legal .contact-section h2 {
  color: var(--color-text-primary);
  margin-top: 0;
  margin-bottom: var(--spacing-md);
}

.welzijn-legal .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
}

.welzijn-legal .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .welzijn-legal .content {
    padding: var(--spacing-4xl) var(--spacing-lg);
  }

  .welzijn-legal .contact-section {
    padding: var(--spacing-2xl);
  }
}

@media (min-width: 1024px) {
  .welzijn-legal .container {
    padding: 0 var(--spacing-xl);
  }

  .welzijn-legal .content {
    padding: var(--spacing-4xl) 0;
  }
}

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.thank-section {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

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

.thank-wrapper {
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-lg);
  border-radius: var(--radius-xl);
  background-color: var(--color-bg-card);
  box-shadow: var(--shadow-md);
  animation: slideUp 0.6s ease-out;
}

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

.thank-icon {
  margin-bottom: var(--spacing-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 15vw, 100px);
  height: clamp(60px, 15vw, 100px);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border-radius: var(--radius-full);
  color: white;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.check-icon {
  width: 60%;
  height: 60%;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-tight);
}

.thank-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-normal);
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-relaxed);
}

.thank-next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-2xl);
  line-height: var(--line-height-relaxed);
}

.btn-return {
  display: inline-block;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  border: 2px solid var(--color-primary);
  transition: var(--transition-base);
  cursor: pointer;
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

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

.btn-return:active {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .thank-wrapper {
    padding: var(--spacing-3xl) var(--spacing-2xl);
  }
}

@media (min-width: 768px) {
  .thank-wrapper {
    padding: var(--spacing-4xl) var(--spacing-3xl);
  }

  .thank-icon {
    margin-bottom: var(--spacing-xl);
  }

  .thank-title {
    margin-bottom: var(--spacing-md);
  }

  .thank-subtitle {
    margin-bottom: var(--spacing-xl);
  }

  .thank-description {
    margin-bottom: var(--spacing-lg);
  }

  .thank-next-steps {
    margin-bottom: var(--spacing-3xl);
  }
}

@media (min-width: 1024px) {
  .thank-wrapper {
    padding: var(--spacing-4xl);
  }

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

@media (max-width: 639px) {
  .thank-you-page {
    padding: var(--spacing-md);
  }

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

  .thank-wrapper {
    padding: var(--spacing-xl) var(--spacing-md);
  }
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

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

main.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: var(--spacing-md);
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.error-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.error-visual {
  position: relative;
  margin-bottom: var(--spacing-3xl);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code-container {
  position: relative;
  z-index: 2;
}

.error-code {
  display: block;
  font-size: clamp(4rem, 12vw, 8rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.flourish-elements {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.flourish {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.1;
}

.flourish-1 {
  width: 120px;
  height: 120px;
  background-color: var(--color-primary);
  top: -20px;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.flourish-2 {
  width: 80px;
  height: 80px;
  background-color: var(--color-success);
  top: 40px;
  right: 15%;
  animation: float 8s ease-in-out infinite 1s;
}

.flourish-3 {
  width: 100px;
  height: 100px;
  background-color: var(--color-secondary);
  bottom: -30px;
  left: 20%;
  animation: float 7s ease-in-out infinite 0.5s;
}

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

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

.error-content {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.error-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-sm) 0;
  line-height: var(--line-height-tight);
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0 var(--spacing-lg) 0;
  line-height: var(--line-height-normal);
}

.error-message {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--spacing-2xl) 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-2xl) 0;
  padding: var(--spacing-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) 0;
}

.feature-icon {
  font-size: clamp(1.5rem, 3vw, 2rem);
  display: block;
  animation: bounce 2s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) .feature-icon {
  animation-delay: 0.4s;
}

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

.feature-text {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-primary);
  font-weight: 500;
  text-align: center;
  line-height: var(--line-height-tight);
}

.btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-2xl);
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 600;
  font-family: var(--font-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition-base);
  margin: var(--spacing-2xl) 0 var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

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

.btn-home:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

.btn-arrow {
  display: inline-block;
  transition: transform var(--transition-base);
}

.btn-home:hover .btn-arrow {
  transform: translateX(4px);
}

.error-footer {
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  color: var(--color-text-muted);
  margin: var(--spacing-lg) 0 0 0;
  font-style: italic;
  line-height: var(--line-height-normal);
}

@media (min-width: 640px) {
  main.error-page {
    padding: var(--spacing-lg);
  }

  .error-visual {
    margin-bottom: var(--spacing-3xl);
    height: 320px;
  }

  .error-features {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    padding: var(--spacing-2xl);
  }

  .feature-item {
    padding: var(--spacing-md) 0;
  }
}

@media (min-width: 768px) {
  main.error-page {
    padding: var(--spacing-xl);
  }

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

  .error-wrapper {
    margin-bottom: 0;
  }

  .error-visual {
    margin-bottom: var(--spacing-3xl);
    height: 350px;
  }

  .error-features {
    gap: var(--spacing-xl);
    padding: var(--spacing-3xl);
  }
}

@media (min-width: 1024px) {
  .error-visual {
    margin-bottom: var(--spacing-3xl);
    height: 380px;
  }

  .error-features {
    gap: var(--spacing-2xl);
    padding: var(--spacing-3xl) var(--spacing-4xl);
  }

  .btn-home {
    padding: var(--spacing-lg) var(--spacing-3xl);
    font-size: 1.1rem;
  }
}

.contact-say-hello {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.contact-say-hello-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-say-hello-hero-content {
  text-align: center;
  padding: 0 var(--spacing-md);
}

.contact-say-hello-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--spacing-md) 0;
  letter-spacing: -0.5px;
}

.contact-say-hello-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .contact-say-hello-hero {
    padding: 5rem 0;
  }

  .contact-say-hello-hero-content {
    padding: 0 var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-hero {
    padding: 6rem 0;
  }

  .contact-say-hello-hero-content {
    padding: 0 var(--spacing-xl);
  }
}

.contact-say-hello-main {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-say-hello-main-content {
  padding: 0 var(--spacing-md);
}

.contact-say-hello-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-say-hello-form-wrapper {
  width: 100%;
  background-color: var(--color-bg-card);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.contact-say-hello-form-header {
  margin-bottom: var(--spacing-lg);
}

.contact-say-hello-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--spacing-sm) 0;
}

.contact-say-hello-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
}

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

.contact-say-hello-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  width: 100%;
}

.contact-say-hello-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.4rem, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-say-hello-required {
  color: var(--color-danger);
  margin-left: 0.25rem;
}

.contact-say-hello-input,
.contact-say-hello-textarea {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  width: 100%;
  box-sizing: border-box;
}

.contact-say-hello-input::placeholder,
.contact-say-hello-textarea::placeholder {
  color: var(--color-text-muted);
}

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

.contact-say-hello-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-primary);
}

.contact-say-hello-form-consent {
  padding: var(--spacing-md) 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.contact-say-hello-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  cursor: pointer;
  user-select: none;
}

.contact-say-hello-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-say-hello-checkbox-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.contact-say-hello-consent-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 600;
}

.contact-say-hello-consent-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-say-hello-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  box-shadow: var(--shadow-md);
}

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

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

.contact-say-hello-submit-text {
  display: block;
}

.contact-say-hello-submit-icon {
  font-size: 0.9em;
  transition: transform var(--transition-fast);
}

.contact-say-hello-submit:hover .contact-say-hello-submit-icon {
  transform: translateX(2px);
}

.contact-say-hello-info-wrapper {
  width: 100%;
}

.contact-say-hello-info-header {
  margin-bottom: var(--spacing-lg);
}

.contact-say-hello-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--spacing-sm) 0;
}

.contact-say-hello-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
}

.contact-say-hello-info-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.contact-say-hello-info-block {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.contact-say-hello-info-icon-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
}

.contact-say-hello-info-icon {
  color: var(--color-primary);
  font-size: 1.25rem;
  line-height: 50px;
  text-align: center;
}

.contact-say-hello-info-block-content {
  flex: 1;
}

.contact-say-hello-info-block-title {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-xs) 0;
}

.contact-say-hello-info-block-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  margin: 0 0 var(--spacing-xs) 0;
}

.contact-say-hello-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-say-hello-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-say-hello-info-block-meta {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.8vw + 0.4rem, 0.9rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
  margin: 0;
}

.contact-say-hello-expertise-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--spacing-md) 0;
}

.contact-say-hello-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.contact-say-hello-expertise-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  padding-left: var(--spacing-md);
  position: relative;
}

.contact-say-hello-expertise-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .contact-say-hello-main {
    padding: 4rem 0;
  }

  .contact-say-hello-main-content {
    padding: 0 var(--spacing-lg);
  }

  .contact-say-hello-grid {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .contact-say-hello-form-wrapper {
    flex: 1;
    min-width: 0;
  }

  .contact-say-hello-info-wrapper {
    flex: 1;
    min-width: 0;
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-main {
    padding: 5rem 0;
  }

  .contact-say-hello-main-content {
    padding: 0 var(--spacing-xl);
  }

  .contact-say-hello-grid {
    gap: 4rem;
  }
}

.contact-say-hello-cta {
  background-color: var(--color-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-say-hello-cta-content {
  padding: 0 var(--spacing-md);
  text-align: center;
}

.contact-say-hello-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--spacing-sm) 0;
  letter-spacing: -0.5px;
}

.contact-say-hello-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--spacing-lg) 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-say-hello-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center;
}

.contact-say-hello-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.contact-say-hello-cta-button-primary {
  background-color: var(--color-text-primary);
  color: var(--color-primary);
}

.contact-say-hello-cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-say-hello-cta-button-secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 2px solid var(--color-text-primary);
}

.contact-say-hello-cta-button-secondary:hover {
  background-color: var(--color-text-primary);
  color: var(--color-primary);
}

.contact-say-hello-cta-button i {
  font-size: 0.95em;
  transition: transform var(--transition-fast);
}

.contact-say-hello-cta-button:hover i {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .contact-say-hello-cta {
    padding: 4rem 0;
  }

  .contact-say-hello-cta-content {
    padding: 0 var(--spacing-lg);
  }

  .contact-say-hello-cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-cta {
    padding: 5rem 0;
  }

  .contact-say-hello-cta-content {
    padding: 0 var(--spacing-xl);
  }
}

@media (max-width: 767px) {
  .contact-say-hello-form-wrapper {
    padding: var(--spacing-md);
  }

  .contact-say-hello-info-block {
    padding: var(--spacing-md);
  }
}

.header-floreer-wellness-hamburger,.header-floreer-wellness-mobile-close,.header-floreer-wellness-mobile-toggle{
  width: 34px;
}

.header-floreer-wellness-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-floreer-wellness-mobile-menu{
  padding-top: max(env(safe-area-inset-top), 0px);
}
@media (max-width: 480px){
  .header-floreer-wellness-mobile-menu{
    max-width: 100%;
  }
}

.header-floreer-wellness-mobile-toggle[aria-expanded="true"]{
  display: none;
}

@media (max-width: 768px) {
  .card-image-wrapper-positive-psychology-wellbeing {
    aspect-ratio: 6 / 9;
  }
}
