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

:root {
  /* Color scheme */
  --color-primary: #00796b;       /* Teal green - mindfulness */
  --color-secondary: #f9a825;     /* Warm amber - financial awareness */
  --color-accent: #5e35b1;        /* Deep purple - consciousness */
  --color-neutral-light: #f5f7fa; /* Light background */
  --color-neutral-dark: #263238;  /* Dark text */
  --color-success: #4caf50;       /* Success actions */
  --color-warning: #ff9800;       /* Warning indicators */
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  /* Font sizes */
  --fs-xs: 0.75rem;   /* 12px */
  --fs-sm: 0.875rem;  /* 14px */
  --fs-base: 1rem;    /* 16px */
  --fs-md: 1.125rem;  /* 18px */
  --fs-lg: 1.25rem;   /* 20px */
  --fs-xl: 1.5rem;    /* 24px */
  --fs-2xl: 1.875rem; /* 30px */
  --fs-3xl: 2.25rem;  /* 36px */
  --fs-4xl: 3rem;     /* 48px */
  --fs-5xl: 3.75rem;  /* 60px */
  
  /* Spacing */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */
  --space-3xl: 4rem;    /* 64px */
  --space-4xl: 6rem;    /* 96px */
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;
  --border-width: 1px;
  --border-width-thick: 2px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.12);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Container */
  --container-padding: 1.25rem;
  --container-max-width: 1440px;
  
  /* Icon sizes */
  --icon-xs: 1rem;
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 2.5rem;
}

/* Base reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-xl);
}

h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

h5 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

h6 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-lg);
  max-width: 70ch;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

a:hover, a:focus {
  color: var(--color-accent);
  border-bottom-color: currentColor;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius-md);
  font-weight: 500;
  font-size: var(--fs-base);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
  text-decoration: none;
  line-height: 1.4;
}

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

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

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

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

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

.btn-outline:hover, .btn-outline:focus {
  background-color: var(--color-primary);
  color: white;
}

.btn-accent {
  background-color: var(--color-accent);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-accent:hover, .btn-accent:focus {
  background-color: #4c2b96;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Icon styling */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-xs {
  font-size: var(--icon-xs);
}

.icon-sm {
  font-size: var(--icon-sm);
}

.icon-md {
  font-size: var(--icon-md);
}

.icon-lg {
  font-size: var(--icon-lg);
}

.icon-xl {
  font-size: var(--icon-xl);
}

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

.icon-text .icon {
  margin-right: var(--space-sm);
}

/* Card styling */
.card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

/* Form elements */
input, textarea, select {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  padding: var(--space-sm) var(--space-md);
  border: var(--border-width) solid #e0e0e0;
  border-radius: var(--border-radius-md);
  background-color: white;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  width: 100%;
}

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

label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-neutral-dark);
}

/* Responsive typography */
@media (min-width: 768px) {
  h1 {
    font-size: var(--fs-4xl);
  }
  
  h2 {
    font-size: var(--fs-3xl);
  }
  
  h3 {
    font-size: var(--fs-2xl);
  }
  
  h4 {
    font-size: var(--fs-xl);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--fs-5xl);
  }
  
  h2 {
    font-size: var(--fs-4xl);
  }
  
  body {
    font-size: var(--fs-md);
  }
}

/* Utility classes */
.text-center {
  text-align: center;
}

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

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

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

.bg-primary {
  background-color: var(--color-primary);
  color: white;
}

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

.bg-accent {
  background-color: var(--color-accent);
  color: white;
}

.bg-light {
  background-color: var(--color-neutral-light);
}

.bg-dark {
  background-color: var(--color-neutral-dark);
  color: white;
}

.mb-0 { margin-bottom: 0; }
.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); }

.mt-0 { margin-top: 0; }
.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); }

.rounded-sm { border-radius: var(--border-radius-sm); }
.rounded-md { border-radius: var(--border-radius-md); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-xl { border-radius: var(--border-radius-xl); }
.rounded-full { border-radius: var(--border-radius-full); }
.header {
  padding: var(--space-md) 0;
  background-color: var(--color-neutral-light);
  border-bottom: var(--border-width) solid rgba(0, 121, 107, 0.1);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo Styling */
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
}

.header__logo:hover {
  border-bottom: none;
}

.header__logo-icon {
  font-family: var(--font-secondary);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-neutral-light);
  border: var(--border-width-thick) solid var(--color-primary);
  border-radius: var(--border-radius-full);
  margin-right: var(--space-xs);
  transition: all var(--transition-normal);
}

.header__logo:hover .header__logo-icon {
  background-color: var(--color-primary);
  color: white;
  transform: rotate(15deg);
}

.header__logo-text {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--color-neutral-dark);
  position: relative;
}

.header__logo-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width var(--transition-normal);
}

.header__logo:hover .header__logo-text::after {
  width: 100%;
}

/* Navigation Styling */
.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fs-sm);
  color: var(--color-neutral-dark);
  text-decoration: none;
  padding-bottom: var(--space-xs);
  border-bottom: none;
  transition: color var(--transition-normal);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

.header__nav-link:hover {
  color: var(--color-primary);
  border-bottom: none;
}

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

/* CTA Button */
.header__cta-container {
  display: none;
}

.header__cta-btn {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--fs-sm);
}

/* Mobile Toggle */
.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.header__mobile-toggle-bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: all var(--transition-normal);
}

/* Mobile Menu */
.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-neutral-light);
  z-index: 9999;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.header__mobile-menu.active {
  right: 0;
}

.header__mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.header__mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.header__mobile-close-icon {
  font-size: var(--fs-2xl);
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.header__mobile-nav {
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.header__mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.header__mobile-nav-link {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: var(--fs-lg);
  color: var(--color-neutral-dark);
  text-decoration: none;
  display: block;
  transition: color var(--transition-normal);
  border-bottom: none;
}

.header__mobile-nav-link:hover {
  color: var(--color-primary);
  border-bottom: none;
}

.header__mobile-nav-link--highlight {
  color: var(--color-primary);
  font-weight: 700;
  position: relative;
}

.header__mobile-nav-link--highlight::before {
  content: '→ ';
  display: inline-block;
  transition: transform var(--transition-normal);
}

.header__mobile-nav-link--highlight:hover::before {
  transform: translateX(var(--space-xs));
}

.header__mobile-footer {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: auto;
  padding-top: var(--space-lg);
  border-top: var(--border-width) solid rgba(0, 0, 0, 0.1);
}

.header__mobile-footer-link {
  font-size: var(--fs-xs);
  color: var(--color-neutral-dark);
  opacity: 0.7;
  text-decoration: none;
  border-bottom: none;
}

.header__mobile-footer-link:hover {
  opacity: 1;
  color: var(--color-primary);
  border-bottom: none;
}

/* Media Queries */
@media (min-width: 768px) {
  .header {
    padding: var(--space-md) 0;
  }
  
  .header__nav {
    display: block;
  }
  
  .header__cta-container {
    display: block;
  }
  
  .header__mobile-toggle {
    display: none;
  }
}

@media (min-width: 992px) {
  .header {
    padding: var(--space-lg) 0;
  }
  
  .header__logo-icon {
    width: 48px;
    height: 48px;
    font-size: var(--fs-3xl);
  }
  
  .header__logo-text {
    font-size: var(--fs-xl);
  }
  
  .header__nav-link {
    font-size: var(--fs-base);
  }
  
  .header__cta-btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--fs-base);
  }
}

/* Main Styles */
.main {
  overflow-x: hidden;
  position: relative;
}

