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

:root {
  
  --color-primary: #ff6b35; 
  --color-secondary: #004e89; 
  --color-accent: #00a896; 
  --color-neutral-light: #f8f9fa; 
  --color-neutral-medium: #e9ecef; 
  --color-neutral-dark: #495057; 
  --color-white: #ffffff; 
  --color-success: #38b000; 
  
  
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  
  
  --fs-xxl: 3.5rem; 
  --fs-xl: 2.5rem;  
  --fs-lg: 2rem;    
  --fs-md: 1.5rem;  
  --fs-sm: 1.125rem; 
  --fs-xs: 1rem;    
  --fs-xxs: 0.875rem; 
  
  
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-loose: 1.8;
  
  
  --space-xxs: 0.25rem; 
  --space-xs: 0.5rem;   
  --space-sm: 1rem;     
  --space-md: 1.5rem;   
  --space-lg: 2rem;     
  --space-xl: 3rem;     
  --space-xxl: 5rem;    
  
  
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-pill: 9999px;
  --border-width: 1px;
  --border-width-thick: 2px;
  
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  
  --z-base: 1;
  --z-above: 10;
  --z-modal: 100;
  --z-overlay: 1000;
}

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

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

body {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: var(--lh-tight);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
}

h1 {
  font-size: var(--fs-xxl);
  margin-bottom: var(--space-lg);
}

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

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

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

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

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

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

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

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

strong {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xs) var(--space-md);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fs-xs);
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

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

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

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: #003e6f;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

.icon-md {
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
}

.icon-lg {
  font-size: 2rem;
  width: 3.5rem;
  height: 3.5rem;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xxs) var(--space-xs);
  border-radius: var(--border-radius-sm);
  font-size: var(--fs-xxs);
  font-weight: 500;
  line-height: 1;
}

.badge-savings {
  background-color: rgba(56, 176, 0, 0.1);
  color: var(--color-success);
}

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

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

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

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

@media (max-width: 767px) {
  :root {
    --fs-xxl: 2.5rem;
    --fs-xl: 2rem;
    --fs-lg: 1.75rem;
    --fs-md: 1.25rem;
    --space-xxl: 3rem;
    --space-xl: 2rem;
  }
  
  .card {
    padding: var(--space-md);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --fs-xxl: 3rem;
    --fs-xl: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

.header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: var(--space-sm) 0;
  position: relative;
  z-index: var(--z-above);
}

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

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: var(--space-lg);
  transition: transform var(--transition-normal);
}

.header__logo:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.header__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-xs);
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--color-secondary);
  line-height: 1.1;
}

.header__logo-tagline {
  font-family: var(--font-secondary);
  font-size: var(--fs-xxs);
  color: var(--color-neutral-dark);
  opacity: 0.8;
  display: none;
}

@media (min-width: 768px) {
  .header__logo-tagline {
    display: block;
  }
}

.header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .header__nav {
    display: block;
    margin-right: auto;
  }
}

.header__nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__nav-item {
  margin: 0 var(--space-xs);
}

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

.header__nav-link:hover {
  color: var(--color-primary);
  text-decoration: none;
  background-color: rgba(255, 107, 53, 0.05);
}

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

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

.header__actions {
  display: none;
}

@media (min-width: 1024px) {
  .header__actions {
    display: flex;
    align-items: center;
  }
}

.header__savings-badge {
  display: flex;
  align-items: center;
  background-color: rgba(56, 176, 0, 0.1);
  padding: var(--space-xxs) var(--space-sm);
  border-radius: var(--border-radius-pill);
  margin-right: var(--space-md);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.header__savings-badge:hover {
  background-color: rgba(56, 176, 0, 0.15);
  transform: translateY(-2px);
  text-decoration: none;
}

.header__savings-icon {
  display: flex;
  align-items: center;
  margin-right: var(--space-xxs);
}

.header__savings-text {
  font-family: var(--font-primary);
  font-size: var(--fs-xxs);
  font-weight: 500;
  color: var(--color-success);
}

.header__cta-btn {
  white-space: nowrap;
}

.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: var(--z-above);
}

@media (min-width: 1024px) {
  .header__mobile-toggle {
    display: none;
  }
}

.header__mobile-toggle-bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.header__mobile-menu {
  position: fixed;
  top: -65px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
  display: none;
}

.header__mobile-menu.is-active {
  transform: translateX(0);
  display: block;
  z-index: 100;
  position: relative;
}

.header__mobile-menu-container {
  padding: var(--space-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 40;
  position: relative;
}

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

.header__logo--mobile {
  margin-right: 0;
}

.header__mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.header__mobile-close:hover {
  background-color: var(--color-neutral-medium);
}

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

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

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

.header__mobile-nav-divider {
  height: 1px;
  background-color: var(--color-neutral-medium);
  margin: var(--space-md) 0;
}

.header__mobile-nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fs-sm);
  color: var(--color-secondary);
  text-decoration: none;
  display: block;
  padding: var(--space-xs) 0;
  transition: all var(--transition-normal);
}

.header__mobile-nav-link:hover {
  color: var(--color-primary);
  transform: translateX(var(--space-xxs));
  text-decoration: none;
}

.header__mobile-nav-link--small {
  font-size: var(--fs-xxs);
  color: var(--color-neutral-dark);
  opacity: 0.7;
}

