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

:root {
  
  
  
  --color-bg-dark-hero: #0a0f1e;
  --color-bg-dark-accent: #1e293b;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  
  
  --color-text-on-dark: #ffffff;
  --color-text-on-light: #1e293b;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-secondary-light: #64748b;
  --color-text-muted-dark: #94a3b8;
  --color-text-muted-light: #9ca3af;
  
  
  --color-primary: #d4a574;
  --color-primary-hover: #c49563;
  --color-primary-light: #e8d4b8;
  --color-secondary: #8b7355;
  --color-secondary-light: #a89176;
  
  
  --color-accent-green: #6b9e7a;
  --color-accent-green-light: #a8d4b8;
  --color-accent-warm: #d97706;
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-dark-md: 0 4px 6px rgba(0, 0, 0, 0.3);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  
  
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;
  --lh-loose: 2;
}

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

html {
  scroll-behavior: smooth;
}

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-semibold);
}

p {
  font-size: 1rem;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

small {
  font-size: 0.875rem;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg-dark-hero);
  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);
}

.btn-secondary {
  background: var(--color-bg-light-secondary);
  color: var(--color-text-on-light);
  border: 2px solid var(--color-primary);
}

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

.btn-dark {
  background: var(--color-bg-dark-hero);
  color: var(--color-text-on-dark);
  box-shadow: var(--shadow-dark-md);
}

.btn-dark:hover {
  background: var(--color-bg-dark-accent);
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-hero {
  background: var(--color-bg-dark-hero);
  color: var(--color-text-on-dark);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-light {
  background: var(--color-bg-light-primary);
  color: var(--color-text-on-light);
}

.section-light-alt {
  background: var(--color-bg-light-secondary);
  color: var(--color-text-on-light);
}

.section-dark {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-on-dark);
  position: relative;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(212,165,116,0.05)"/><circle cx="60" cy="40" r="2" fill="rgba(212,165,116,0.05)"/><circle cx="80" cy="70" r="2" fill="rgba(212,165,116,0.05)"/></svg>');
  pointer-events: none;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

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

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

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

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

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

.card {
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.card-light {
  background: var(--color-bg-light-primary);
  color: var(--color-text-on-light);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

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

.card-dark {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-on-dark);
  border: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: var(--shadow-dark-md);
}

.card-dark:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.card-accent {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(139, 115, 85, 0.05) 100%);
  border: 1px solid var(--color-primary-light);
}

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

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

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

.text-on-dark {
  color: var(--color-text-on-dark);
}

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

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

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

.font-semibold {
  font-weight: var(--fw-semibold);
}

.font-bold {
  font-weight: var(--fw-bold);
}

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

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

.px-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }

.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.badge-accent {
  background: rgba(212, 165, 116, 0.15);
  color: var(--color-primary);
}

.badge-green {
  background: rgba(107, 158, 122, 0.15);
  color: var(--color-accent-green);
}

.highlight {
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: var(--space-xl) 0;
}

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

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

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

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

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

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.8);
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-slow) ease-out;
}

.animate-slide-left {
  animation: slideInLeft var(--transition-slow) ease-out;
}

.animate-slide-right {
  animation: slideInRight var(--transition-slow) ease-out;
}

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

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

.list-unstyled {
  list-style: none;
}

.list-checked {
  list-style: none;
}

.list-checked li {
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-sm);
}

.list-checked li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-accent-green);
  font-weight: var(--fw-bold);
  font-size: 1.25rem;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .section {
    padding: var(--space-3xl) 0;
  }
  
  .section-hero {
    padding: var(--space-3xl) 0;
  }
}

@media print {
  body {
    background: white;
    color: black;
  }
  
  .btn, .card {
    page-break-inside: avoid;
  }
}
.header-gratitude-sanctuary {
  background: var(--color-bg-light-primary);
  border-bottom: 1px solid #e2e8f0;
  position: static;
  width: 100%;
  z-index: 100;
}

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

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

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

.header-gratitude-sanctuary-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-light);
  letter-spacing: -0.5px;
}

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

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

.header-gratitude-sanctuary-nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-on-light);
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
}

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

.header-gratitude-sanctuary-nav-link:hover {
  color: var(--color-primary);
}

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

.header-gratitude-sanctuary-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-bg-light-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.header-gratitude-sanctuary-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

.header-gratitude-sanctuary-mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--color-text-on-light);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header-gratitude-sanctuary-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.header-gratitude-sanctuary-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-gratitude-sanctuary-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

.header-gratitude-sanctuary-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-light-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  overflow-y: auto;
}

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

.header-gratitude-sanctuary-mobile-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}

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

.header-gratitude-sanctuary-mobile-close:hover {
  color: var(--color-primary);
}

.header-gratitude-sanctuary-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.5rem;
  flex: 1;
}

.header-gratitude-sanctuary-mobile-link {
  padding: 1rem 0;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-on-light);
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  transition: color var(--transition-base);
}

.header-gratitude-sanctuary-mobile-link:hover {
  color: var(--color-primary);
}

.header-gratitude-sanctuary-mobile-cta {
  padding: 1rem 1.5rem;
  margin: 1rem;
  background: var(--color-primary);
  color: var(--color-bg-light-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-lg);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-base);
}

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

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

  .header-gratitude-sanctuary-desktop-nav {
    display: flex;
  }

  .header-gratitude-sanctuary-cta-button {
    display: block;
  }

  .header-gratitude-sanctuary-mobile-toggle {
    display: none;
  }

  .header-gratitude-sanctuary-mobile-menu {
    display: none;
  }
}

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

  .header-gratitude-sanctuary-logo-text {
    font-size: 1.35rem;
  }

  .header-gratitude-sanctuary-nav-link {
    font-size: 1rem;
  }
}

    .wellness-hub {
  width: 100%;
}

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

.hero-section-index {
  background: var(--color-bg-dark-hero);
  color: var(--color-text-on-dark);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-index::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

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

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-on-dark);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
}

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.hero-buttons-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.hero-buttons-index .btn {
  flex: 0 1 auto;
  min-width: 160px;
}

.hero-image-index {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.stat-label-index {
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  color: var(--color-text-muted-dark);
  font-weight: var(--fw-semibold);
}

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

  .hero-text-block-index {
    flex: 1 1 100%;
  }

  .hero-image-block-index {
    flex: 1 1 100%;
  }

  .hero-image-index {
    max-width: 100%;
    max-height: 350px;
  }

  .hero-buttons-index {
    flex-direction: column;
  }

  .hero-buttons-index .btn {
    width: 100%;
  }

  .hero-stats-index {
    justify-content: space-between;
  }
}

.process-section-index {
  background: var(--color-bg-light-primary);
  color: var(--color-text-on-light);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.process-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.section-tag-index {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(212, 165, 116, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-title-index {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-on-light);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}

.process-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

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

.process-step-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-index {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  line-height: 1;
}

.step-content-index {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-title-index {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-light);
  font-family: var(--font-primary);
}

.step-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

@media (max-width: 768px) {
  .process-step-index {
    gap: var(--space-md);
  }

  .step-number-index {
    font-size: 2rem;
    min-width: 60px;
  }
}

.benefits-section-index {
  background: var(--color-bg-light-secondary);
  color: var(--color-text-on-light);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.benefits-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.benefits-title-index {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-on-light);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}

.benefits-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

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

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.benefit-card-index:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.card-icon-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(3rem, 6vw, 4rem);
}

.card-title-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-light);
  font-family: var(--font-primary);
  margin: 0;
}

.card-text-index {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

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

.about-section-index {
  background: var(--color-bg-light-primary);
  color: var(--color-text-on-light);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.about-text-block-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.about-title-index {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-on-light);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin: 0;
}

.about-text-index {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

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

.about-features-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.about-feature-item-index {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: flex-start;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-on-light);
}

.feature-icon-index {
  color: var(--color-accent-green);
  font-weight: var(--fw-bold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

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

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

  .about-text-block-index {
    flex: 1 1 100%;
  }

  .about-image-block-index {
    flex: 1 1 100%;
  }

  .about-image-index {
    max-width: 100%;
  }
}

.testimonials-section-index {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-on-dark);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.testimonials-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.testimonials-title-index {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-on-dark);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}

.testimonials-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.testimonial-card-index:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.quote-text-index {
  flex: 1 1 auto;
}

.quote-text-index p {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--color-text-on-dark);
  line-height: var(--lh-relaxed);
  font-style: italic;
  margin: 0;
}