/* Hero Section */
.main .hero {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background-color: var(--color-neutral-light);
}

.main .hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.main .hero-text {
  max-width: 600px;
}

.main .hero-description {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xl);
  color: var(--color-neutral-dark);
}

.main .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.main .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main .hero-image-container {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 500px;
}

.main .hero-image {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.05);
  transition: transform var(--transition-slow);
}

.main .hero-image:hover {
  transform: scale(1.1);
}

.main .hero-shape {
  position: absolute;
  border-radius: var(--border-radius-full);
  z-index: 1;
}

.main .shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  opacity: 0.1;
  top: -50px;
  right: -30px;
}

.main .shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--color-secondary);
  opacity: 0.15;
  bottom: -30px;
  left: 20%;
}

.main .hero-stats {
  position: absolute;
  bottom: 30px;
  right: 0;
  display: flex;
  gap: var(--space-md);
  z-index: 3;
}

.main .stat-item {
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.main .stat-number {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--fs-xl);
  color: var(--color-primary);
}

.main .stat-text {
  font-size: var(--fs-xs);
  text-align: center;
}

.main .hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,208C960,192,1056,160,1152,154.7C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

/* Featured Posts Section */
.main .featured-posts {
  padding: var(--space-3xl) 0;
  background-color: white;
}

.main .section-title {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.main .section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  color: var(--color-neutral-dark);
  opacity: 0.8;
}

.main .posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.main .post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.main .post-image {
  overflow: hidden;
  height: 220px;
}

.main .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.main .post-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.main .post-content h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

.main .post-content p {
  margin-bottom: var(--space-lg);
  color: var(--color-neutral-dark);
  opacity: 0.8;
  flex-grow: 1;
}

.main .section-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.main .btn-large {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--fs-md);
}

/* Principles Section */
.main .principles {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-light);
  position: relative;
  overflow: hidden;
}

.main .principles-header {
  margin-bottom: var(--space-2xl);
}

.main .principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.main .principle-card {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

.main .principle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--color-primary);
  z-index: -1;
}

.main .principle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-full);
  background-color: var(--color-primary);
  color: white;
  margin-bottom: var(--space-md);
  font-size: var(--fs-xl);
}

.main .principle-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.main .principle-card p {
  margin-bottom: 0;
  color: var(--color-neutral-dark);
  opacity: 0.8;
}

/* About Section */
.main .about {
  padding: var(--space-3xl) 0;
  background-color: white;
}

.main .about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.main .about-image-container {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.main .about-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.main .about-image:hover {
  transform: scale(1.03);
}

.main .about-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: var(--border-radius-full);
  background-color: var(--color-secondary);
  opacity: 0.2;
  bottom: -30px;
  right: -30px;
  z-index: -1;
}

.main .about-text h2 {
  margin-bottom: var(--space-lg);
}

.main .about-text p {
  margin-bottom: var(--space-lg);
  font-size: var(--fs-md);
}

.main .about-features {
  margin-bottom: var(--space-xl);
}

.main .about-feature {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.main .about-feature i {
  color: var(--color-success);
  margin-right: var(--space-md);
  font-size: var(--fs-md);
}

/* Process Section */
.main .process {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-light);
  position: relative;
}

.main .process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  position: relative;
}

.main .process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background-color: var(--color-primary);
  opacity: 0.3;
}

.main .process-step {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.main .step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--border-radius-full);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: var(--fs-xl);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.main .step-content {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.main .process-step:hover .step-content {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
}

.main .step-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.main .step-content p {
  margin-bottom: 0;
}

.main .step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  color: var(--color-accent);
  opacity: 0.8;
}

/* Testimonials Section */
.main .testimonials {
  padding: var(--space-3xl) 0;
  background-color: white;
}

.main .testimonials-slider {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.main .testimonial-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.main .testimonial-image {
  overflow: hidden;
  height: 250px;
}

.main .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.main .testimonial-card:hover .testimonial-image img {
  transform: scale(1.05);
}

.main .testimonial-content {
  padding: var(--space-lg);
}

.main .testimonial-quote {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.main .testimonial-quote i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--fs-xl);
  color: var(--color-primary);
  opacity: 0.5;
}

.main .testimonial-quote p {
  font-style: italic;
  margin-bottom: 0;
}

.main .testimonial-author h4 {
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.main .testimonial-author p {
  margin-bottom: 0;
  font-size: var(--fs-sm);
  opacity: 0.8;
}

/* Contact Section */
.main .contact {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-light);
  position: relative;
}

.main .contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.main .contact-text h2 {
  margin-bottom: var(--space-lg);
}

.main .contact-text p {
  margin-bottom: var(--space-xl);
  font-size: var(--fs-md);
}

.main .contact-info {
  margin-bottom: var(--space-xl);
}

.main .contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
}

.main .contact-info-item i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--border-radius-full);
  margin-right: var(--space-md);
}

.main .contact-form-container {
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(0);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .contact-form-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.main .contact-form {
  padding: var(--space-xl);
}

.main .form-group {
  margin-bottom: var(--space-lg);
}

.main .form-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.main .form-privacy {
  font-size: var(--fs-sm);
  opacity: 0.8;
  margin-bottom: 0;
}

/* Cookie Banner */
.main .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-neutral-dark);
  padding: var(--space-lg);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  display: none; /* Initially hidden, shown via JS */
}

.main .cookie-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.main .cookie-content p {
  color: white;
  margin-bottom: 0;
}

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

/* Media Queries */
@media (min-width: 768px) {
  .main .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .about-content {
    grid-template-columns: 45% 55%;
  }
  
  .main .testimonial-card {
    grid-template-columns: 300px 1fr;
  }
  
  .main .testimonial-image {
    height: auto;
  }
  
  .main .contact-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .main .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .main .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .main .principles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .main .process-steps::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main .process-step {
    grid-template-columns: 1fr 60px 1fr;
  }
  
  .main .step-number {
    grid-column: 2;
  }
  
  .main .step-content {
    grid-column: 1;
    text-align: right;
    padding-right: var(--space-xl);
  }
  
  .main .process-step:nth-child(even) .step-content {
    grid-column: 3;
    text-align: left;
    padding-right: var(--space-lg);
    padding-left: var(--space-xl);
  }
  
  .main .step-icon {
    grid-column: 3;
  }
  
  .main .process-step:nth-child(even) .step-icon {
    grid-column: 1;
  }
}

/* Footer Styles */
.footer {
  position: relative;
  background-color: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-3xl);
  overflow: hidden;
}

.footer__wave-container {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  overflow: hidden;
}

.footer__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23263238' d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V120H0V0C0,0,0,0,0,0Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
  animation: wave-animation 25s linear infinite;
}

@keyframes wave-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.footer__content {
  position: relative;
  z-index: 2;
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(245, 247, 250, 0.1);
  padding-bottom: var(--space-xl);
}

.footer__brand {
  margin-bottom: var(--space-md);
}

.footer__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
  color: var(--color-neutral-light);
  position: relative;
  display: inline-block;
}

.footer__title:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

.footer__title:hover:after {
  width: 100%;
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: rgba(245, 247, 250, 0.8);
  max-width: 280px;
  margin-bottom: 0;
}