.header__mobile-cta {
  margin-top: auto;
  padding-top: var(--space-md);
}

.header__mobile-cta-btn {
  width: 100%;
  justify-content: center;
}

.header__mobile-toggle.is-active .header__mobile-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__mobile-toggle.is-active .header__mobile-toggle-bar:nth-child(2) {
  opacity: 0;
}

.header__mobile-toggle.is-active .header__mobile-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--color-primary) 33.3%, var(--color-white) 33.3%, var(--color-white) 66.6%, var(--color-accent) 66.6%);
}

.main {
  overflow-x: hidden;
  position: relative;
}

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

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

.main .hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-20px);
}

.main .hero h1 {
  font-size: var(--fs-xxl);
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
  line-height: 1.1;
  position: relative;
}

.main .hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  border-radius: var(--border-radius-pill);
}

.main .hero-subtitle {
  font-size: var(--fs-md);
  margin-bottom: var(--space-lg);
  color: var(--color-neutral-dark);
  max-width: 90%;
  line-height: var(--lh-loose);
}

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

.main .hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
}

.main .hero-image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform var(--transition-normal);
}

.main .hero-image-container:hover {
  transform: rotate(0deg) scale(1.02);
}

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

.main .hero-image-container:hover img {
  transform: scale(1);
}

.main .hero-stats {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  justify-content: center;
}

.main .stat-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  flex: 1;
  transform: translateY(0);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.main .stat-number {
  display: block;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xxs);
  font-family: var(--font-primary);
}

.main .stat-text {
  font-size: var(--fs-xxs);
  color: var(--color-neutral-dark);
}

.main .hero-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background-color: rgba(0, 78, 137, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.main .hero::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 107, 53, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.main .featured-posts {
  padding: var(--space-xl) 0;
  background-color: var(--color-white);
  position: relative;
}

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

.main .section-description {
  font-size: var(--fs-sm);
  color: var(--color-neutral-dark);
  max-width: 700px;
  margin: 0 auto;
}

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

.main .post-card {
  background-color: var(--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;
}

.main .post-card:hover {
  transform: translateY(-10px);
  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);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.main .post-content h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
  line-height: 1.3;
}

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

.main .post-content .btn {
  align-self: flex-start;
}

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

.main .section-cta .btn {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
}

.main .section-cta .btn i {
  margin-left: var(--space-xs);
  transition: transform var(--transition-normal);
}

.main .section-cta .btn:hover i {
  transform: translateX(5px);
}

.main .savings-categories {
  padding: var(--space-xxl) 0;
  background-color: var(--color-neutral-light);
  position: relative;
  overflow: hidden;
}

.main .categories-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.main .category-card {
  background-color: var(--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);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.main .category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

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

.main .category-card:hover::before {
  transform: scaleX(1);
}

.main .category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

.main .category-icon i {
  font-size: 24px;
  color: var(--color-primary);
}

.main .category-card h3 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
}

.main .category-card p {
  font-size: var(--fs-xs);
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

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

.main .savings-list li {
  margin-bottom: var(--space-xs);
  font-size: var(--fs-xxs);
  display: flex;
  align-items: center;
}

.main .savings-list li:not(:first-child)::before {
  content: '';
  color: var(--color-accent);
  margin-right: var(--space-xs);
}

.main .badge {
  margin-bottom: var(--space-xs);
}

.main .how-it-works {
  padding: var(--space-xxl) 0;
  background-color: var(--color-white);
  position: relative;
}

.main .process-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.main .process-step {
  display: flex;
  gap: var(--space-lg);
  position: relative;
}

.main .process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 70px;
  left: 30px;
  height: calc(100% + var(--space-xl));
  width: 2px;
  background-color: rgba(0, 78, 137, 0.1);
  z-index: 0;
}

.main .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: var(--fs-lg);
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: var(--z-above);
  box-shadow: var(--shadow-md);
}

.main .step-content {
  flex-grow: 1;
}

.main .step-content h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
}

.main .step-content p {
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
}

.main .step-content img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.main .step-content img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.main .testimonials {
  padding: var(--space-xxl) 0;
  background-color: var(--color-neutral-light);
  position: relative;
}

.main .testimonials-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.main .testimonial-card {
  background-color: var(--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);
  position: relative;
  height: 100%;
}

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

.main .testimonial-quote {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: rgba(255, 107, 53, 0.1);
}

.main .testimonial-text {
  font-style: italic;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
  color: var(--color-neutral-dark);
  position: relative;
}

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

.main .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-primary);
}

.main .author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .author-info h4 {
  font-size: var(--fs-xs);
  margin-bottom: var(--space-xxs);
  color: var(--color-secondary);
}

.main .author-info p {
  font-size: var(--fs-xxs);
  color: var(--color-accent);
  margin: 0;
}

.main .quick-tips {
  padding: var(--space-xxl) 0;
  background-color: var(--color-white);
  position: relative;
}

.main .tips-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.main .tip-card {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  border-left: 4px solid var(--color-accent);
}

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

.main .tip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 168, 150, 0.1);
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

.main .tip-icon i {
  font-size: 20px;
  color: var(--color-accent);
}

.main .tip-card h3 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
}

.main .tip-card p {
  font-size: var(--fs-xs);
  color: var(--color-neutral-dark);
  margin-bottom: 0;
}