.quote-author-index p {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  font-weight: var(--fw-semibold);
  margin: 0;
}

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

.features-section-index {
  background: var(--color-bg-light-primary);
  color: var(--color-text-on-light);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.features-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.features-title-index {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-on-light);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}

.features-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.feature-item-index {
  flex: 1 1 300px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: center;
  transition: all var(--transition-base);
}

.feature-item-index:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-number-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.feature-name-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-light);
  font-family: var(--font-primary);
  margin: 0;
}

.feature-desc-index {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

@media (max-width: 768px) {
  .feature-item-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.blog-section-index {
  background: var(--color-bg-light-secondary);
  color: var(--color-text-on-light);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.blog-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.blog-title-index {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-text-on-light);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}

.blog-subtitle-index {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

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

.blog-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.blog-card-index:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.blog-image-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.blog-image-index img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.blog-content-card-index {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.blog-card-title-index {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-light);
  font-family: var(--font-primary);
  margin: 0;
  line-height: var(--lh-tight);
}

.blog-card-text-index {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  margin: 0;
  flex: 1 1 auto;
}

.blog-link-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: color var(--transition-fast);
  align-self: flex-start;
}

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

.blog-cta-index {
  text-align: center;
  margin-top: var(--space-lg);
}

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

.cta-section-index {
  background: var(--color-bg-light-primary);
  color: var(--color-text-on-light);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-2xl);
  text-align: center;
  color: #0a0f1e;
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: 0 15px 35px rgba(212, 165, 116, 0.3);
}

.cta-title-index {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #0a0f1e;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin: 0;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #1a1a1a;
  line-height: var(--lh-relaxed);
  margin: 0;
}

.cta-buttons-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.cta-buttons-index .btn {
  flex: 0 1 auto;
  min-width: 160px;
}

.cta-buttons-index .btn-primary {
  background: #0a0f1e;
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(10, 15, 30, 0.3);
}

.cta-buttons-index .btn-primary:hover {
  background: #1a2a40;
  box-shadow: 0 6px 20px rgba(10, 15, 30, 0.4);
}

.cta-buttons-index .btn-secondary {
  background: rgba(10, 15, 30, 0.1);
  color: #0a0f1e;
  border: 2px solid #0a0f1e;
}

.cta-buttons-index .btn-secondary:hover {
  background: rgba(10, 15, 30, 0.2);
}

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

  .cta-buttons-index .btn {
    width: 100%;
    min-width: auto;
  }

  .cta-box-index {
    padding: clamp(1.5rem, 4vw, 2.5rem);
  }
}

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

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

.cookie-banner-text-index {
  color: #f1f5f9;
  margin: 0;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  line-height: var(--lh-normal);
  flex: 1 1 auto;
  min-width: 200px;
}

.cookie-banner-buttons-index {
  display: flex;
  flex-direction: row;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: var(--fw-semibold);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.cookie-btn-accept-index {
  background: var(--color-primary);
  color: #0a0f1e;
  box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.cookie-btn-accept-index:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.cookie-btn-decline-index {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.cookie-btn-decline-index:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

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

  .cookie-banner-buttons-index {
    width: 100%;
  }

  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 45%;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .cookie-btn-accept-index,
  .cookie-btn-decline-index {
    flex: 1 1 100%;
  }
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: var(--fw-semibold);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg-dark-hero);
  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);
}

.btn-secondary {
  background: var(--color-bg-light-secondary);
  color: var(--color-text-on-light);
  border: 2px solid var(--color-primary);
  transition: all var(--transition-base);
}

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

@media (max-width: 768px) {
  .wellness-hub section {
    padding-top: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
  }
}

    .footer {
  background: var(--color-bg-dark-hero);
  color: var(--color-text-secondary-dark);
  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(2.5rem, 5vw, 4rem);
}

.footer-about {
  max-width: 90%;
}

.footer-about h3,
.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  color: var(--color-text-on-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: var(--fw-semibold);
  margin-bottom: clamp(0.875rem, 2vw, 1.25rem);
  letter-spacing: 0.3px;
}

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

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

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

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

.footer-contact p {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: var(--lh-relaxed);
  margin: 0;
  padding: clamp(0.25rem, 0.5vw, 0.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-copyright {
  border-top: 1px solid rgba(203, 213, 225, 0.1);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2.5rem, 4vw, 3.5rem);
    align-items: start;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }

  .footer-about {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    gap: clamp(2rem, 3vw, 3rem);
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }
}
    

.category-page-gratitude-wellbeing {
  width: 100%;
  overflow: hidden;
}