.footer__nav-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer__nav-title {
  color: var(--color-neutral-light);
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.footer__nav-title:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: var(--color-secondary);
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-item {
  margin-bottom: var(--space-sm);
}

.footer__nav-link {
  color: rgba(245, 247, 250, 0.7);
  font-size: var(--fs-sm);
  transition: all var(--transition-normal);
  position: relative;
  padding-left: var(--space-sm);
  display: inline-block;
}

.footer__nav-link:before {
  content: '›';
  position: absolute;
  left: 0;
  transition: transform var(--transition-normal);
  color: var(--color-primary);
  opacity: 0.8;
}

.footer__nav-link:hover {
  color: var(--color-neutral-light);
  transform: translateX(3px);
  border-bottom: none;
}

.footer__nav-link:hover:before {
  transform: translateX(2px);
  opacity: 1;
}

.footer__mindfulness-meter {
  background-color: rgba(245, 247, 250, 0.05);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-inner);
}

.footer__meter-label {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.footer__meter-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: var(--space-md) 0;
}

.footer__meter-container:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.5;
}

.footer__meter-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 60px;
}

.footer__meter-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color-neutral-dark);
  border: 2px solid var(--color-primary);
  margin-bottom: var(--space-xs);
  transition: all var(--transition-normal);
}