.main .contact {
  padding: var(--space-xxl) 0;
  background-color: var(--color-neutral-light);
  position: relative;
}

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

.main .contact-info {
  display: flex;
  flex-direction: column;
}

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

.main .contact-info p {
  margin-bottom: var(--space-lg);
  font-size: var(--fs-sm);
}

.main .contact-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

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

.main .feature i {
  color: var(--color-success);
}

.main .contact-image {
  margin-top: var(--space-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

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

.main .contact-form-container {
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

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

.main .form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
}

.main .form-group label {
  font-weight: 500;
  font-size: var(--fs-xs);
  color: var(--color-secondary);
}

.main .form-group input,
.main .form-group select,
.main .form-group textarea {
  padding: var(--space-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-secondary);
  font-size: var(--fs-xs);
}

.main .form-group input:focus,
.main .form-group select:focus,
.main .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.main .form-checkbox {
  flex-direction: row;
  align-items: center;
  gap: var(--space-xs);
}

.main .form-checkbox input {
  width: 18px;
  height: 18px;
}

.main .form-checkbox label {
  font-size: var(--fs-xxs);
}

.main .contact-form .btn {
  margin-top: var(--space-sm);
  align-self: flex-start;
}

.main .cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  z-index: var(--z-modal);
  display: none;
}

.main .cookie-banner.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

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

.main .cookie-content p {
  margin-bottom: 0;
  font-size: var(--fs-xxs);
}

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

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

@media (max-width: 1023px) {
  .main .categories-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .tips-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .testimonials-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .main .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .main .hero-text {
    order: 1;
    text-align: center;
    transform: translateY(0);
  }
  
  .main .hero h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main .hero-subtitle {
    max-width: 100%;
  }
  
  .main .hero-cta {
    justify-content: center;
  }
  
  .main .hero-visual {
    order: 0;
  }
  
  .main .posts-grid,
  .main .categories-container,
  .main .testimonials-container,
  .main .tips-container {
    grid-template-columns: 1fr;
  }
  
  .main .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .main .contact-form-container {
    padding: var(--space-lg);
  }
  
  .main .contact-form .btn {
    width: 100%;
  }
  
  .main .process-step {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .main .process-step:not(:last-child)::after {
    display: none;
  }
}

.footer {
  position: relative;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding-top: var(--space-xl);
  overflow: hidden;
  margin-top: var(--space-xxl);
}

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

.footer__wave-shape {
  fill: var(--color-secondary);
}

.footer__container {
  position: relative;
  z-index: var(--z-above);
}

.footer__main {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: var(--border-width) solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  flex: 1 1 300px;
}

.footer__title {
  font-family: var(--font-primary);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  position: relative;
  display: inline-block;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: var(--border-radius-pill);
}

.footer__tagline {
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-md);
  max-width: 90%;
}

.footer__savings-indicator {
  margin-top: var(--space-md);
}

.footer__badge {
  font-size: var(--fs-xxs);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-pill);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-success);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 500;
}

.footer__navigation {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer__nav-column {
  flex: 1 1 180px;
}

.footer__nav-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
}

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

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

.footer__nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--fs-xxs);
  transition: all var(--transition-fast);
  position: relative;
  padding-left: var(--space-xs);
  display: inline-block;
}

.footer__nav-link::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0;
  transition: transform var(--transition-fast);
}

.footer__nav-link:hover {
  color: var(--color-primary);
  text-decoration: none;
  transform: translateX(3px);
}

.footer__nav-link:hover::before {
  transform: translateX(2px);
  color: var(--color-primary);
}

.footer__calculator {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-lg);
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.footer__calculator-inner {
  position: relative;
  z-index: 2;
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__calculator-title {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  font-family: var(--font-primary);
}

.footer__calculator-text {
  font-size: var(--fs-xs);
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.9);
  max-width: 80%;
}

.footer__calculator-btn {
  background-color: var(--color-primary);
  border-radius: var(--border-radius-pill);
  font-weight: 600;
  padding: var(--space-xs) var(--space-md);
  transition: all var(--transition-fast);
}

.footer__calculator-btn:hover {
  background-color: #e85a2a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.footer__calculator-graphic {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.footer__calculator-coin {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  font-size: var(--fs-md);
  position: absolute;
  box-shadow: var(--shadow-md);
  animation: float 3s infinite ease-in-out;
}

.footer__calculator-coin--1 {
  right: 30px;
  animation-delay: 0s;
}

.footer__calculator-coin--2 {
  right: 70px;
  top: 30px;
  animation-delay: 0.5s;
}