.hero-section-gratitude-wellbeing {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-gratitude-wellbeing::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-text-wrapper-gratitude-wellbeing {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 700px;
}

.hero-badge-gratitude-wellbeing {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-title-gratitude-wellbeing {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-subtitle-gratitude-wellbeing {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin: 0;
}

.hero-description-gratitude-wellbeing {
  color: #94a3b8;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
}

.hero-text-wrapper-gratitude-wellbeing .btn {
  align-self: flex-start;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.posts-section-gratitude-wellbeing {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

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

.posts-title-gratitude-wellbeing {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

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

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

.card-gratitude-wellbeing {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1 1 300px;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.card-gratitude-wellbeing:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #d4a574;
}

.card-image-wrapper-gratitude-wellbeing {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  overflow: hidden;
  border-radius: 8px;
  margin: -1.25rem -1.25rem 0 -1.25rem;
}

.card-image-wrapper-gratitude-wellbeing img {
  width: 100%;

  object-fit: cover;
  display: block;
}

.card-title-gratitude-wellbeing {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.card-description-gratitude-wellbeing {
  color: #64748b;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.card-meta-gratitude-wellbeing {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  color: #9ca3af;
  font-size: 0.85rem;
  margin: clamp(0.5rem, 1vw, 1rem) 0;
}

.card-reading-time-gratitude-wellbeing,
.card-level-gratitude-wellbeing,
.card-date-gratitude-wellbeing {
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-reading-time-gratitude-wellbeing i,
.card-level-gratitude-wellbeing i,
.card-date-gratitude-wellbeing i {
  color: #d4a574;
  font-size: 0.9rem;
}

.card-link-gratitude-wellbeing {
  color: #d4a574;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.card-link-gratitude-wellbeing:hover {
  color: #c49563;
  text-decoration: underline;
}

.insights-section-gratitude-wellbeing {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

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

.insights-header-gratitude-wellbeing {
  text-align: center;
}

.insights-title-gratitude-wellbeing {
  color: #1e293b;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.insights-intro-gratitude-wellbeing {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.insight-card-gratitude-wellbeing {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
  flex: 1 1 250px;
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.insight-card-gratitude-wellbeing:hover {
  box-shadow: 0 8px 16px rgba(212, 165, 116, 0.12);
  border-color: #d4a574;
}

.insight-number-gratitude-wellbeing {
  color: #d4a574;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.insight-heading-gratitude-wellbeing {
  color: #1e293b;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.insight-text-gratitude-wellbeing {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.benefits-section-gratitude-wellbeing {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.benefits-section-gratitude-wellbeing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="25" r="1.5" fill="rgba(212,165,116,0.05)"/><circle cx="55" cy="45" r="1.5" fill="rgba(212,165,116,0.05)"/><circle cx="85" cy="75" r="1.5" fill="rgba(212,165,116,0.05)"/></svg>');
  pointer-events: none;
}

.benefits-content-gratitude-wellbeing {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.benefits-header-gratitude-wellbeing {
  text-align: center;
}

.benefits-title-gratitude-wellbeing {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.benefits-intro-gratitude-wellbeing {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-list-gratitude-wellbeing {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.benefit-item-gratitude-wellbeing {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
  flex: 1 1 240px;
  max-width: 300px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item-gratitude-wellbeing:hover {
  background: rgba(212, 165, 116, 0.08);
  border-color: #d4a574;
  transform: translateY(-4px);
}

.benefit-icon-gratitude-wellbeing {
  color: #d4a574;
  font-size: clamp(2.5rem, 5vw, 3rem);
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(3rem, 6vw, 4rem);
}

.benefit-name-gratitude-wellbeing {
  color: #ffffff;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.benefit-description-gratitude-wellbeing {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section-gratitude-wellbeing {
    padding: 3rem 0;
  }

  .hero-section-gratitude-wellbeing::before {
    top: -60%;
    right: -30%;
    width: 400px;
    height: 400px;
  }

  .posts-section-gratitude-wellbeing {
    padding: 3rem 0;
  }

  .insights-section-gratitude-wellbeing {
    padding: 3rem 0;
  }

  .benefits-section-gratitude-wellbeing {
    padding: 3rem 0;
  }

  .card-gratitude-wellbeing {
    flex: 1 1 100%;
    max-width: none;
  }

  .posts-grid-gratitude-wellbeing {
    flex-direction: column;
    align-items: stretch;
  }

  .insights-grid-gratitude-wellbeing {
    flex-direction: column;
    align-items: stretch;
  }

  .insight-card-gratitude-wellbeing {
    flex: 1 1 100%;
    max-width: none;
  }

  .benefits-list-gratitude-wellbeing {
    flex-direction: column;
    align-items: stretch;
  }

  .benefit-item-gratitude-wellbeing {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .card-meta-gratitude-wellbeing {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .hero-text-wrapper-gratitude-wellbeing .btn {
    width: 100%;
    justify-content: center;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #d4a574;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: #c49563;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-accent {
  background: rgba(212, 165, 116, 0.15);
  color: #d4a574;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #d4a574;
  color: #0a0f1e;
  box-shadow: 0 4px 6px rgba(212, 165, 116, 0.2);
}

.btn-primary:hover {
  background: #c49563;
  box-shadow: 0 10px 15px rgba(212, 165, 116, 0.3);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.main-meditatie-voor-beginners {
  width: 100%;
  background: #0f172a;
  color: #ffffff;
}

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

.hero-section-meditatie-voor-beginners::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-meditatie-voor-beginners {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 3vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-meditatie-voor-beginners a {
  color: #f97316;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-meditatie-voor-beginners a:hover {
  color: #facc15;
  text-decoration: underline;
}

.breadcrumbs-meditatie-voor-beginners span {
  color: #64748b;
}

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

.hero-text-meditatie-voor-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-meditatie-voor-beginners {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-meditatie-voor-beginners {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.hero-meta-meditatie-voor-beginners {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
}

.meta-item-meditatie-voor-beginners {
  color: #cbd5e1;
}

.meta-divider-meditatie-voor-beginners {
  color: #475569;
}

.hero-image-meditatie-voor-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-meditatie-voor-beginners {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.4);
}

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

  .hero-text-meditatie-voor-beginners,
  .hero-image-meditatie-voor-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-meditatie-voor-beginners {
    font-size: 1.75rem;
  }

  .hero-subtitle-meditatie-voor-beginners {
    font-size: 1rem;
  }
}

.intro-section-meditatie-voor-beginners {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-meditatie-voor-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-meditatie-voor-beginners {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-meditatie-voor-beginners {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-meditatie-voor-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-meditatie-voor-beginners img {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .intro-content-meditatie-voor-beginners {
    flex-direction: column;
  }

  .intro-text-meditatie-voor-beginners,
  .intro-image-meditatie-voor-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-title-meditatie-voor-beginners {
    font-size: 1.5rem;
  }

  .intro-paragraph-meditatie-voor-beginners {
    font-size: 1rem;
  }
}

.getting-started-section-meditatie-voor-beginners {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.getting-started-content-meditatie-voor-beginners {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.getting-started-text-meditatie-voor-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.getting-started-title-meditatie-voor-beginners {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.getting-started-intro-meditatie-voor-beginners {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.steps-wrapper-meditatie-voor-beginners {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 2rem);
}

.step-card-meditatie-voor-beginners {
  background: rgba(249, 115, 22, 0.08);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  border-left: 4px solid #f97316;
  transition: all 0.3s ease;
}

.step-card-meditatie-voor-beginners:hover {
  background: rgba(249, 115, 22, 0.12);
  transform: translateX(8px);
}

.step-number-meditatie-voor-beginners {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #f97316;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.step-title-meditatie-voor-beginners {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-text-meditatie-voor-beginners {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.65;
}

.getting-started-image-meditatie-voor-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.getting-started-image-meditatie-voor-beginners img {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .getting-started-content-meditatie-voor-beginners {
    flex-direction: column;
  }

  .getting-started-text-meditatie-voor-beginners,
  .getting-started-image-meditatie-voor-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .getting-started-title-meditatie-voor-beginners {
    font-size: 1.5rem;
  }
}

.benefits-section-meditatie-voor-beginners {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-content-meditatie-voor-beginners {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.benefits-text-meditatie-voor-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-title-meditatie-voor-beginners {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.benefits-intro-meditatie-voor-beginners {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.benefits-list-meditatie-voor-beginners {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 2rem);
}

.benefit-item-meditatie-voor-beginners {
  padding: clamp(1rem, 1.5vw, 1.5rem);
  background: rgba(249, 115, 22, 0.06);
  border-radius: clamp(0.5rem, 1vw, 0.75rem);
}

.benefit-item-title-meditatie-voor-beginners {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #f97316;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-item-text-meditatie-voor-beginners {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.65;
}

.benefits-image-meditatie-voor-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-image-meditatie-voor-beginners img {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .benefits-content-meditatie-voor-beginners {
    flex-direction: column;
  }

  .benefits-text-meditatie-voor-beginners,
  .benefits-image-meditatie-voor-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .benefits-title-meditatie-voor-beginners {
    font-size: 1.5rem;
  }
}

.common-mistakes-section-meditatie-voor-beginners {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.common-mistakes-content-meditatie-voor-beginners {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.common-mistakes-text-meditatie-voor-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.common-mistakes-title-meditatie-voor-beginners {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.common-mistakes-intro-meditatie-voor-beginners {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.mistake-card-meditatie-voor-beginners {
  background: rgba(249, 115, 22, 0.08);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.mistake-card-meditatie-voor-beginners:last-child {
  margin-bottom: 0;
}

.mistake-card-meditatie-voor-beginners:hover {
  background: rgba(249, 115, 22, 0.12);
}

.mistake-title-meditatie-voor-beginners {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #f97316;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mistake-text-meditatie-voor-beginners {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.65;
}

.common-mistakes-image-meditatie-voor-beginners {
  flex: 1 1 50%;
  max-width: 50%;
}

.common-mistakes-image-meditatie-voor-beginners img {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .common-mistakes-content-meditatie-voor-beginners {
    flex-direction: column;
  }

  .common-mistakes-text-meditatie-voor-beginners,
  .common-mistakes-image-meditatie-voor-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .common-mistakes-title-meditatie-voor-beginners {
    font-size: 1.5rem;
  }
}

.conclusion-section-meditatie-voor-beginners {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  text-align: center;
}

.conclusion-content-meditatie-voor-beginners {
  max-width: 700px;
  margin: 0 auto;
}

.conclusion-title-meditatie-voor-beginners {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.conclusion-text-meditatie-voor-beginners {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.conclusion-quote-meditatie-voor-beginners {
  background: rgba(249, 115, 22, 0.08);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-left: 4px solid #f97316;
  border-radius: clamp(0.5rem, 1vw, 0.75rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  text-align: left;
}

.quote-text-meditatie-voor-beginners {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.quote-author-meditatie-voor-beginners {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #f97316;
  font-weight: 600;
}

.disclaimer-section-meditatie-voor-beginners {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-meditatie-voor-beginners {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(249, 115, 22, 0.08);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  border-left: 4px solid #f97316;
}

.disclaimer-title-meditatie-voor-beginners {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #f97316;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.disclaimer-text-meditatie-voor-beginners {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #cbd5e1;
  line-height: 1.75;
}

.related-section-meditatie-voor-beginners {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-meditatie-voor-beginners {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.related-cards-meditatie-voor-beginners {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-meditatie-voor-beginners {
  flex: 1 1 300px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-meditatie-voor-beginners:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: #f97316;
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.related-card-image-meditatie-voor-beginners {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-meditatie-voor-beginners img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-meditatie-voor-beginners:hover .related-card-image-meditatie-voor-beginners img {
  transform: scale(1.05);
}

.related-card-text-meditatie-voor-beginners {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-meditatie-voor-beginners {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.4;
}

.related-card-description-meditatie-voor-beginners {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-meditatie-voor-beginners {
  display: inline-flex;
  align-items: center;
  color: #f97316;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-meditatie-voor-beginners:hover {
  color: #facc15;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-cards-meditatie-voor-beginners {
    flex-direction: column;
  }

  .related-card-meditatie-voor-beginners {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-quote-meditatie-voor-beginners {
    text-align: center;
    border-left: none;
    border-top: 4px solid #f97316;
    padding-top: clamp(1.25rem, 2vw, 1.75rem);
  }
}

@media (max-width: 480px) {
  .breadcrumbs-meditatie-voor-beginners {
    flex-wrap: wrap;
  }

  .hero-meta-meditatie-voor-beginners {
    flex-wrap: wrap;
  }
}

.main-dankbaarheid-dagboek-starten {
  width: 100%;
  background: #ffffff;
}

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

.hero-section-dankbaarheid-dagboek-starten::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-dankbaarheid-dagboek-starten {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-dankbaarheid-dagboek-starten a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumbs-dankbaarheid-dagboek-starten a:hover {
  color: #d4a574;
}

.breadcrumbs-dankbaarheid-dagboek-starten span {
  color: #64748b;
}

.breadcrumbs-dankbaarheid-dagboek-starten > span:last-child {
  color: #cbd5e1;
}

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

.hero-text-wrapper-dankbaarheid-dagboek-starten {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-dankbaarheid-dagboek-starten {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
}

.hero-lead-dankbaarheid-dagboek-starten {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.hero-meta-dankbaarheid-dagboek-starten {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
}

.meta-item-dankbaarheid-dagboek-starten {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-dankbaarheid-dagboek-starten {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-dankbaarheid-dagboek-starten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-wrapper-dankbaarheid-dagboek-starten,
  .hero-image-dankbaarheid-dagboek-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-meta-dankbaarheid-dagboek-starten {
    gap: 1rem;
  }

  .breadcrumbs-dankbaarheid-dagboek-starten {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
}

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

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

.intro-text-dankbaarheid-dagboek-starten {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-dankbaarheid-dagboek-starten {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
}

.intro-paragraph-dankbaarheid-dagboek-starten {
  font-size: 1rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.intro-image-dankbaarheid-dagboek-starten {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-dankbaarheid-dagboek-starten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-dankbaarheid-dagboek-starten {
    flex-direction: column;
  }

  .intro-text-dankbaarheid-dagboek-starten,
  .intro-image-dankbaarheid-dagboek-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.why-section-dankbaarheid-dagboek-starten {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.why-content-dankbaarheid-dagboek-starten {
  display: flex;
  flex-direction: column;
}

.why-title-dankbaarheid-dagboek-starten {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-family: 'Playfair Display', serif;
}

.why-cards-dankbaarheid-dagboek-starten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.why-card-dankbaarheid-dagboek-starten {
  flex: 1 1 calc(50% - 1rem);
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  transition: all 250ms ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.why-card-dankbaarheid-dagboek-starten:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #d4a574;
}

.card-icon-dankbaarheid-dagboek-starten {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  background: rgba(212, 165, 116, 0.1);
  border-radius: 50%;
  font-size: 1.75rem;
  color: #d4a574;
}

.card-title-dankbaarheid-dagboek-starten {
  font-size: 1.125rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.card-text-dankbaarheid-dagboek-starten {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-card-dankbaarheid-dagboek-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.process-content-dankbaarheid-dagboek-starten {
  display: flex;
  flex-direction: column;
}

.process-title-dankbaarheid-dagboek-starten {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-family: 'Playfair Display', serif;
}

.process-steps-dankbaarheid-dagboek-starten {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.process-step-dankbaarheid-dagboek-starten {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-dankbaarheid-dagboek-starten {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #d4a574;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  min-width: clamp(80px, 15vw, 140px);
  text-align: center;
}

.step-content-dankbaarheid-dagboek-starten {
  flex: 1;
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.step-title-dankbaarheid-dagboek-starten {
  font-size: 1.25rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.step-text-dankbaarheid-dagboek-starten {
  font-size: 1rem;
  color: #374151;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .process-step-dankbaarheid-dagboek-starten {
    gap: 1rem;
  }

  .step-number-dankbaarheid-dagboek-starten {
    min-width: 60px;
  }
}

.implementation-section-dankbaarheid-dagboek-starten {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-text-dankbaarheid-dagboek-starten {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-dankbaarheid-dagboek-starten {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Playfair Display', serif;
}

.implementation-paragraph-dankbaarheid-dagboek-starten {
  font-size: 1rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.highlight-box-dankbaarheid-dagboek-starten {
  background: #ffffff;
  border-left: 4px solid #d4a574;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 4px;
  margin-top: clamp(1.5rem, 2vw, 2rem);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.highlight-text-dankbaarheid-dagboek-starten {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.implementation-image-dankbaarheid-dagboek-starten {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-dankbaarheid-dagboek-starten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .implementation-content-dankbaarheid-dagboek-starten {
    flex-direction: column;
  }

  .implementation-text-dankbaarheid-dagboek-starten,
  .implementation-image-dankbaarheid-dagboek-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tips-section-dankbaarheid-dagboek-starten {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-content-dankbaarheid-dagboek-starten {
  display: flex;
  flex-direction: column;
}

.tips-title-dankbaarheid-dagboek-starten {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-family: 'Playfair Display', serif;
}

.tips-grid-dankbaarheid-dagboek-starten {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-dankbaarheid-dagboek-starten {
  flex: 1 1 calc(50% - 1rem);
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(139, 115, 85, 0.03) 100%);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 12px;
  text-align: left;
  transition: all 250ms ease;
}

.tip-card-dankbaarheid-dagboek-starten:hover {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(139, 115, 85, 0.08) 100%);
  border-color: #d4a574;
  transform: translateY(-4px);
}

.tip-heading-dankbaarheid-dagboek-starten {
  font-size: 1.125rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.tip-text-dankbaarheid-dagboek-starten {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tip-card-dankbaarheid-dagboek-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.results-section-dankbaarheid-dagboek-starten {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.results-content-dankbaarheid-dagboek-starten {
  display: flex;
  flex-direction: column;
}

.results-title-dankbaarheid-dagboek-starten {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-family: 'Playfair Display', serif;
}

.results-wrapper-dankbaarheid-dagboek-starten {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.results-timeline-dankbaarheid-dagboek-starten {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.timeline-item-dankbaarheid-dagboek-starten {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-left: 4px solid #d4a574;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.timeline-week-dankbaarheid-dagboek-starten {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #d4a574;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.timeline-text-dankbaarheid-dagboek-starten {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.results-image-dankbaarheid-dagboek-starten {
  flex: 1 1 50%;
  max-width: 50%;
}

.results-img-dankbaarheid-dagboek-starten {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .results-wrapper-dankbaarheid-dagboek-starten {
    flex-direction: column;
  }

  .results-timeline-dankbaarheid-dagboek-starten,
  .results-image-dankbaarheid-dagboek-starten {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-dankbaarheid-dagboek-starten {
  background: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-dankbaarheid-dagboek-starten {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-quote-dankbaarheid-dagboek-starten {
  max-width: 700px;
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: none;
  border-top: 3px solid #d4a574;
  border-bottom: 3px solid #d4a574;
  background: transparent;
  box-shadow: none;
}

.quote-text-dankbaarheid-dagboek-starten {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.quote-author-dankbaarheid-dagboek-starten {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: normal;
  font-weight: 500;
  display: block;
}

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

.conclusion-content-dankbaarheid-dagboek-starten {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-dankbaarheid-dagboek-starten {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-family: 'Playfair Display', serif;
}

.conclusion-text-dankbaarheid-dagboek-starten {
  font-size: 1rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.conclusion-cta-dankbaarheid-dagboek-starten {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.btn-cta-dankbaarheid-dagboek-starten {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 1.5vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #d4a574;
  color: #0a0f1e;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 250ms ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta-dankbaarheid-dagboek-starten:hover {
  background: #c49563;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.disclaimer-section-dankbaarheid-dagboek-starten {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-dankbaarheid-dagboek-starten {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #94a3b8;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-dankbaarheid-dagboek-starten {
  font-size: 1.125rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.disclaimer-text-dankbaarheid-dagboek-starten {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

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

.related-content-dankbaarheid-dagboek-starten {
  display: flex;
  flex-direction: column;
}

.related-title-dankbaarheid-dagboek-starten {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-family: 'Playfair Display', serif;
}

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

.related-card-dankbaarheid-dagboek-starten {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.related-card-dankbaarheid-dagboek-starten:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #d4a574;
}

.related-link-dankbaarheid-dagboek-starten {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.related-image-dankbaarheid-dagboek-starten {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-dankbaarheid-dagboek-starten img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.related-card-dankbaarheid-dagboek-starten:hover .related-image-dankbaarheid-dagboek-starten img {
  transform: scale(1.05);
}

.related-text-dankbaarheid-dagboek-starten {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-dankbaarheid-dagboek-starten {
  font-size: 1.05rem;
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}

.related-card-desc-dankbaarheid-dagboek-starten {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

a {
  color: #d4a574;
  text-decoration: none;
  transition: color 150ms ease;
}

a:hover {
  color: #c49563;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }
}

.main-positieve-psychologie-dagelijks {
  width: 100%;
  background: #ffffff;
}

.hero-section-positieve-psychologie-dagelijks {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f35 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-positieve-psychologie-dagelijks::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-positieve-psychologie-dagelijks {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-positieve-psychologie-dagelijks a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-positieve-psychologie-dagelijks a:hover {
  color: #d4a574;
}

.breadcrumbs-positieve-psychologie-dagelijks span {
  color: #94a3b8;
}

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

.hero-text-wrapper-positieve-psychologie-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-badge-positieve-psychologie-dagelijks {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(212, 165, 116, 0.2);
  color: #d4a574;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero-title-positieve-psychologie-dagelijks {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.hero-subtitle-positieve-psychologie-dagelijks {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-meta-positieve-psychologie-dagelijks {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #94a3b8;
  flex-wrap: wrap;
}

.meta-item-positieve-psychologie-dagelijks {
  display: inline;
}

.meta-divider-positieve-psychologie-dagelijks {
  color: #475569;
}

.hero-image-wrapper-positieve-psychologie-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-positieve-psychologie-dagelijks {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-wrapper-positieve-psychologie-dagelijks,
  .hero-image-wrapper-positieve-psychologie-dagelijks {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-positieve-psychologie-dagelijks {
    font-size: 1.75rem;
  }

  .hero-subtitle-positieve-psychologie-dagelijks {
    font-size: 1rem;
  }
}

.intro-section-positieve-psychologie-dagelijks {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-block-positieve-psychologie-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-lead-positieve-psychologie-dagelijks {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  color: #1e293b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.intro-body-positieve-psychologie-dagelijks {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.intro-image-block-positieve-psychologie-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-positieve-psychologie-dagelijks {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-positieve-psychologie-dagelijks {
    flex-direction: column;
  }

  .intro-text-block-positieve-psychologie-dagelijks,
  .intro-image-block-positieve-psychologie-dagelijks {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-lead-positieve-psychologie-dagelijks {
    font-size: 1.125rem;
  }
}

.content-one-section-positieve-psychologie-dagelijks {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-one-text-positieve-psychologie-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-positieve-psychologie-dagelijks {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.content-one-body-positieve-psychologie-dagelijks {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.content-one-tips-positieve-psychologie-dagelijks {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
}

.tip-item-positieve-psychologie-dagelijks {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.tip-item-positieve-psychologie-dagelijks::before {
  content: '';
  position: absolute;
  left: 0;
  color: #6b9e7a;
  font-weight: 700;
  font-size: 1.1rem;
}

.content-one-image-positieve-psychologie-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-img-positieve-psychologie-dagelijks {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .content-one-text-positieve-psychologie-dagelijks,
  .content-one-image-positieve-psychologie-dagelijks {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-one-title-positieve-psychologie-dagelijks {
    font-size: 1.5rem;
  }
}

.content-two-section-positieve-psychologie-dagelijks {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-two-image-positieve-psychologie-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-two-img-positieve-psychologie-dagelijks {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-two-text-positieve-psychologie-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-positieve-psychologie-dagelijks {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.content-two-body-positieve-psychologie-dagelijks {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

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

  .content-two-image-positieve-psychologie-dagelijks,
  .content-two-text-positieve-psychologie-dagelijks {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .content-two-title-positieve-psychologie-dagelijks {
    font-size: 1.5rem;
  }
}

.content-three-section-positieve-psychologie-dagelijks {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-three-text-positieve-psychologie-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-positieve-psychologie-dagelijks {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.content-three-body-positieve-psychologie-dagelijks {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.content-three-image-positieve-psychologie-dagelijks {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-img-positieve-psychologie-dagelijks {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .content-three-text-positieve-psychologie-dagelijks,
  .content-three-image-positieve-psychologie-dagelijks {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-three-title-positieve-psychologie-dagelijks {
    font-size: 1.5rem;
  }
}

.highlight-section-positieve-psychologie-dagelijks {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.highlight-content-positieve-psychologie-dagelijks {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.highlight-box-positieve-psychologie-dagelijks {
  padding: clamp(2rem, 4vw, 3rem);
}

.highlight-title-positieve-psychologie-dagelijks {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.highlight-text-positieve-psychologie-dagelijks {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.conclusion-section-positieve-psychologie-dagelijks {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-positieve-psychologie-dagelijks {
  max-width: 700px;
  margin: 0 auto;
}

.conclusion-text-positieve-psychologie-dagelijks {
  text-align: center;
}

.conclusion-title-positieve-psychologie-dagelijks {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.conclusion-body-positieve-psychologie-dagelijks {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.related-section-positieve-psychologie-dagelijks {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-positieve-psychologie-dagelijks {
  text-align: center;
}

.related-title-positieve-psychologie-dagelijks {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.related-subtitle-positieve-psychologie-dagelijks {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 3rem;
}

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

.related-card-positieve-psychologie-dagelijks {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #1e293b;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-positieve-psychologie-dagelijks:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.related-card-image-positieve-psychologie-dagelijks {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-positieve-psychologie-dagelijks img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-positieve-psychologie-dagelijks {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-card-title-positieve-psychologie-dagelijks {
  font-size: 1.125rem;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.related-card-description-positieve-psychologie-dagelijks {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

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

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

  .related-cards-positieve-psychologie-dagelijks {
    flex-direction: column;
  }
}

.disclaimer-section-positieve-psychologie-dagelijks {
  background: #1e293b;
  color: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-positieve-psychologie-dagelijks {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(212, 165, 116, 0.05);
  border-left: 4px solid #d4a574;
  border-radius: 8px;
}

.disclaimer-title-positieve-psychologie-dagelijks {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #d4a574;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-positieve-psychologie-dagelijks {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.75;
}

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

@media (max-width: 768px) {
  .hero-section-positieve-psychologie-dagelijks {
    padding: 2rem 0;
  }

  .intro-section-positieve-psychologie-dagelijks,
  .content-one-section-positieve-psychologie-dagelijks,
  .content-two-section-positieve-psychologie-dagelijks,
  .content-three-section-positieve-psychologie-dagelijks,
  .related-section-positieve-psychologie-dagelijks,
  .conclusion-section-positieve-psychologie-dagelijks {
    padding: 2rem 0;
  }
}

.main-dankbaarheid-relaties-versterken {
  width: 100%;
  background: #ffffff;
}

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

.breadcrumbs-dankbaarheid-relaties-versterken {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #64748b;
  flex-wrap: wrap;
}

.breadcrumbs-dankbaarheid-relaties-versterken a {
  color: #d4a574;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-dankbaarheid-relaties-versterken a:hover {
  color: #c49563;
  text-decoration: underline;
}

.breadcrumbs-dankbaarheid-relaties-versterken span {
  color: #cbd5e1;
}

.hero-section-dankbaarheid-relaties-versterken {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1a2e 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-dankbaarheid-relaties-versterken::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-dankbaarheid-relaties-versterken {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text-dankbaarheid-relaties-versterken {
  text-align: center;
  max-width: 700px;
}

.hero-meta-dankbaarheid-relaties-versterken {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(212, 165, 116, 0.15);
  color: #d4a574;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero-title-dankbaarheid-relaties-versterken {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}

.hero-subtitle-dankbaarheid-relaties-versterken {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.7;
  font-weight: 400;
}

.hero-image-dankbaarheid-relaties-versterken {
  width: 100%;
  max-width: 900px;
}

.hero-img-dankbaarheid-relaties-versterken {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

.intro-section-dankbaarheid-relaties-versterken {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.intro-text-dankbaarheid-relaties-versterken {
  max-width: 800px;
}

.intro-paragraph-dankbaarheid-relaties-versterken {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-paragraph-dankbaarheid-relaties-versterken:last-of-type {
  margin-bottom: 0;
}

.intro-highlight-dankbaarheid-relaties-versterken {
  width: 100%;
  max-width: 700px;
}

.highlight-box-dankbaarheid-relaties-versterken {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(139, 115, 85, 0.05) 100%);
  border: 2px solid #d4a574;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.highlight-title-dankbaarheid-relaties-versterken {
  font-size: 1.25rem;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.highlight-text-dankbaarheid-relaties-versterken {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

.content-section-one-dankbaarheid-relaties-versterken {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-text-one-dankbaarheid-relaties-versterken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-dankbaarheid-relaties-versterken {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.content-para-one-dankbaarheid-relaties-versterken {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-image-one-dankbaarheid-relaties-versterken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-dankbaarheid-relaties-versterken img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.content-section-two-dankbaarheid-relaties-versterken {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-image-two-dankbaarheid-relaties-versterken {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-image-two-dankbaarheid-relaties-versterken img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.content-text-two-dankbaarheid-relaties-versterken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-dankbaarheid-relaties-versterken {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.content-para-two-dankbaarheid-relaties-versterken {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.methods-list-dankbaarheid-relaties-versterken {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.method-card-dankbaarheid-relaties-versterken {
  background: rgba(212, 165, 116, 0.08);
  border-left: 4px solid #d4a574;
  padding: 1.5rem;
  border-radius: 8px;
}

.method-title-dankbaarheid-relaties-versterken {
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.method-text-dankbaarheid-relaties-versterken {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

.quote-section-dankbaarheid-relaties-versterken {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f1419 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-dankbaarheid-relaties-versterken {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid #d4a574;
  background: rgba(212, 165, 116, 0.08);
  border-radius: 8px;
  font-style: italic;
}

.quote-text-dankbaarheid-relaties-versterken {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.quote-author-dankbaarheid-relaties-versterken {
  font-size: 0.95rem;
  color: #cbd5e1;
  display: block;
  font-style: normal;
  font-weight: 500;
}

.content-section-three-dankbaarheid-relaties-versterken {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.content-text-three-dankbaarheid-relaties-versterken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-dankbaarheid-relaties-versterken {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.content-para-three-dankbaarheid-relaties-versterken {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-image-three-dankbaarheid-relaties-versterken {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-dankbaarheid-relaties-versterken img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.tips-section-dankbaarheid-relaties-versterken {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tips-content-dankbaarheid-relaties-versterken {
  max-width: 1000px;
  margin: 0 auto;
}

.tips-title-dankbaarheid-relaties-versterken {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.tips-grid-dankbaarheid-relaties-versterken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tip-card-dankbaarheid-relaties-versterken {
  flex: 1 1 calc(50% - 1rem);
  max-width: 350px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.tip-card-dankbaarheid-relaties-versterken:hover {
  border-color: #d4a574;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.tip-icon-dankbaarheid-relaties-versterken {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.tip-heading-dankbaarheid-relaties-versterken {
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tip-text-dankbaarheid-relaties-versterken {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

.conclusion-section-dankbaarheid-relaties-versterken {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1a2e 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

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

.conclusion-text-dankbaarheid-relaties-versterken {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-dankbaarheid-relaties-versterken {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.conclusion-para-dankbaarheid-relaties-versterken {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-image-dankbaarheid-relaties-versterken {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-dankbaarheid-relaties-versterken img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

.disclaimer-section-dankbaarheid-relaties-versterken {
  background: #f8fafc;
  color: #1e293b;
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: 2px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-dankbaarheid-relaties-versterken {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-title-dankbaarheid-relaties-versterken {
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-dankbaarheid-relaties-versterken {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

.related-section-dankbaarheid-relaties-versterken {
  background: #ffffff;
  color: #1e293b;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-top: 2px solid #e2e8f0;
}

.related-content-dankbaarheid-relaties-versterken {
  max-width: 1200px;
  margin: 0 auto;
}

.related-title-dankbaarheid-relaties-versterken {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.related-grid-dankbaarheid-relaties-versterken {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-dankbaarheid-relaties-versterken {
  flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 380px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-card-dankbaarheid-relaties-versterken:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #d4a574;
}

.related-image-dankbaarheid-relaties-versterken {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.related-image-dankbaarheid-relaties-versterken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-body-dankbaarheid-relaties-versterken {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-card-title-dankbaarheid-relaties-versterken {
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
}

.related-card-text-dankbaarheid-relaties-versterken {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
  flex-grow: 1;
}

.related-link-dankbaarheid-relaties-versterken {
  display: inline-block;
  color: #d4a574;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-link-dankbaarheid-relaties-versterken:hover {
  color: #c49563;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .tip-card-dankbaarheid-relaties-versterken {
    flex: 1 1 calc(50% - 0.75rem);
  }
  
  .related-card-dankbaarheid-relaties-versterken {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .hero-content-dankbaarheid-relaties-versterken {
    text-align: center;
  }

  .content-wrapper-one-dankbaarheid-relaties-versterken,
  .content-wrapper-two-dankbaarheid-relaties-versterken,
  .content-wrapper-three-dankbaarheid-relaties-versterken,
  .conclusion-content-dankbaarheid-relaties-versterken {
    flex-direction: column;
  }

  .content-text-one-dankbaarheid-relaties-versterken,
  .content-text-two-dankbaarheid-relaties-versterken,
  .content-text-three-dankbaarheid-relaties-versterken,
  .content-image-one-dankbaarheid-relaties-versterken,
  .content-image-two-dankbaarheid-relaties-versterken,
  .content-image-three-dankbaarheid-relaties-versterken,
  .conclusion-text-dankbaarheid-relaties-versterken,
  .conclusion-image-dankbaarheid-relaties-versterken {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-image-two-dankbaarheid-relaties-versterken {
    order: 0;
  }

  .tip-card-dankbaarheid-relaties-versterken {
    flex: 1 1 100%;
  }

  .related-card-dankbaarheid-relaties-versterken {
    flex: 1 1 100%;
  }

  .tips-grid-dankbaarheid-relaties-versterken {
    flex-direction: column;
  }

  .related-grid-dankbaarheid-relaties-versterken {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title-dankbaarheid-relaties-versterken {
    font-size: 1.75rem;
  }

  .content-title-one-dankbaarheid-relaties-versterken,
  .content-title-two-dankbaarheid-relaties-versterken,
  .content-title-three-dankbaarheid-relaties-versterken,
  .conclusion-title-dankbaarheid-relaties-versterken,
  .tips-title-dankbaarheid-relaties-versterken,
  .related-title-dankbaarheid-relaties-versterken {
    font-size: 1.25rem;
  }

  .method-card-dankbaarheid-relaties-versterken {
    padding: 1rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

.gratitude-practice-main-about {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-gratitude-section-about {
  background: var(--color-bg-dark-hero);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

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

.hero-gratitude-title-about {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: var(--lh-tight);
}

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

.hero-gratitude-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 1rem 0;
}

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

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

.stat-number-gratitude-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.stat-label-gratitude-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-muted-dark);
  font-weight: 500;
}

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

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

.section-header-gratitude-about {
  text-align: center;
}

.section-tag-gratitude-about {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: rgba(212, 165, 116, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.foundation-title-gratitude-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-on-light);
  line-height: var(--lh-tight);
  margin-bottom: 1rem;
}

.foundation-subtitle-gratitude-about {
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary-light);
  max-width: 650px;
  margin: 0 auto 2rem;
}

.foundation-grid-gratitude-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.foundation-card-gratitude-about {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

.foundation-card-gratitude-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.foundation-card-icon-gratitude-about {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.foundation-card-title-gratitude-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--color-text-on-light);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.foundation-card-text-gratitude-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
}

.methodology-gratitude-section-about {
  background: var(--color-bg-dark-accent);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.methodology-header-gratitude-about {
  text-align: center;
}

.methodology-title-gratitude-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-on-dark);
  line-height: var(--lh-tight);
  margin-bottom: 1rem;
}

.methodology-subtitle-gratitude-about {
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  max-width: 650px;
  margin: 0 auto;
}

.methodology-steps-gratitude-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.process-step-gratitude-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-gratitude-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  min-width: clamp(3.5rem, 8vw, 5rem);
}

.step-content-gratitude-about {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title-gratitude-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--color-text-on-dark);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.step-text-gratitude-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
}

.impact-gratitude-section-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.impact-header-gratitude-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.impact-tag-gratitude-about {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: rgba(212, 165, 116, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.impact-title-gratitude-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-on-light);
  line-height: var(--lh-tight);
  margin-bottom: 1rem;
}

.impact-subtitle-gratitude-about {
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary-light);
  max-width: 650px;
  margin: 0 auto;
}

.impact-grid-gratitude-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.impact-box-gratitude-about {
  flex: 1 1 260px;
  max-width: 360px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.impact-box-gratitude-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.impact-box-value-gratitude-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.impact-box-label-gratitude-about {
  font-size: clamp(0.9rem, 1vw + 0.3rem, 1.05rem);
  color: var(--color-text-on-light);
  font-weight: 600;
}

.impact-image-gratitude-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto;
}

.testimonial-gratitude-section-about {
  background: var(--color-bg-dark-hero);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.featured-quote-gratitude-about {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-left: 5px solid var(--color-primary);
  background: rgba(212, 165, 116, 0.08);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
}

.quote-text-gratitude-about {
  font-size: clamp(1rem, 2vw + 0.3rem, 1.3rem);
  color: var(--color-text-on-dark);
  font-style: italic;
  line-height: var(--lh-relaxed);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.quote-author-gratitude-about {
  font-size: clamp(0.9rem, 1vw + 0.3rem, 1.05rem);
  color: var(--color-text-muted-dark);
  font-weight: 600;
  display: block;
}

.disclaimer-gratitude-section-about {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

.disclaimer-gratitude-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-icon-gratitude-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.disclaimer-title-gratitude-about {
  font-size: clamp(1.2rem, 2vw + 0.4rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-on-light);
  font-family: var(--font-heading);
}

.disclaimer-text-gratitude-about {
  font-size: clamp(0.85rem, 1vw + 0.3rem, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  max-width: 800px;
  margin: 0 auto;
}

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

  .step-number-gratitude-about {
    min-width: 3rem;
  }

  .hero-stats-gratitude-about {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item-gratitude-about {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .foundation-grid-gratitude-about {
    gap: 2rem;
  }

  .impact-grid-gratitude-about {
    gap: 2rem;
  }

  .methodology-steps-gratitude-about {
    gap: 3rem;
  }
}

.portfolio-page {
  background-color: var(--color-bg-light-primary);
}

.portfolio-hero {
  background-color: var(--color-bg-dark-hero);
  padding: 3rem var(--space-sm);
  overflow: hidden;
}

.portfolio-hero__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: 4rem var(--space-lg);
  }

  .portfolio-hero__title {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: 5rem var(--space-2xl);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-light-primary);
  padding: 3rem var(--space-sm);
  overflow: hidden;
}

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.portfolio-project-card {
  background-color: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
}

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

.portfolio-project-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-primary-light);
}

.portfolio-project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-project-card__content {
  padding: var(--space-lg);
}

.portfolio-project-card__meta {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.portfolio-project-card__category {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-project-card__year {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted-light);
}

.portfolio-project-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-light);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.portfolio-project-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: 4rem var(--space-lg);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .portfolio-project-card__image {
    height: 240px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: 5rem var(--space-2xl);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-project-card__image {
    height: 280px;
  }

  .portfolio-project-card:hover .portfolio-project-card__image img {
    transform: scale(1.03);
    transition: transform var(--transition-base);
  }
}

.portfolio-cta {
  background-color: var(--color-bg-dark-accent);
  padding: 3rem var(--space-sm);
  overflow: hidden;
}

.portfolio-cta__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.portfolio-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.portfolio-cta__button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-text-on-light);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-lg);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
  border: none;
}

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

.portfolio-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: 4rem var(--space-lg);
  }

  .portfolio-cta__title {
    margin-bottom: var(--space-lg);
  }

  .portfolio-cta__text {
    margin-bottom: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: 5rem var(--space-2xl);
  }
}

.faq-page {
  width: 100%;
  background-color: var(--color-bg-light-primary);
}

.faq-hero {
  background: linear-gradient(135deg, var(--color-bg-dark-hero) 0%, var(--color-bg-dark-accent) 100%);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-hero-container {
  text-align: center;
  max-width: 600px;
}

.faq-hero-title {
  color: var(--color-text-on-dark);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-bold);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.faq-hero-subtitle {
  color: var(--color-text-secondary-dark);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0;
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
}

.faq-content {
  padding: var(--space-lg) var(--space-md);
  background-color: var(--color-bg-light-primary);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

.faq-card {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-bg-light-secondary);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.faq-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-light);
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--color-primary);
}

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

.faq-question {
  flex: 1;
  line-height: var(--lh-normal);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-card[data-open="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  animation: slideDown var(--transition-base) ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  color: var(--color-text-secondary-light);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: var(--lh-relaxed);
  margin: 0;
  font-weight: var(--fw-regular);
}

.faq-image-container {
  display: none;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.faq-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.faq-cta {
  background-color: var(--color-bg-light-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.faq-cta-title {
  color: var(--color-text-on-light);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--lh-tight);
}

.faq-cta-text {
  color: var(--color-text-secondary-light);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: var(--lh-relaxed);
  margin: 0 0 var(--space-lg) 0;
  font-weight: var(--fw-regular);
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-text-on-light);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

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

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

@media (min-width: 640px) {
  .faq-hero {
    padding: var(--space-xl) var(--space-lg);
    min-height: 320px;
  }

  .faq-content {
    padding: var(--space-2xl) var(--space-lg);
  }

  .faq-trigger {
    padding: var(--space-lg) var(--space-xl);
  }

  .faq-answer {
    padding: 0 var(--space-xl) var(--space-xl) var(--space-xl);
  }
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-2xl) var(--space-xl);
    min-height: 360px;
  }

  .faq-content {
    padding: var(--space-3xl) var(--space-xl);
  }

  .faq-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .faq-cards {
    grid-column: 1;
  }

  .faq-image-container {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .faq-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-xl);
    min-height: 400px;
  }

  .faq-content {
    padding: var(--space-4xl) var(--space-xl);
  }

  .faq-cta {
    padding: var(--space-4xl) var(--space-xl);
  }

  .faq-trigger {
    font-size: 1.1rem;
  }

  .faq-answer p {
    font-size: 1rem;
  }
}

.wellbeing-docs {
  background-color: var(--color-bg-light-primary);
  color: var(--color-text-on-light);
  font-family: var(--font-primary);
}

.wellbeing-docs main {
  width: 100%;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.wellbeing-docs-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.wellbeing-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-light);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.wellbeing-docs .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-xl);
  font-weight: var(--fw-regular);
}

.wellbeing-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.wellbeing-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--lh-relaxed);
  color: var(--color-text-on-light);
  margin-bottom: var(--space-md);
  font-weight: var(--fw-regular);
}

.wellbeing-docs ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.wellbeing-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--lh-relaxed);
  color: var(--color-text-on-light);
  margin-bottom: var(--space-sm);
  font-weight: var(--fw-regular);
}

.wellbeing-docs .contact-section {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-primary-light);
}

.wellbeing-docs .contact-section h2 {
  margin-top: 0;
}

.wellbeing-docs .contact-info {
  margin-bottom: var(--space-md);
}

.wellbeing-docs .contact-info strong {
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-light);
}

.wellbeing-docs .contact-info p {
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .wellbeing-docs-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .wellbeing-docs-content {
    padding: var(--space-4xl) var(--space-xl);
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-light-primary);
  color: var(--color-text-on-light);
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-hero {
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  background-color: var(--color-bg-light-primary);
}

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

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.thank-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  animation: fadeInUp 0.8s ease-out;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  color: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(107, 158, 122, 0.15));
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-light);
  line-height: var(--lh-tight);
  margin: var(--space-md) 0 0 0;
}

.lead-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-accent-green);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
  margin: var(--space-sm) 0 0 0;
}

.description-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  margin: var(--space-md) 0 0 0;
  letter-spacing: 0.3px;
}

.next-steps-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  margin: var(--space-md) 0 0 0;
  letter-spacing: 0.3px;
}

.btn-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-bg-light-primary);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.5px;
}

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

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

.btn-return:focus {
  outline: none;
  border-color: var(--color-accent-green);
  box-shadow: 0 0 0 3px rgba(107, 158, 122, 0.1);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-hero {
    padding: var(--space-3xl) var(--space-md);
  }

  .thank-wrapper {
    gap: var(--space-xl);
  }

  .success-icon {
    width: 140px;
    height: 140px;
  }

  .btn-return {
    padding: var(--space-lg) var(--space-3xl);
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .thank-hero {
    padding: var(--space-4xl) var(--space-md);
    min-height: 100vh;
  }

  .thank-wrapper {
    gap: var(--space-2xl);
  }

  .success-icon {
    width: 160px;
    height: 160px;
  }

  h1 {
    margin: var(--space-lg) 0 0 0;
  }

  .description-text {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .next-steps-text {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-return {
    padding: var(--space-lg) var(--space-3xl);
    font-size: 1.15rem;
    margin-top: var(--space-2xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-wrapper {
    animation: none;
  }

  .success-icon {
    animation: none;
  }

  .btn-return {
    transition: none;
  }

  .btn-return:hover {
    transform: none;
  }

  .btn-return:active {
    transform: none;
  }
}

@media (max-width: 480px) {
  .thank-hero {
    padding: var(--space-xl) var(--space-sm);
  }

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

  .thank-wrapper {
    gap: var(--space-md);
  }

  .success-icon {
    width: 100px;
    height: 100px;
  }

  h1 {
    font-size: 1.75rem;
  }

  .lead-text {
    font-size: 1.1rem;
  }

  .btn-return {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    margin-top: var(--space-lg);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-light-primary);
  color: var(--color-text-on-light);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-light-primary) 0%, var(--color-bg-light-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
}

.error-page::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-accent-green-light) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  pointer-events: none;
}

.error-hero {
  padding: var(--space-lg) 0;
  position: relative;
  z-index: 1;
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.error-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  letter-spacing: -0.05em;
  display: block;
  line-height: 1;
  animation: float 4s ease-in-out infinite;
}

.error-leaf {
  position: absolute;
  font-size: 2rem;
  animation: sway 3s ease-in-out infinite;
  opacity: 0.7;
}

.error-leaf-1 {
  top: -20px;
  left: -60px;
  animation-delay: 0s;
  transform-origin: center;
}

.error-leaf-2 {
  top: 40px;
  right: -80px;
  animation-delay: 0.5s;
  transform-origin: center;
  font-size: 2.5rem;
}

.error-leaf-3 {
  bottom: 20px;
  left: -40px;
  animation-delay: 1s;
  transform-origin: center;
  font-size: 1.8rem;
}

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

@keyframes sway {
  0%, 100% {
    transform: rotate(-5deg) translateY(0px);
  }
  50% {
    transform: rotate(5deg) translateY(-15px);
  }
}

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

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-light);
  line-height: var(--lh-tight);
}

.error-subtitle {
  font-size: clamp(0.95rem, 1.2vw + 0.3rem, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

.error-message {
  background-color: var(--color-bg-light-secondary);
  border-left: 4px solid var(--color-accent-green);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
}

.message-text {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-on-light);
  line-height: var(--lh-relaxed);
}

.btn-home {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: var(--color-text-on-light);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: var(--fw-semibold);
  font-size: clamp(0.95rem, 1vw + 0.3rem, 1.05rem);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  margin-top: var(--space-md);
}

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

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

.error-inspiration {
  margin-top: var(--space-lg);
  width: 100%;
}

.inspiration-card {
  background-color: var(--color-bg-light-primary);
  border: 2px solid var(--color-accent-green);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.inspiration-icon {
  font-size: 3rem;
  display: block;
}

.inspiration-text {
  font-size: clamp(0.9rem, 1vw + 0.3rem, 1rem);
  color: var(--color-accent-green);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
}

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

@media (min-width: 640px) {
  .error-page::before {
    width: 600px;
    height: 600px;
    top: -30%;
    right: -5%;
  }

  .error-page::after {
    width: 500px;
    height: 500px;
    bottom: -20%;
    left: 0%;
  }

  .error-content {
    gap: var(--space-2xl);
  }

  .error-leaf-1 {
    top: -30px;
    left: -100px;
  }

  .error-leaf-2 {
    top: 50px;
    right: -120px;
    font-size: 3rem;
  }

  .error-leaf-3 {
    bottom: 30px;
    left: -60px;
    font-size: 2.2rem;
  }

  .inspiration-card {
    flex-direction: row;
    gap: var(--space-lg);
    padding: var(--space-xl);
  }

  .inspiration-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
  }
}

@media (min-width: 768px) {
  .error-hero {
    padding: var(--space-2xl) 0;
  }

  .error-content {
    gap: var(--space-2xl);
  }

  .error-message {
    padding: var(--space-lg) var(--space-2xl);
    margin: var(--space-lg) auto;
  }

  .message-text {
    font-size: clamp(0.95rem, 1vw + 0.4rem, 1.05rem);
  }

  .btn-home {
    margin-top: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .error-hero {
    padding: var(--space-3xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .error-content {
    gap: var(--space-3xl);
  }

  .error-leaf-1 {
    top: -40px;
    left: -140px;
    font-size: 2.5rem;
  }

  .error-leaf-2 {
    top: 60px;
    right: -160px;
    font-size: 3.5rem;
  }

  .error-leaf-3 {
    bottom: 40px;
    left: -80px;
    font-size: 2.8rem;
  }
}

.contact-support-page {
  width: 100%;
  overflow: hidden;
}

.contact-support-hero {
  background-color: var(--color-bg-dark-hero);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-support-hero-content {
  width: 100%;
  text-align: center;
}

.contact-support-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.5px;
}

.contact-support-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-support-hero {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .contact-support-hero {
    padding: 6rem 0;
  }
}

.contact-support-main {
  background-color: var(--color-bg-light-primary);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.contact-support-main-content {
  width: 100%;
}

.contact-support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  width: 100%;
}

.contact-support-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-support-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-support-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-support-info-wrapper {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .contact-support-main {
    padding: var(--space-4xl) 0;
  }

  .contact-support-grid {
    gap: var(--space-4xl);
  }
}

.contact-support-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-light);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.3px;
}

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

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

.contact-support-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-light);
  display: block;
}

.contact-support-input,
.contact-support-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-light-secondary);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  color: var(--color-text-on-light);
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: border-color var(--transition-base), background-color var(--transition-base);
}

.contact-support-input::placeholder,
.contact-support-textarea::placeholder {
  color: var(--color-text-muted-light);
}

.contact-support-input:focus,
.contact-support-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-light-primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

.contact-support-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.contact-support-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

.contact-support-privacy-notice {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-normal);
  text-align: center;
  margin-top: var(--space-sm);
}

.contact-support-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--fw-semibold);
  transition: color var(--transition-fast);
}

.contact-support-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-support-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-light);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.3px;
}

.contact-support-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-support-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-support-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-light-secondary);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
}

.contact-support-info-content {
  flex: 1;
  min-width: 0;
}

.contact-support-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text-on-light);
  margin-bottom: var(--space-xs);
}

.contact-support-info-link {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  word-break: break-word;
}

.contact-support-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-support-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
}

.contact-support-info-cta {
  padding: var(--space-lg);
  background-color: var(--color-bg-light-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.contact-support-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-on-light);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.2px;
}

.contact-support-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-light);
  line-height: var(--lh-relaxed);
}

@media (min-width: 768px) {
  .contact-support-main {
    padding: var(--space-4xl) 0;
  }

  .contact-support-form-wrapper {
    flex: 0 1 auto;
  }

  .contact-support-info-wrapper {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .contact-support-form-wrapper {
    flex: 1 1 50%;
  }

  .contact-support-info-wrapper {
    flex: 1 1 40%;
  }
}

@media (max-width: 480px) {
  .contact-support-form-title,
  .contact-support-info-title {
    margin-bottom: var(--space-md);
  }

  .contact-support-form {
    gap: var(--space-sm);
  }

  .contact-support-grid {
    gap: var(--space-2xl);
  }
}