.footer__meter-step span {
  font-size: var(--fs-xs);
  color: rgba(245, 247, 250, 0.7);
  text-align: center;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.footer__meter-step--active .footer__meter-dot {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 0 0 10px rgba(249, 168, 37, 0.5);
}

.footer__meter-step--active span {
  color: var(--color-secondary);
  font-weight: 500;
}

.footer__meter-step:hover .footer__meter-dot {
  transform: scale(1.2);
}

.footer__meter-step:hover span {
  color: var(--color-neutral-light);
}

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

.footer__copyright {
  font-size: var(--fs-xs);
  color: rgba(245, 247, 250, 0.6);
  margin: 0;
}

.footer__motto {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__motto-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.footer__motto-icon:before {
  content: '€';
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: bold;
}

.footer__motto-icon:after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  opacity: 0.5;
  animation: pulse 3s infinite;
}

.footer__motto p {
  font-size: var(--fs-xs);
  color: rgba(245, 247, 250, 0.8);
  font-style: italic;
  margin: 0;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* Media Queries */
@media (min-width: 768px) {
  .footer__main {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer__brand {
    flex: 1;
    margin-bottom: 0;
  }
  
  .footer__nav-container {
    flex-direction: row;
    flex: 2;
    gap: var(--space-2xl);
  }
  
  .footer__nav-column {
    flex: 1;
  }
  
  .footer__meter-container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding-top: var(--space-2xl);
  }
  
  .footer__wave-container {
    height: 80px;
    top: -80px;
  }
  
  .footer__title {
    font-size: var(--fs-2xl);
  }
  
  .footer__tagline {
    font-size: var(--fs-base);
  }
  
  .footer__nav-title {
    font-size: var(--fs-lg);
  }
  
  .footer__nav-link {
    font-size: var(--fs-base);
  }
  
  .footer__meter-label {
    font-size: var(--fs-md);
  }
  
  .footer__meter-step span {
    font-size: var(--fs-sm);
  }
}

.privacy-page {
  padding: var(--space-xl) 0;
  background-color: var(--color-neutral-light);
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
}

.privacy-page__header {
  margin-bottom: var(--space-2xl);
  border-bottom: var(--border-width) solid var(--color-primary);
  padding-bottom: var(--space-lg);
}

.privacy-page h1 {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.privacy-page h2 {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  border-left: var(--border-width-thick) solid var(--color-secondary);
  padding-left: var(--space-md);
}

.privacy-page__updated {
  font-size: var(--fs-sm);
  color: var(--color-neutral-dark);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.privacy-page__section {
  margin-bottom: var(--space-xl);
}

.privacy-page__list {
  list-style-type: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.privacy-page__list li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.privacy-page p {
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.privacy-page__contact {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-md);
}

.privacy-page__contact p {
  margin-bottom: var(--space-md);
}

.privacy-page__contact p:last-child {
  margin-bottom: 0;
}

.privacy-page strong {
  font-weight: 600;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .privacy-page {
    padding: var(--space-lg) 0;
  }
  
  .privacy-page h1 {
    font-size: var(--fs-2xl);
  }
  
  .privacy-page h2 {
    font-size: var(--fs-lg);
  }
  
  .privacy-page__contact {
    padding: var(--space-md);
  }
}

.terms-page {
  padding: var(--space-xl) var(--container-padding);
  background-color: var(--color-neutral-light);
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
}

.terms-page__header {
  margin-bottom: var(--space-2xl);
  border-bottom: var(--border-width) solid var(--color-primary);
  padding-bottom: var(--space-lg);
}

.terms-page__title {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}

.terms-page__updated {
  font-size: var(--fs-sm);
  color: var(--color-neutral-dark);
  opacity: 0.8;
  margin-bottom: var(--space-md);
}

.terms-page__content {
  max-width: 900px;
  margin: 0 auto;
}

.terms-page__section {
  margin-bottom: var(--space-2xl);
}

.terms-page__section-title {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  border-left: var(--border-width-thick) solid var(--color-secondary);
  padding-left: var(--space-md);
}

.terms-page__list {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.terms-page__list li {
  margin-bottom: var(--space-sm);
}

.terms-page p {
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .terms-page__title {
    font-size: var(--fs-2xl);
  }
  
  .terms-page__section-title {
    font-size: var(--fs-lg);
  }
  
  .terms-page__list {
    margin-left: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .terms-page {
    padding: var(--space-lg) var(--container-padding);
  }
  
  .terms-page__header {
    margin-bottom: var(--space-xl);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-xl);
  }
}

/* Cookie Policy Page Styles */
.cookie-page {
  padding: var(--space-xl) var(--container-padding);
  background-color: var(--color-neutral-light);
  color: var(--color-neutral-dark);
  font-family: var(--font-primary);
  line-height: 1.6;
}

.cookie-page__title {
  font-family: var(--font-secondary);
  font-size: var(--fs-3xl);
  font-weight: 700;
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
  border-bottom: var(--border-width-thick) solid var(--color-primary);
  padding-bottom: var(--space-md);
}

.cookie-page__section {
  margin-bottom: var(--space-xl);
}

.cookie-page__section-title {
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: var(--border-width) solid var(--color-secondary);
}

.cookie-page__subsection-title {
  font-family: var(--font-primary);
  font-size: var(--fs-md);
  color: var(--color-accent);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.cookie-page__text {
  font-size: var(--fs-base);
  margin-bottom: var(--space-md);
  max-width: 70ch;
  color: var(--color-neutral-dark);
}

.cookie-page__list {
  margin-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.cookie-page__list-item {
  margin-bottom: var(--space-sm);
}

.cookie-page__footer {
  margin-top: var(--space-2xl);
  padding-top: var(--space-md);
  border-top: var(--border-width) solid #e0e0e0;
}

.cookie-page__last-updated {
  font-size: var(--fs-sm);
  color: var(--color-secondary);
  font-style: italic;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .cookie-page__title {
    font-size: var(--fs-4xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--fs-2xl);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--fs-lg);
  }
  
  .cookie-page__text {
    font-size: var(--fs-md);
  }
}

@media (max-width: 480px) {
  .cookie-page {
    padding: var(--space-lg) var(--space-md);
  }
  
  .cookie-page__title {
    font-size: var(--fs-2xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--fs-lg);
  }
  
  .cookie-page__list {
    margin-left: var(--space-lg);
  }
}

.thank-page {
  padding: var(--space-3xl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-neutral-light);
}

.thank-page__container {
  max-width: 800px;
  width: 100%;
}

.thank-page__content {
  background-color: white;
  padding: var(--space-2xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.thank-page__icon {
  margin: 0 auto var(--space-lg);
  width: var(--icon-xl);
  height: var(--icon-xl);
}

.thank-page__title {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-lg);
}

.thank-page__message {
  font-size: var(--fs-lg);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-page__follow-up {
  font-size: var(--fs-md);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-page__action {
  margin-bottom: var(--space-xl);
}

.thank-page__action .btn {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--fs-md);
  font-weight: 600;
}

.thank-page__tips {
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  border-left: var(--border-width-thick) solid var(--color-secondary);
  text-align: left;
  max-width: 600px;
  margin: var(--space-xl) auto 0;
}

.thank-page__tips h3 {
  color: var(--color-secondary);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.thank-page__tips p {
  font-size: var(--fs-base);
  color: var(--color-neutral-dark);
}

@media (max-width: 768px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }

  .thank-page__content {
    padding: var(--space-lg);
  }

  .thank-page__title {
    font-size: var(--fs-2xl);
  }

  .thank-page__message,
  .thank-page__follow-up {
    font-size: var(--fs-base);
  }

  .thank-page__tips {
    padding: var(--space-md);
  }
}

.category-page {
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
}

/* Hero Section */
.category-page__hero {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-light);
  border-bottom: var(--border-width) solid rgba(0, 0, 0, 0.05);
}

.category-page__hero h1 {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.category-page__hero p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--fs-lg);
  line-height: 1.6;
}

/* Posts Grid */
.category-page__posts-grid {
  padding: var(--space-3xl) 0;
  background-color: white;
}

.category-page__posts-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

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

/* Post Card */
.post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.post-card h3 {
  font-family: var(--font-secondary);
  font-size: var(--fs-lg);
  padding: var(--space-lg) var(--space-lg) var(--space-sm);
  color: var(--color-neutral-dark);
  margin-bottom: 0;
}

.post-card p {
  padding: 0 var(--space-lg);
  font-size: var(--fs-base);
  color: var(--color-neutral-dark);
  flex-grow: 1;
  margin-bottom: var(--space-lg);
}

.post-card a {
  margin: 0 var(--space-lg) var(--space-lg);
  border-radius: var(--border-radius-md);
  text-align: center;
  font-weight: 500;
}

/* Mindful Principles Section */
.category-page__mindful-principles {
  padding: var(--space-3xl) 0;
  color: white;
}

.category-page__principles-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

@media (min-width: 1024px) {
  .category-page__principles-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.principle-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  text-align: center;
}

.principle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-full);
  margin: 0 auto var(--space-md);
}

.principle-card h3 {
  color: white;
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.principle-card p {
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

/* Stats Section */
.category-page__stats-section {
  padding: var(--space-3xl) 0;
  background-color: var(--color-neutral-light);
}

.category-page__stats-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

.stat-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.stat-card h3 {
  font-size: var(--fs-3xl);
  font-family: var(--font-secondary);
  margin-bottom: var(--space-md);
}

.stat-card p {
  font-size: var(--fs-base);
  margin-bottom: 0;
}

/* Page specific styles */
.post-duurzaam-consumeren-mindfulness-financien {
  color: var(--color-neutral-dark);
  line-height: 1.6;
}

/* Breadcrumbs */
.post-duurzaam-consumeren-mindfulness-financien .breadcrumbs {
  background-color: var(--color-neutral-light);
  padding: var(--space-md) 0;
  font-size: var(--fs-sm);
}

.post-duurzaam-consumeren-mindfulness-financien .breadcrumbs a {
  color: var(--color-primary);
  transition: color var(--transition-normal);
}

.post-duurzaam-consumeren-mindfulness-financien .breadcrumbs a:hover {
  color: var(--color-accent);
}

.post-duurzaam-consumeren-mindfulness-financien .breadcrumbs span {
  color: var(--color-neutral-dark);
}

/* Hero Section */
.post-duurzaam-consumeren-mindfulness-financien .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-duurzaam-consumeren-mindfulness-financien .post-hero h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
  color: white;
  position: relative;
  z-index: 2;
}

.post-duurzaam-consumeren-mindfulness-financien .post-hero .lead {
  font-size: var(--fs-lg);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Content Sections */
.post-duurzaam-consumeren-mindfulness-financien .content-section {
  padding: var(--space-3xl) 0;
}

.post-duurzaam-consumeren-mindfulness-financien .section-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.post-duurzaam-consumeren-mindfulness-financien .text-content {
  flex: 1;
}

.post-duurzaam-consumeren-mindfulness-financien .image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-duurzaam-consumeren-mindfulness-financien .section-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-duurzaam-consumeren-mindfulness-financien .centered-image {
  margin: var(--space-xl) auto;
  max-width: 800px;
}

/* Meditation Cards */
.post-duurzaam-consumeren-mindfulness-financien .meditation-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-duurzaam-consumeren-mindfulness-financien .meditation-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-duurzaam-consumeren-mindfulness-financien .meditation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-duurzaam-consumeren-mindfulness-financien .meditation-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-lg);
}

.post-duurzaam-consumeren-mindfulness-financien .meditation-steps {
  list-style-type: none;
  padding-left: var(--space-md);
  margin-top: var(--space-md);
}

.post-duurzaam-consumeren-mindfulness-financien .meditation-steps li {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-md);
}

.post-duurzaam-consumeren-mindfulness-financien .meditation-steps li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}

/* Integration Section */
.post-duurzaam-consumeren-mindfulness-financien .bg-primary {
  background-color: var(--color-primary);
  color: white;
}

.post-duurzaam-consumeren-mindfulness-financien .bg-primary h2,
.post-duurzaam-consumeren-mindfulness-financien .bg-primary h4 {
  color: white;
}

.post-duurzaam-consumeren-mindfulness-financien .integration-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.post-duurzaam-consumeren-mindfulness-financien .daily-practices {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

.post-duurzaam-consumeren-mindfulness-financien .practice-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  transition: transform var(--transition-normal);
}

.post-duurzaam-consumeren-mindfulness-financien .practice-item:hover {
  transform: translateY(-4px);
}

.post-duurzaam-consumeren-mindfulness-financien .practice-item h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.post-duurzaam-consumeren-mindfulness-financien .conclusion {
  font-style: italic;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border-left: 4px solid var(--color-secondary);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Related Posts Section */
.post-duurzaam-consumeren-mindfulness-financien .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
}

.post-duurzaam-consumeren-mindfulness-financien .related-posts {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.post-duurzaam-consumeren-mindfulness-financien .post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-duurzaam-consumeren-mindfulness-financien .post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-duurzaam-consumeren-mindfulness-financien .post-image {
  height: 200px;
  overflow: hidden;
}

.post-duurzaam-consumeren-mindfulness-financien .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.post-duurzaam-consumeren-mindfulness-financien .post-card:hover .card-image {
  transform: scale(1.05);
}

.post-duurzaam-consumeren-mindfulness-financien .post-content {
  padding: var(--space-lg);
}

.post-duurzaam-consumeren-mindfulness-financien .post-content h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  color: var(--color-neutral-dark);
}

.post-duurzaam-consumeren-mindfulness-financien .post-content p {
  font-size: var(--fs-sm);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
}

.post-duurzaam-consumeren-mindfulness-financien .read-more {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--transition-normal);
}

.post-duurzaam-consumeren-mindfulness-financien .read-more:hover {
  color: var(--color-accent);
}

/* Responsive Styles */
@media (min-width: 768px) {
  .post-duurzaam-consumeren-mindfulness-financien .section-content {
    flex-direction: row;
  }
  
  .post-duurzaam-consumeren-mindfulness-financien .meditation-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-duurzaam-consumeren-mindfulness-financien .meditation-cards.second-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-duurzaam-consumeren-mindfulness-financien .daily-practices {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-duurzaam-consumeren-mindfulness-financien .integration-content {
    flex-direction: row;
  }
  
  .post-duurzaam-consumeren-mindfulness-financien .related-posts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .post-duurzaam-consumeren-mindfulness-financien .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-duurzaam-consumeren-mindfulness-financien .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-duurzaam-consumeren-mindfulness-financien .post-hero h1 {
    font-size: var(--fs-2xl);
  }
  
  .post-duurzaam-consumeren-mindfulness-financien .post-hero .lead {
    font-size: var(--fs-base);
  }
}

/* Base styling for the post page */
.post-duurzaam-consumeren-mindfulness-financien {
  overflow-x: hidden;
}

/* Breadcrumbs styling */
.post-duurzaam-consumeren-mindfulness-financien .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-sm);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
  border-bottom: var(--border-width) solid rgba(0, 0, 0, 0.05);
}

.post-duurzaam-consumeren-mindfulness-financien .breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
}