.footer__calculator-coin--3 {
  right: 10px;
  top: 60px;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-top: var(--border-width) solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
  font-size: var(--fs-xxs);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer__nl-flag {
  display: flex;
  flex-direction: row;
  width: 40px;
  height: 24px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.footer__flag-stripe {
  flex: 1;
  height: 100%;
}

.footer__flag-stripe--red {
  background-color: #AE1C28;
}

.footer__flag-stripe--white {
  background-color: #FFFFFF;
}

.footer__flag-stripe--blue {
  background-color: #21468B;
}

@media (max-width: 767px) {
  .footer {
    padding-top: var(--space-lg);
  }
  
  .footer__wave {
    top: -40px;
    height: 40px;
  }
  
  .footer__main {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer__navigation {
    gap: var(--space-md);
  }
  
  .footer__nav-column {
    flex: 1 1 100%;
  }
  
  .footer__calculator-text {
    max-width: 100%;
  }
  
  .footer__calculator-graphic {
    opacity: 0.5;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
  }
  
  .footer__nl-flag {
    margin-top: var(--space-xs);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer__navigation {
    flex: 1 1 100%;
    margin-top: var(--space-md);
  }
  
  .footer__calculator-graphic {
    opacity: 0.7;
  }
}

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

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

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

.privacy-page__last-updated {
  text-align: center;
  font-size: var(--fs-xxs);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-lg);
}

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

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

.privacy-page__section h2 {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: var(--border-width) solid var(--color-neutral-medium);
}

.privacy-page__section p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

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

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

.privacy-page__contact {
  background-color: var(--color-neutral-medium);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  margin-top: var(--space-md);
}

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

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

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-lg) 0;
  }
  
  .privacy-page__content {
    padding: var(--space-md);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-lg);
  }
}

.cookie-page {
  padding: var(--space-lg) 0;
  background-color: var(--color-neutral-light);
  font-family: var(--font-secondary);
  color: var(--color-neutral-dark);
}

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

.cookie-page__header h1 {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-weight: 700;
  text-align: center;
}

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

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

.cookie-page__section h2 {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: var(--border-width) solid var(--color-neutral-medium);
}

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

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

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

.cookie-page__list li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
}

.cookie-page p {
  font-size: var(--fs-xs);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-md);
}

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

.cookie-page__update-date {
  font-size: var(--fs-xxs);
  color: var(--color-neutral-dark);
  text-align: center;
  font-style: italic;
}

@media (max-width: 767px) {
  .cookie-page__content {
    padding: var(--space-md);
  }
  
  .cookie-page__section h2 {
    font-size: var(--fs-md);
  }
  
  .cookie-page__subsection h3 {
    font-size: var(--fs-sm);
  }
}

.thank-page {
  padding: var(--space-xl) 0;
  background-color: var(--color-neutral-light);
}

.thank-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.thank-page__header {
  margin-bottom: var(--space-lg);
}

.thank-page__header h1 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.thank-page__icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.thank-page__check-icon {
  color: var(--color-success);
  width: 64px;
  height: 64px;
}

.thank-page__card {
  width: 100%;
  margin-bottom: var(--space-xl);
}

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

.thank-page__message h2 {
  color: var(--color-accent);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

.thank-page__message p {
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: var(--color-neutral-dark);
  margin-bottom: var(--space-md);
}

.thank-page__message strong {
  color: var(--color-primary);
  font-weight: 700;
}

.thank-page__savings-badge {
  margin: var(--space-md) 0;
}

.thank-page__next-steps {
  margin-top: var(--space-md);
}

.thank-page__next-steps p {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
  max-width: 600px;
}

.thank-page__home-button {
  margin-top: var(--space-md);
  font-weight: 600;
  padding: var(--space-sm) var(--space-lg);
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-lg) 0;
  }
  
  .thank-page__message h2 {
    font-size: var(--fs-md);
  }
  
  .thank-page__message p {
    font-size: var(--fs-xs);
  }
  
  .thank-page__next-steps p {
    font-size: var(--fs-xs);
  }
}

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

.category-page__hero {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-xl);
}

.category-page__hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.category-page__hero-description {
  font-size: var(--fs-md);
  max-width: 800px;
  line-height: var(--lh-normal);
  margin-bottom: 0;
}

.category-page__posts {
  padding: var(--space-lg) 0;
}

.category-page__posts h2 {
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
}

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

.post-card {
  background-color: var(--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;
}

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

.post-card__image-container {
  height: 220px;
  overflow: hidden;
}

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

.post-card:hover .post-card__image-container img {
  transform: scale(1.05);
}

.post-card__content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card__content h3 {
  font-size: var(--fs-md);
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.post-card__content p {
  margin-bottom: var(--space-md);
  color: var(--color-neutral-dark);
  line-height: var(--lh-normal);
  flex-grow: 1;
}

.post-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.category-page__content-section {
  padding: var(--space-xl) 0;
  margin-top: var(--space-xl);
}

.category-page__content-section--stats {
  background-color: var(--color-neutral-medium);
}

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

.category-page__stat-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.category-page__stat-icon {
  margin-right: var(--space-sm);
  background-color: rgba(0, 78, 137, 0.1);
  border-radius: var(--border-radius-pill);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-page__stat-content {
  flex-grow: 1;
}

.category-page__stat-content h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-xxs);
  font-size: var(--fs-sm);
}

.category-page__stat-value {
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-accent);
}

.badge-savings {
  font-size: var(--fs-sm);
  padding: var(--space-xxs) var(--space-xs);
}

.category-page__content-section--tips {
  background-color: var(--color-white);
}

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

.category-page__tip {
  padding: var(--space-md);
  border-left: var(--border-width-thick) solid var(--color-accent);
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-md);
}

.category-page__tip h4 {
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  font-size: var(--fs-sm);
}

.category-page__tip p {
  margin-bottom: 0;
}

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