.post-duurzaam-consumeren-mindfulness-financien .breadcrumbs a:hover {
  color: var(--color-accent);
}

/* Hero section styling */
.post-duurzaam-consumeren-mindfulness-financien .post-hero {
  background-color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
}

.post-duurzaam-consumeren-mindfulness-financien .post-hero h1 {
  font-size: var(--fs-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-duurzaam-consumeren-mindfulness-financien .post-hero .lead {
  font-size: var(--fs-lg);
  font-family: var(--font-secondary);
  color: var(--color-neutral-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.post-duurzaam-consumeren-mindfulness-financien .finance-mindful-hero {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-md);
}

/* Content sections styling */
.post-duurzaam-consumeren-mindfulness-financien .content-section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.post-duurzaam-consumeren-mindfulness-financien .content-section h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-xl);
  color: var(--color-neutral-dark);
}

.post-duurzaam-consumeren-mindfulness-financien .content-section h3 {
  font-size: var(--fs-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

.post-duurzaam-consumeren-mindfulness-financien .bg-primary h2,
.post-duurzaam-consumeren-mindfulness-financien .bg-primary h3,
.post-duurzaam-consumeren-mindfulness-financien .bg-primary p,
.post-duurzaam-consumeren-mindfulness-financien .bg-primary li {
  color: white;
}

.post-duurzaam-consumeren-mindfulness-financien .content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-duurzaam-consumeren-mindfulness-financien .content-text {
  line-height: 1.8;
}

.post-duurzaam-consumeren-mindfulness-financien .content-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-duurzaam-consumeren-mindfulness-financien .content-image img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Lists styling */
.post-duurzaam-consumeren-mindfulness-financien ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.post-duurzaam-consumeren-mindfulness-financien ul li {
  margin-bottom: var(--space-sm);
  position: relative;
}

.post-duurzaam-consumeren-mindfulness-financien .value-list li,
.post-duurzaam-consumeren-mindfulness-financien .ritual-list li,
.post-duurzaam-consumeren-mindfulness-financien .detox-list li,
.post-duurzaam-consumeren-mindfulness-financien .cashflow-list li {
  padding-left: var(--space-sm);
  list-style-type: none;
}

.post-duurzaam-consumeren-mindfulness-financien .value-list li::before,
.post-duurzaam-consumeren-mindfulness-financien .ritual-list li::before,
.post-duurzaam-consumeren-mindfulness-financien .detox-list li::before {
  content: "•";
  color: var(--color-secondary);
  font-weight: bold;
  display: inline-block;
  width: var(--space-md);
  margin-left: calc(-1 * var(--space-xl));
}

.post-duurzaam-consumeren-mindfulness-financien .cashflow-list li::before {
  content: "•";
  color: white;
  font-weight: bold;
  display: inline-block;
  width: var(--space-md);
  margin-left: calc(-1 * var(--space-xl));
}

/* Testimonial styling */
.post-duurzaam-consumeren-mindfulness-financien .testimonial {
  font-style: italic;
  border-left: 4px solid rgba(255, 255, 255, 0.3);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  font-size: var(--fs-md);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

/* Conclusion section */
.post-duurzaam-consumeren-mindfulness-financien .conclusion-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.post-duurzaam-consumeren-mindfulness-financien .conclusion-content p {
  margin-left: auto;
  margin-right: auto;
  color: var(--color-neutral-dark);
  font-size: var(--fs-md);
}

.post-duurzaam-consumeren-mindfulness-financien .cta-container {
  margin-top: var(--space-xl);
  text-align: center;
}

/* Related posts section */
.post-duurzaam-consumeren-mindfulness-financien .related-posts-section {
  padding: var(--space-4xl) 0;
  background-color: var(--color-neutral-light);
}

.post-duurzaam-consumeren-mindfulness-financien .related-posts-section h2 {
  margin-bottom: var(--space-2xl);
  color: var(--color-neutral-dark);
}

.post-duurzaam-consumeren-mindfulness-financien .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-duurzaam-consumeren-mindfulness-financien .related-post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-duurzaam-consumeren-mindfulness-financien .related-post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.post-duurzaam-consumeren-mindfulness-financien .related-post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-duurzaam-consumeren-mindfulness-financien .related-post-card h3 {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  font-size: var(--fs-lg);
  color: var(--color-primary);
  margin-bottom: 0;
}

.post-duurzaam-consumeren-mindfulness-financien .related-post-card p {
  padding: 0 var(--space-md);
  font-size: var(--fs-base);
  color: var(--color-neutral-dark);
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.post-duurzaam-consumeren-mindfulness-financien .related-post-card .btn {
  margin: 0 var(--space-md) var(--space-md);
  align-self: flex-start;
}

/* Background image positioning */
.post-duurzaam-consumeren-mindfulness-financien .finance-background {
  position: absolute;
  z-index: -1;
  opacity: 0.05;
  max-width: 100%;
  height: auto;
}

/* Responsive styles */
@media (min-width: 768px) {
  .post-duurzaam-consumeren-mindfulness-financien .content-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .post-duurzaam-consumeren-mindfulness-financien .content-grid.reversed {
    grid-template-columns: 1fr 1fr;
  }
  
  .post-duurzaam-consumeren-mindfulness-financien .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-duurzaam-consumeren-mindfulness-financien .post-hero h1 {
    font-size: var(--fs-4xl);
  }
  
  .post-duurzaam-consumeren-mindfulness-financien .content-section h2 {
    font-size: var(--fs-3xl);
  }
  
  .post-duurzaam-consumeren-mindfulness-financien .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

  /* Page specific styles */
  .post-bewust-budgetteren-nederlandse-aanpak .post-hero {
    background-color: var(--color-primary);
    color: white;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .post-hero h1 {
    color: white;
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .post-hero .lead {
    font-size: var(--fs-lg);
    max-width: 800px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .breadcrumbs {
    background-color: var(--color-neutral-light);
    padding: var(--space-md) 0;
    font-size: var(--fs-sm);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .breadcrumbs span {
    color: var(--color-neutral-dark);
  }
  
  /* Content sections */
  .post-bewust-budgetteren-nederlandse-aanpak .content-section {
    padding: var(--space-3xl) 0;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .bg-light {
    background-color: var(--color-neutral-light);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .section-content {
    max-width: 100%;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .section-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .centered-image {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Techniques section */
  .post-bewust-budgetteren-nederlandse-aanpak .techniques-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .technique-card {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .technique-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .technique-card h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .technique-card ul {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .technique-card li {
    margin-bottom: var(--space-sm);
  }
  
  /* Mindful spending section */
  .post-bewust-budgetteren-nederlandse-aanpak .mindful-spending-section {
    margin-top: var(--space-xl);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .mindful-tips {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .mindful-tip {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--color-secondary);
    box-shadow: var(--shadow-sm);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .mindful-tip h4 {
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
  }
  
  /* Mindfulness grid */
  .post-bewust-budgetteren-nederlandse-aanpak .mindfulness-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .mindfulness-card {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .mindfulness-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .mindfulness-card h3 {
    color: var(--color-accent);
    margin-bottom: var(--space-md);
  }
  
  /* Action steps */
  .post-bewust-budgetteren-nederlandse-aanpak .action-steps {
    background-color: white;
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .action-steps h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .steps-list {
    padding-left: var(--space-xl);
    margin-top: var(--space-md);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .steps-list li {
    margin-bottom: var(--space-md);
    padding-left: var(--space-sm);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .steps-list strong {
    color: var(--color-primary);
  }
  
  /* Related posts section */
  .post-bewust-budgetteren-nederlandse-aanpak .related-posts-section {
    padding: var(--space-3xl) 0;
    background-color: white;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .related-posts-section h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .related-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .related-post {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: var(--space-lg);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .related-post h3 {
    margin-bottom: var(--space-md);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .related-post h3 a {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: none;
    transition: color var(--transition-normal);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .related-post h3 a:hover {
    color: var(--color-accent);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .related-post p {
    margin-bottom: var(--space-lg);
    flex-grow: 1;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .related-post .btn {
    align-self: flex-start;
    margin-top: auto;
  }
  
  /* Media queries */
  @media (min-width: 768px) {
    .post-bewust-budgetteren-nederlandse-aanpak .post-hero h1 {
      font-size: var(--fs-4xl);
    }
    
    .post-bewust-budgetteren-nederlandse-aanpak .post-hero .lead {
      font-size: var(--fs-xl);
    }
    
    .post-bewust-budgetteren-nederlandse-aanpak .section-grid {
      grid-template-columns: 3fr 2fr;
      align-items: center;
    }
    
    .post-bewust-budgetteren-nederlandse-aanpak .techniques-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .post-bewust-budgetteren-nederlandse-aanpak .mindful-tips {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .post-bewust-budgetteren-nederlandse-aanpak .mindfulness-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .post-bewust-budgetteren-nederlandse-aanpak .related-posts-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .post-bewust-budgetteren-nederlandse-aanpak .post-hero h1 {
      font-size: var(--fs-5xl);
    }
    
    .post-bewust-budgetteren-nederlandse-aanpak .content-section {
      padding: var(--space-4xl) 0;
    }
  }

/* Base styles for the post page */
.post-bewust-budgetteren-nederlandse-aanpak {
  overflow-x: hidden;
}

/* Breadcrumbs styling */
.post-bewust-budgetteren-nederlandse-aanpak .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-sm);
  color: var(--color-neutral-dark);
  background-color: white;
}

.post-bewust-budgetteren-nederlandse-aanpak .breadcrumbs a {
  color: var(--color-primary);
  transition: color var(--transition-normal);
}

.post-bewust-budgetteren-nederlandse-aanpak .breadcrumbs a:hover {
  color: var(--color-accent);
}

/* Hero section styling */
.post-bewust-budgetteren-nederlandse-aanpak .post-hero {
  background-color: white;
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
}

.post-bewust-budgetteren-nederlandse-aanpak .post-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--border-radius-sm);
}

.post-bewust-budgetteren-nederlandse-aanpak .post-hero h1 {
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-bewust-budgetteren-nederlandse-aanpak .post-hero .lead {
  font-size: var(--fs-lg);
  color: var(--color-neutral-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Content section styling */
.post-bewust-budgetteren-nederlandse-aanpak .content-section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.post-bewust-budgetteren-nederlandse-aanpak .content-section h2 {
  margin-bottom: var(--space-xl);
  position: relative;
  display: inline-block;
}

.post-bewust-budgetteren-nederlandse-aanpak .content-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--border-radius-sm);
}

.post-bewust-budgetteren-nederlandse-aanpak .section-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .post-bewust-budgetteren-nederlandse-aanpak .section-content {
    flex-direction: row;
    align-items: center;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .text-content {
    flex: 3;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .image-container {
    flex: 2;
  }
}

.post-bewust-budgetteren-nederlandse-aanpak .image-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-bewust-budgetteren-nederlandse-aanpak .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.post-bewust-budgetteren-nederlandse-aanpak .image-container:hover img {
  transform: scale(1.02);
}

.post-bewust-budgetteren-nederlandse-aanpak .center-image {
  margin: var(--space-xl) auto;
  max-width: 800px;
}

/* Practices grid styling */
.post-bewust-budgetteren-nederlandse-aanpak .practices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .post-bewust-budgetteren-nederlandse-aanpak .practices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-bewust-budgetteren-nederlandse-aanpak .practice-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
}

.post-bewust-budgetteren-nederlandse-aanpak .practice-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-bewust-budgetteren-nederlandse-aanpak .practice-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--fs-lg);
}

/* Steps styling */
.post-bewust-budgetteren-nederlandse-aanpak .steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .post-bewust-budgetteren-nederlandse-aanpak .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.post-bewust-budgetteren-nederlandse-aanpak .step-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform var(--transition-normal);
}

.post-bewust-budgetteren-nederlandse-aanpak .step-item:hover {
  transform: translateY(-5px);
}

.post-bewust-budgetteren-nederlandse-aanpak .step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background-color: var(--color-secondary);
  color: var(--color-neutral-dark);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-lg);
  box-shadow: var(--shadow-md);
}

.post-bewust-budgetteren-nederlandse-aanpak .step-item h3 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: var(--fs-lg);
}

.post-bewust-budgetteren-nederlandse-aanpak .step-item p {
  color: white;
  margin-bottom: 0;
}

/* Conclusion box styling */
.post-bewust-budgetteren-nederlandse-aanpak .conclusion-box {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.post-bewust-budgetteren-nederlandse-aanpak .conclusion-box h3 {
  color: white;
  margin-bottom: var(--space-md);
  text-align: center;
}

.post-bewust-budgetteren-nederlandse-aanpak .conclusion-box p {
  color: white;
  margin-bottom: var(--space-md);
}

.post-bewust-budgetteren-nederlandse-aanpak .conclusion-box p:last-child {
  margin-bottom: 0;
}

/* Related posts section styling */
.post-bewust-budgetteren-nederlandse-aanpak .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--space-3xl) 0;
}

.post-bewust-budgetteren-nederlandse-aanpak .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.post-bewust-budgetteren-nederlandse-aanpak .related-posts-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--border-radius-sm);
}

.post-bewust-budgetteren-nederlandse-aanpak .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .post-bewust-budgetteren-nederlandse-aanpak .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-bewust-budgetteren-nederlandse-aanpak .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-bewust-budgetteren-nederlandse-aanpak .related-post-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-bewust-budgetteren-nederlandse-aanpak .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-bewust-budgetteren-nederlandse-aanpak .card-image {
  height: 200px;
  overflow: hidden;
}

.post-bewust-budgetteren-nederlandse-aanpak .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.post-bewust-budgetteren-nederlandse-aanpak .related-post-card:hover .card-image img {
  transform: scale(1.05);
}

.post-bewust-budgetteren-nederlandse-aanpak .card-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-bewust-budgetteren-nederlandse-aanpak .card-content h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
}

.post-bewust-budgetteren-nederlandse-aanpak .card-content p {
  margin-bottom: var(--space-lg);
  flex: 1;
}

.post-bewust-budgetteren-nederlandse-aanpak .read-more {
  align-self: flex-start;
  color: var(--color-primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-normal);
}

.post-bewust-budgetteren-nederlandse-aanpak .read-more::after {
  content: '→';
  margin-left: var(--space-xs);
  transition: transform var(--transition-normal);
}

.post-bewust-budgetteren-nederlandse-aanpak .read-more:hover {
  color: var(--color-accent);
}

.post-bewust-budgetteren-nederlandse-aanpak .read-more:hover::after {
  transform: translateX(4px);
}

/* Background color alternation */
.post-bewust-budgetteren-nederlandse-aanpak .content-section:nth-of-type(odd) {
  background-color: var(--color-neutral-light);
}

.post-bewust-budgetteren-nederlandse-aanpak .content-section:nth-of-type(even) {
  background-color: white;
}

/* Special styling for the primary background section */
.post-bewust-budgetteren-nederlandse-aanpak .bg-primary {
  background-color: var(--color-primary);
  color: white;
}

.post-bewust-budgetteren-nederlandse-aanpak .bg-primary h2 {
  color: white;
}

.post-bewust-budgetteren-nederlandse-aanpak .bg-primary h2::after {
  background-color: var(--color-secondary);
}

/* Finance mindfulness image styling */
.post-bewust-budgetteren-nederlandse-aanpak .finance-mindfulness-image {
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .post-bewust-budgetteren-nederlandse-aanpak .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .post-hero h1 {
    font-size: var(--fs-2xl);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .post-hero .lead {
    font-size: var(--fs-base);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .content-section h2 {
    font-size: var(--fs-xl);
  }
}

/* Page specific styles */
.post-bewust-budgetteren-nederlandse-aanpak {
  color: var(--color-neutral-dark);
}

/* Breadcrumbs */
.post-bewust-budgetteren-nederlandse-aanpak .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--fs-sm);
  color: var(--color-neutral-dark);
  background-color: white;
  border-bottom: var(--border-width) solid rgba(0, 0, 0, 0.05);
}

.post-bewust-budgetteren-nederlandse-aanpak .breadcrumbs a {
  color: var(--color-primary);
  transition: color var(--transition-normal);
}

.post-bewust-budgetteren-nederlandse-aanpak .breadcrumbs a:hover {
  color: var(--color-accent);
}

/* Hero Section */
.post-bewust-budgetteren-nederlandse-aanpak .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.post-bewust-budgetteren-nederlandse-aanpak .post-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0, 121, 107, 0.9) 0%, rgba(0, 121, 107, 0.7) 100%);
  z-index: 1;
}

.post-bewust-budgetteren-nederlandse-aanpak .post-hero .container {
  position: relative;
  z-index: 2;
}

.post-bewust-budgetteren-nederlandse-aanpak .post-hero h1 {
  color: white;
  margin-bottom: var(--space-md);
  max-width: 800px;
}

.post-bewust-budgetteren-nederlandse-aanpak .post-hero .lead {
  font-size: var(--fs-lg);
  max-width: 800px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Content Sections */
.post-bewust-budgetteren-nederlandse-aanpak .content-section {
  padding: var(--space-3xl) 0;
}

.post-bewust-budgetteren-nederlandse-aanpak .content-section h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  position: relative;
}

.post-bewust-budgetteren-nederlandse-aanpak .content-section h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--border-radius-full);
}

.post-bewust-budgetteren-nederlandse-aanpak .section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-bewust-budgetteren-nederlandse-aanpak .section-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-bewust-budgetteren-nederlandse-aanpak .tool-list {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
}

.post-bewust-budgetteren-nederlandse-aanpak .tool-list h3 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-size: var(--fs-lg);
}

.post-bewust-budgetteren-nederlandse-aanpak .tool-list ul {
  list-style-type: none;
  padding-left: 0;
}

.post-bewust-budgetteren-nederlandse-aanpak .tool-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.post-bewust-budgetteren-nederlandse-aanpak .tool-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

/* Techniques Grid */
.post-bewust-budgetteren-nederlandse-aanpak .techniques-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-bewust-budgetteren-nederlandse-aanpak .technique-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-bewust-budgetteren-nederlandse-aanpak .technique-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-bewust-budgetteren-nederlandse-aanpak .technique-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  font-size: var(--fs-lg);
}

.post-bewust-budgetteren-nederlandse-aanpak .technique-card img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  margin-top: var(--space-md);
}

.post-bewust-budgetteren-nederlandse-aanpak .mindful-tips {
  background-color: rgba(249, 168, 37, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  border-left: 4px solid var(--color-secondary);
}

.post-bewust-budgetteren-nederlandse-aanpak .mindful-tips h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.post-bewust-budgetteren-nederlandse-aanpak .mindful-tips ol {
  padding-left: var(--space-xl);
}

.post-bewust-budgetteren-nederlandse-aanpak .mindful-tips li {
  margin-bottom: var(--space-md);
}

/* Integration Section */
.post-bewust-budgetteren-nederlandse-aanpak .integration-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.post-bewust-budgetteren-nederlandse-aanpak .integration-content h3 {
  color: var(--color-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.post-bewust-budgetteren-nederlandse-aanpak .key-takeaways {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.post-bewust-budgetteren-nederlandse-aanpak .key-takeaways h3 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.post-bewust-budgetteren-nederlandse-aanpak .key-takeaways ul {
  list-style-type: none;
  padding-left: 0;
}

.post-bewust-budgetteren-nederlandse-aanpak .key-takeaways li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.post-bewust-budgetteren-nederlandse-aanpak .key-takeaways li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.post-bewust-budgetteren-nederlandse-aanpak .conclusion {
  margin-top: var(--space-2xl);
}

.post-bewust-budgetteren-nederlandse-aanpak .cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

/* Related Posts Section */
.post-bewust-budgetteren-nederlandse-aanpak .related-posts-section {
  background-color: white;
  padding: var(--space-3xl) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.post-bewust-budgetteren-nederlandse-aanpak .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.post-bewust-budgetteren-nederlandse-aanpak .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-bewust-budgetteren-nederlandse-aanpak .related-post-card {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-bewust-budgetteren-nederlandse-aanpak .related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-bewust-budgetteren-nederlandse-aanpak .related-post-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-bewust-budgetteren-nederlandse-aanpak .related-post-card .card-content {
  padding: var(--space-lg);
}

.post-bewust-budgetteren-nederlandse-aanpak .related-post-card h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.post-bewust-budgetteren-nederlandse-aanpak .related-post-card p {
  font-size: var(--fs-sm);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
}

.post-bewust-budgetteren-nederlandse-aanpak .related-post-card .card-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 500;
  font-size: var(--fs-sm);
}

.post-bewust-budgetteren-nederlandse-aanpak .related-post-card .card-link:hover {
  color: var(--color-accent);
}

.post-bewust-budgetteren-nederlandse-aanpak .related-post-card .card-link .icon {
  margin-left: var(--space-xs);
  transition: transform var(--transition-normal);
}

.post-bewust-budgetteren-nederlandse-aanpak .related-post-card .card-link:hover .icon {
  transform: translateX(4px);
}

/* Responsive styles */
@media (min-width: 768px) {
  .post-bewust-budgetteren-nederlandse-aanpak .section-grid {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .techniques-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .integration-container {
    grid-template-columns: 2fr 1fr;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-bewust-budgetteren-nederlandse-aanpak .techniques-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .post-hero {
    padding: var(--space-4xl) 0;
  }
  
  .post-bewust-budgetteren-nederlandse-aanpak .content-section {
    padding: var(--space-4xl) 0;
  }
}

.privacy-page {
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
  padding: var(--space-xl) 0 var(--space-3xl);
}

.privacy-page__header {
  margin-bottom: var(--space-2xl);
}

.privacy-page h1 {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  margin-bottom: var(--space-md);
}

.privacy-page h2 {
  color: var(--color-primary);
  font-size: var(--fs-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-family: var(--font-secondary);
}

.privacy-page__last-updated {
  font-size: var(--fs-sm);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-xl);
}

.privacy-page__section {
  margin-bottom: var(--space-xl);
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.privacy-page p {
  margin-bottom: var(--space-md);
  line-height: 1.6;
  font-size: var(--fs-base);
}

.privacy-page__list {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.privacy-page__list li {
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.privacy-page__contact-info {
  background-color: var(--color-neutral-light);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  border-left: var(--border-width-thick) solid var(--color-primary);
  margin-top: var(--space-md);
}

.privacy-page__contact-info p {
  margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
  .privacy-page__section {
    padding: var(--space-xl);
  }
  
  .privacy-page h2 {
    font-size: var(--fs-2xl);
  }
}

@media (min-width: 1024px) {
  .privacy-page {
    padding: var(--space-2xl) 0 var(--space-4xl);
  }
  
  .privacy-page__section {
    padding: var(--space-2xl);
  }
}

.terms-page {
  font-family: var(--font-primary);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
  padding: var(--space-xl) var(--space-md);
  max-width: 900px;
}

.terms-page__header {
  margin-bottom: var(--space-2xl);
  border-bottom: var(--border-width) solid var(--color-primary);
  padding-bottom: var(--space-md);
}

.terms-page__header h1 {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.terms-page__last-updated {
  font-size: var(--fs-sm);
  color: var(--color-neutral-dark);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.terms-page__section {
  margin-bottom: var(--space-xl);
}

.terms-page__section h2 {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-secondary);
}

.terms-page__section p {
  margin-bottom: var(--space-md);
  line-height: 1.6;
  font-size: var(--fs-base);
}

.terms-page__list {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.terms-page__list li {
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .terms-page {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .terms-page__header h1 {
    font-size: var(--fs-2xl);
  }
  
  .terms-page__section h2 {
    font-size: var(--fs-lg);
  }
}

.cookie-page {
  background-color: white;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-2xl) auto;
}

.cookie-page__title {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.cookie-page__content {
  max-width: 800px;
  margin: 0 auto;
}

.cookie-page__section {
  margin-bottom: var(--space-xl);
}

.cookie-page__heading {
  font-family: var(--font-secondary);
  color: var(--color-primary);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: var(--border-width) solid var(--color-primary);
}

.cookie-page__subheading {
  font-family: var(--font-primary);
  color: var(--color-accent);
  font-size: var(--fs-md);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.cookie-page__text {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
}

.cookie-page__list {
  list-style-type: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.cookie-page__list-item {
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.cookie-page__footer {
  border-top: var(--border-width) solid var(--color-neutral-light);
  padding-top: var(--space-md);
  margin-top: var(--space-xl);
}

.cookie-page__updated {
  font-size: var(--fs-sm);
  text-align: right;
  font-style: italic;
}

@media (max-width: 768px) {
  .cookie-page {
    padding: var(--space-lg) var(--space-md);
  }
  
  .cookie-page__title {
    font-size: var(--fs-2xl);
  }
  
  .cookie-page__heading {
    font-size: var(--fs-lg);
  }
  
  .cookie-page__text, 
  .cookie-page__list-item {
    font-size: var(--fs-base);
  }
}

.thank-page {
  padding: var(--space-3xl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-neutral-light);
}

.thank-page__container {
  width: 100%;
  max-width: 800px;
}

.thank-page__content {
  padding: var(--space-2xl);
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.thank-page__content:hover {
  transform: none;
}

.thank-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-family: var(--font-secondary);
}

.thank-page__icon {
  margin-bottom: var(--space-xl);
  color: var(--color-success);
}

.thank-page__message {
  font-size: var(--fs-lg);
  margin: 0 auto var(--space-lg);
  max-width: 600px;
  color: var(--color-neutral-dark);
}

.thank-page__confirmation {
  font-size: var(--fs-md);
  margin: 0 auto var(--space-xl);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  border-left: var(--border-width-thick) solid var(--color-primary);
}

.thank-page__next-steps {
  text-align: left;
  margin-bottom: var(--space-xl);
  background-color: rgba(0, 121, 107, 0.05);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
}

.thank-page__next-title {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--fs-lg);
}

.thank-page__tips-list {
  padding-left: var(--space-xl);
  margin-bottom: 0;
}

.thank-page__tips-list li {
  margin-bottom: var(--space-sm);
}

.thank-page__tips-list li:last-child {
  margin-bottom: 0;
}

.thank-page__action {
  margin-top: var(--space-xl);
}

.thank-page__home-btn {
  font-size: var(--fs-md);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: background-color var(--transition-normal);
}

@media (max-width: 768px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__content {
    padding: var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--fs-2xl);
  }
  
  .thank-page__message {
    font-size: var(--fs-base);
  }
  
  .thank-page__next-title {
    font-size: var(--fs-md);
  }
}

  .error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: var(--space-3xl) var(--space-md);
    background-color: var(--color-neutral-light);
    position: relative;
    overflow: hidden;
  }

  .error-404__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .error-404__content {
    max-width: 600px;
    padding: var(--space-xl);
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
  }

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

  .error-404__number {
    font-family: var(--font-secondary);
    font-size: var(--fs-5xl);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
  }

  .error-404__number::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: var(--border-width-thick);
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-full);
  }

  .error-404__title {
    font-size: var(--fs-2xl);
    color: var(--color-neutral-dark);
    margin-bottom: var(--space-md);
    font-weight: 600;
  }

  .error-404__message {
    font-size: var(--fs-md);
    color: var(--color-neutral-dark);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  .error-404__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    transition: all var(--transition-normal);
  }

  .error-404__button:hover {
    transform: translateY(-2px);
  }

  .error-404__icon {
    transition: transform var(--transition-normal);
  }

  .error-404__button:hover .error-404__icon {
    transform: translateX(-4px);
  }

  .error-404__decoration {
    position: absolute;
    z-index: 1;
    opacity: 0.05;
    pointer-events: none;
  }

  .error-404__circle {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: var(--border-radius-full);
    background-color: var(--color-accent);
    opacity: 0.1;
  }

  @media (min-width: 768px) {
    .error-404__number {
      font-size: var(--fs-5xl);
    }

    .error-404__title {
      font-size: var(--fs-3xl);
    }

    .error-404__content {
      padding: var(--space-2xl);
    }

    .error-404__circle {
      width: 400px;
      height: 400px;
      top: -200px;
      right: -200px;
    }
  }

  @media (min-width: 1024px) {
    .error-404__number {
      font-size: calc(var(--fs-5xl) * 1.2);
      margin-bottom: var(--space-lg);
    }
    
    .error-404__content {
      padding: var(--space-2xl) var(--space-3xl);
    }
  }