@media (min-width: 1024px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-page__stats-container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .category-page__tips-container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .category-page__hero {
    padding: var(--space-xxl) 0;
  }
  
  .category-page__hero-description {
    font-size: var(--fs-md);
  }
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten {
  font-family: var(--font-secondary);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .breadcrumbs {
  padding: var(--space-sm) 0;
  background-color: var(--color-neutral-light);
  font-size: var(--fs-xxs);
  color: var(--color-neutral-dark);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .breadcrumbs a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .post-hero h1 {
  color: var(--color-white);
  font-size: var(--fs-xxl);
  margin-bottom: var(--space-md);
  max-width: 900px;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .post-hero .lead {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  max-width: 800px;
  margin-bottom: 0;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .content-section {
  padding: var(--space-xxl) 0;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .strategy-section {
  background-color: var(--color-white);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-section {
  background-color: var(--color-neutral-medium);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .content-section h2 {
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .content-section h3 {
  color: var(--color-primary);
  font-size: var(--fs-md);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .strategy-content {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .strategy-text {
  flex: 1;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .strategy-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .strategy-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .strategy-content.reverse {
  flex-direction: row-reverse;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-grid {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-content {
  flex: 1;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-cards .card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  margin-bottom: 0;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-cards .card h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .badge-savings {
  display: inline-block;
  margin-top: var(--space-xs);
  font-weight: 600;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-list,
.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .strategy-list {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-list li,
.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .strategy-list li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-loose);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .related-posts-section {
  background-color: var(--color-white);
  padding: var(--space-xl) 0;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .related-post-card {
  background-color: var(--color-neutral-medium);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .related-post-card h3 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .related-post-card h3 a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .related-post-card h3 a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .related-post-card p {
  font-size: var(--fs-xxs);
  color: var(--color-neutral-dark);
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .strategy-content,
  .post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .strategy-content.reverse,
  .post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-grid {
    flex-direction: column;
  }
  
  .post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .strategy-image,
  .post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-image {
    margin-top: var(--space-lg);
    order: 2;
  }
  
  .post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .savings-cards,
  .post-boodschappen-budget-hoe-bespaar-je-bij-nederlandse-supermarkten .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

  .post-energie-besparen-tips-nederlandse-huishoudens {
    font-family: var(--font-secondary);
    color: var(--color-neutral-dark);
    line-height: var(--lh-normal);
  }
  
  
  .post-energie-besparen-tips-nederlandse-huishoudens .breadcrumbs {
    padding: var(--space-sm) 0;
    font-size: var(--fs-xxs);
    color: var(--color-neutral-dark);
    background-color: var(--color-neutral-light);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .breadcrumbs a {
    color: var(--color-secondary);
    text-decoration: none;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .breadcrumbs a:hover {
    color: var(--color-primary);
    text-decoration: underline;
  }
  
  
  .post-energie-besparen-tips-nederlandse-huishoudens .post-hero {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: var(--space-xl) 0;
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .post-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,78,137,0) 0%, rgba(0,78,137,1) 100%);
    z-index: 1;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .post-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .post-hero h1 {
    color: var(--color-white);
    font-size: var(--fs-xxl);
    margin-bottom: var(--space-md);
    line-height: var(--lh-tight);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .post-hero .lead {
    font-size: var(--fs-md);
    line-height: var(--lh-normal);
    margin-bottom: var(--space-md);
    max-width: 800px;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .badge-container {
    margin-top: var(--space-md);
  }
  
  
  .post-energie-besparen-tips-nederlandse-huishoudens .content-section {
    padding: var(--space-xxl) 0;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .section-tips {
    background-color: var(--color-white);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .section-insulation {
    background-color: var(--color-neutral-medium);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .section-habits {
    background-color: var(--color-white);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .content-section h2 {
    margin-bottom: var(--space-lg);
    color: var(--color-secondary);
    text-align: center;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .content-grid.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .content-grid.reverse .content-text {
    direction: ltr;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .content-grid.reverse .content-image {
    direction: ltr;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .content-text {
    padding-right: var(--space-md);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .content-text h4 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--color-secondary);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .content-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .savings-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: var(--space-sm);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .savings-list li {
    padding: var(--space-xs) 0;
    border-bottom: var(--border-width) solid var(--color-neutral-medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .savings-list li:last-child {
    border-bottom: none;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .savings-list li::before {
    content: "";
    margin-right: var(--space-xs);
  }
  
  
  .post-energie-besparen-tips-nederlandse-huishoudens .habits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xl);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .habit-card {
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    background-color: var(--color-neutral-light);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .habit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .habit-card h4 {
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .habit-card p {
    margin-bottom: var(--space-md);
    flex-grow: 1;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .habit-card .badge {
    align-self: flex-start;
  }
  
  
  .post-energie-besparen-tips-nederlandse-huishoudens .conclusion {
    background-color: var(--color-neutral-medium);
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    margin-top: var(--space-xl);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .conclusion h3 {
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    text-align: center;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .action-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
  }
  
  
  .post-energie-besparen-tips-nederlandse-huishoudens .related-posts {
    background-color: var(--color-neutral-medium);
    padding: var(--space-xxl) 0;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .related-posts h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-secondary);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .post-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--color-white);
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .post-content {
    padding: var(--space-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .post-content h4 {
    margin-bottom: var(--space-sm);
    font-size: var(--fs-sm);
    line-height: var(--lh-tight);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .post-content p {
    margin-bottom: var(--space-md);
    color: var(--color-neutral-dark);
    font-size: var(--fs-xxs);
    flex-grow: 1;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .read-more {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .read-more:hover {
    color: var(--color-accent);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .read-more::after {
    content: "";
    margin-left: var(--space-xxs);
    transition: transform var(--transition-fast);
  }
  
  .post-energie-besparen-tips-nederlandse-huishoudens .read-more:hover::after {
    transform: translateX(4px);
  }
  
  
  @media (max-width: 1023px) {
    .post-energie-besparen-tips-nederlandse-huishoudens .posts-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    .post-energie-besparen-tips-nederlandse-huishoudens .content-grid,
    .post-energie-besparen-tips-nederlandse-huishoudens .content-grid.reverse {
      grid-template-columns: 1fr;
      gap: var(--space-md);
      direction: ltr;
    }
    
    .post-energie-besparen-tips-nederlandse-huishoudens .habits-grid {
      grid-template-columns: 1fr;
    }
    
    .post-energie-besparen-tips-nederlandse-huishoudens .posts-grid {
      grid-template-columns: 1fr;
    }
    
    .post-energie-besparen-tips-nederlandse-huishoudens .content-section {
      padding: var(--space-xl) 0;
    }
    
    .post-energie-besparen-tips-nederlandse-huishoudens .action-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .post-energie-besparen-tips-nederlandse-huishoudens .action-buttons .btn {
      width: 100%;
    }
    
    .post-energie-besparen-tips-nederlandse-huishoudens .post-hero {
      padding: var(--space-lg) 0;
    }
    
    .post-energie-besparen-tips-nederlandse-huishoudens .post-hero h1 {
      font-size: var(--fs-xl);
    }
    
    .post-energie-besparen-tips-nederlandse-huishoudens .post-hero .lead {
      font-size: var(--fs-sm);
    }
  }

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens {
  overflow-x: hidden;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .breadcrumbs {
  background-color: var(--color-neutral-light);
  padding: var(--space-sm) 0;
  font-size: var(--fs-xxs);
  color: var(--color-neutral-dark);
  border-bottom: var(--border-width) solid var(--color-neutral-medium);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .breadcrumbs a {
  color: var(--color-secondary);
  text-decoration: none;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-xxl) 0;
  text-align: center;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .post-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .post-hero .lead {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .hero-cta {
  margin-top: var(--space-md);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .badge-savings {
  font-size: var(--fs-xs);
  padding: var(--space-xs) var(--space-sm);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .content-section {
  padding: var(--space-xxl) 0;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .content-section h2 {
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .content-section p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-loose);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .image-container {
  margin: var(--space-lg) 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .image-container img:hover {
  transform: scale(1.02);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .section-waterbesparende-apparaten {
  background-color: var(--color-white);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .benefits-list {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .benefits-list li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-normal);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .content-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .section-slimme-gewoonten {
  background-color: var(--color-neutral-light);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .habits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .habit-card {
  padding: var(--space-md);
  background-color: var(--color-white);
  height: 100%;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .habit-card h4 {
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .habit-card ul {
  padding-left: var(--space-md);
  margin-bottom: 0;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .habit-card li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .insight-box {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  margin: var(--space-lg) 0;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .insight-box h5 {
  color: var(--color-white);
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .insight-box p {
  margin-bottom: 0;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .section-slimme-technologie {
  background-color: var(--color-white);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .tech-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .tech-feature {
  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-accent);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .tech-feature h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .tech-feature p {
  margin-bottom: 0;
  font-size: var(--fs-xs);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .conclusion-box {
  background-color: var(--color-neutral-medium);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  margin: var(--space-xl) 0;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .conclusion-box h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .conclusion-box ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .conclusion-box li {
  margin-bottom: var(--space-sm);
  line-height: var(--lh-normal);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .conclusion-box p {
  margin-bottom: 0;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .related-posts-section {
  background-color: var(--color-neutral-light);
  padding: var(--space-xxl) 0;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .related-post-card {
  padding: var(--space-md);
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .related-post-card h3 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .related-post-card p {
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .related-post-card .btn {
  align-self: flex-start;
}

@media (max-width: 1023px) {
  .post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .tech-features,
  .post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .content-grid,
  .post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .habits-grid,
  .post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .tech-features,
  .post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .content-image {
    margin-top: var(--space-md);
  }
  
  .post-waterverbruik-verminderen-slimme-besparingen-nederlandse-huishoudens .post-hero .lead {
    font-size: var(--fs-sm);
  }
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .post-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .post-hero .lead {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-lg);
  max-width: 800px;
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .breadcrumbs {
  background-color: var(--color-neutral-medium);
  padding: var(--space-xs) 0;
  font-size: var(--fs-xxs);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .breadcrumbs a {
  color: var(--color-secondary);
  text-decoration: none;
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .breadcrumbs a:hover {
  text-decoration: underline;
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .breadcrumbs span {
  color: var(--color-neutral-dark);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .content-section {
  padding: var(--space-xxl) 0;
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .cost-section {
  background-color: var(--color-white);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .subsidies-section {
  background-color: var(--color-neutral-light);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .calculator-section {
  background-color: var(--color-white);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .conclusion-section {
  background-color: var(--color-neutral-light);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .related-posts-section {
  background-color: var(--color-white);
  padding: var(--space-xxl) 0;
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .section-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .section-content {
    flex-direction: row;
    align-items: center;
  }
  
  .post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .text-content {
    flex: 3;
  }
  
  .post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .image-container {
    flex: 2;
  }
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .text-content {
  margin-bottom: var(--space-md);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .image-container 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-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .image-container img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd ul.cost-factors,
.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd ol.calculation-steps {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd ul.cost-factors li,
.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd ol.calculation-steps li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .subsidies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .subsidies-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .subsidy-card {
  height: 100%;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .subsidy-card h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .subsidy-card .badge {
  align-self: flex-start;
  margin-bottom: var(--space-sm);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .subsidy-alert {
  background-color: rgba(255, 107, 53, 0.1);
  border-left: var(--border-width-thick) solid var(--color-primary);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .calculator-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .calculator-content {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .calculator-content .text-content {
    flex: 3;
  }
  
  .post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .calculator-content .image-container {
    flex: 2;
    margin-top: var(--space-lg);
  }
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .example-calculation {
  background-color: var(--color-neutral-light);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  border-left: var(--border-width-thick) solid var(--color-accent);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .example-calculation h5 {
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .benefit-item {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .benefit-item h5 {
  color: var(--color-secondary);
  margin: var(--space-xs) 0;
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .benefit-item .icon {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-xs);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .action-steps {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .action-steps h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .action-steps ol {
  padding-left: var(--space-lg);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .action-steps li {
  margin-bottom: var(--space-xs);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .related-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .related-post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  margin-bottom: var(--space-sm);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .related-post-card h4 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .related-post-card p {
  margin-bottom: var(--space-md);
  flex-grow: 1;
  font-size: var(--fs-xxs);
}

.post-zonnepanelen-nederland-kosten-subsidies-terugverdientijd .related-post-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle {
  font-family: var(--font-secondary);
  color: var(--color-neutral-dark);
  background-color: var(--color-neutral-light);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--fs-xxs);
  background-color: var(--color-white);
  border-bottom: var(--border-width) solid var(--color-neutral-medium);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .breadcrumbs a {
  color: var(--color-secondary);
  text-decoration: none;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .post-hero {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-xxl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .post-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 78, 137, 0.9), rgba(0, 78, 137, 0.7));
  z-index: 1;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .post-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .post-hero h1 {
  color: var(--color-white);
  font-size: var(--fs-xxl);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .post-hero .lead {
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: var(--lh-loose);
  max-width: 800px;
  margin: 0 auto;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .content-section {
  padding: var(--space-xxl) 0;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .section-light {
  background-color: var(--color-white);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .section-medium {
  background-color: var(--color-neutral-medium);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .content-section h2 {
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .content-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background-color: var(--color-primary);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .section-content {
  padding-right: var(--space-md);
}

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

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .budget-categories {
  background-color: var(--color-neutral-medium);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .budget-categories h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .budget-categories ul {
  list-style-type: none;
  padding-left: var(--space-md);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .budget-categories li {
  margin-bottom: var(--space-xs);
  position: relative;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .budget-categories li::before {
  content: "";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: -15px;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .tool-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .tool-card h4 {
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .tool-card ul {
  list-style-type: none;
  padding-left: 0;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .tool-card li {
  margin-bottom: var(--space-xs);
  font-size: var(--fs-xxs);
  line-height: var(--lh-normal);
  padding-left: var(--space-sm);
  position: relative;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .tool-card li::before {
  content: "";
  color: var(--color-primary);
  position: absolute;
  left: 0;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .image-container {
  margin: var(--space-lg) 0;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .centered-image {
  max-width: 400px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .text-center {
  text-align: center;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .savings-strategies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .strategy-card {
  background-color: var(--color-neutral-medium);
  border-radius: var(--border-radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border-left: 4px solid var(--color-accent);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .strategy-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .strategy-card h4 {
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .badge-savings {
  font-size: var(--fs-xxs);
  padding: var(--space-xxs) var(--space-xs);
  border-radius: var(--border-radius-pill);
  background-color: rgba(56, 176, 0, 0.1);
  color: var(--color-success);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .strategy-card ul {
  list-style-type: none;
  padding-left: 0;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .strategy-card li {
  margin-bottom: var(--space-xs);
  font-size: var(--fs-xxs);
  line-height: var(--lh-normal);
  padding-left: var(--space-md);
  position: relative;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .strategy-card li::before {
  content: "";
  color: var(--color-success);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .conclusion-box {
  background-color: var(--color-neutral-medium);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  text-align: center;
  border-top: 5px solid var(--color-accent);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .conclusion-box h3 {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .conclusion-box p {
  margin-bottom: var(--space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .related-posts-section {
  background-color: var(--color-secondary);
  padding: var(--space-xxl) 0;
  color: var(--color-white);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .related-posts-section h2 {
  color: var(--color-white);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .related-posts-section h2::after {
  background-color: var(--color-primary);
  left: 50%;
  transform: translateX(-50%);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .related-post-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .related-post-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .card-content {
  padding: var(--space-md);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .related-post-card h3 {
  color: var(--color-secondary);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .related-post-card p {
  color: var(--color-neutral-dark);
  font-size: var(--fs-xxs);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .related-post-card .btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: var(--border-width) solid var(--color-primary);
  padding: var(--space-xxs) var(--space-sm);
  border-radius: var(--border-radius-md);
  font-size: var(--fs-xxs);
  transition: all var(--transition-normal);
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .related-post-card .btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .rounded-image {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .rounded-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1023px) {
  .post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .section-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .section-content {
    padding-right: 0;
  }
  
  .post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .tools-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .related-posts-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 767px) {
  .post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .post-hero {
    padding: var(--space-xl) 0;
  }
  
  .post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .content-section {
    padding: var(--space-xl) 0;
  }
  
  .post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .tools-grid,
  .post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .savings-strategies {
    grid-template-columns: 1fr;
  }
  
  .post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-huishoudbudget-maken-nederlandse-aanpak-financiele-controle .conclusion-box {
    padding: var(--space-md);
  }
}

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

.privacy-page__header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.privacy-page h1 {
  color: var(--color-secondary);
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}

.privacy-page__last-updated {
  font-size: var(--fs-xxs);
  color: var(--color-neutral-dark);
  font-style: italic;
}

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

.privacy-page h2 {
  color: var(--color-secondary);
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
  border-bottom: var(--border-width) solid var(--color-neutral-medium);
  padding-bottom: var(--space-xs);
}

.privacy-page h3 {
  color: var(--color-secondary);
  font-size: var(--fs-sm);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

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

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

.privacy-page__list li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
}

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

.privacy-page__contact-info {
  background-color: var(--color-neutral-medium);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  margin-top: var(--space-md);
}

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

@media (max-width: 767px) {
  .privacy-page__section {
    padding: var(--space-md);
  }
  
  .privacy-page h1 {
    font-size: var(--fs-lg);
  }
  
  .privacy-page h2 {
    font-size: var(--fs-sm);
  }
}

.cookie-page {
  font-family: var(--font-secondary);
  color: var(--color-neutral-dark);
  background-color: var(--color-white);
  padding: var(--space-xl) 0;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.cookie-page__header {
  margin-bottom: var(--space-xl);
  border-bottom: var(--border-width) solid var(--color-neutral-medium);
  padding-bottom: var(--space-md);
}

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

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

.cookie-page__section h2 {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.cookie-page__subsection {
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
}

.cookie-page__subsection h3 {
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.cookie-page__content p {
  font-size: var(--fs-xs);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-sm);
}

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

.cookie-page__list li {
  margin-bottom: var(--space-xs);
  line-height: var(--lh-normal);
}

.cookie-page__footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: var(--border-width) solid var(--color-neutral-medium);
  font-size: var(--fs-xxs);
  color: var(--color-neutral-dark);
}

@media (max-width: 767px) {
  .cookie-page {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .cookie-page__header h1 {
    font-size: var(--fs-lg);
  }
  
  .cookie-page__section h2 {
    font-size: var(--fs-sm);
  }
  
  .cookie-page__subsection h3 {
    font-size: var(--fs-xs);
  }
}

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

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

.thank-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.thank-page__icon {
  color: var(--color-success);
  margin-bottom: var(--space-md);
  width: 64px;
  height: 64px;
}

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

.thank-page__subtitle {
  color: var(--color-accent);
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.thank-page__card {
  width: 100%;
  margin-bottom: var(--space-lg);
  background-color: var(--color-white);
}

.thank-page__message {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.thank-page__details {
  font-size: var(--fs-xs);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.thank-page__badge-container {
  margin-bottom: var(--space-md);
}

.thank-page__actions {
  margin-bottom: var(--space-lg);
}

.thank-page__button {
  min-width: 220px;
}

.thank-page__note {
  color: var(--color-neutral-dark);
  font-size: var(--fs-xxs);
  max-width: 600px;
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-lg) 0;
  }
  
  .thank-page__title {
    font-size: var(--fs-lg);
  }
  
  .thank-page__subtitle {
    font-size: var(--fs-sm);
  }
  
  .thank-page__message,
  .thank-page__details {
    font-size: var(--fs-xs);
  }
  
  .thank-page__button {
    min-width: auto;
    width: 100%;
  }
}

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

  .error-404__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .error-404__code {
    font-family: var(--font-primary);
    font-size: calc(var(--fs-xxl) * 2);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-md);
    position: relative;
    text-shadow: 2px 2px 0px var(--color-neutral-medium);
  }

  .error-404__code:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    margin: var(--space-sm) auto 0;
    border-radius: var(--border-radius-pill);
  }

  .error-404__title {
    font-size: var(--fs-lg);
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
  }

  .error-404__message {
    font-family: var(--font-secondary);
    font-size: var(--fs-sm);
    color: var(--color-neutral-dark);
    line-height: var(--lh-loose);
    margin-bottom: var(--space-lg);
    max-width: 90%;
  }

  .error-404__button {
    margin-bottom: var(--space-lg);
    padding: var(--space-sm) var(--space-lg);
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
  }

  .error-404__button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
  }

  .error-404__icon {
    margin-right: var(--space-xs);
  }

  .error-404__help-text {
    font-size: var(--fs-xxs);
    color: var(--color-accent);
    font-weight: 500;
    font-family: var(--font-primary);
  }

  
  @media (max-width: 767px) {
    .error-404 {
      padding: var(--space-xl) var(--space-sm);
    }

    .error-404__code {
      font-size: calc(var(--fs-xxl) * 1.5);
    }

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

    .error-404__message {
      font-size: var(--fs-xs);
      margin-bottom: var(--space-md);
    }
  }
