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

:root {
  /* Color Scheme - Modern Dutch-inspired palette */
  --color-primary: #2D5F9A; /* Dutch blue - primary brand color */
  --color-secondary: #F3A712; /* Warm orange - represents growth */
  --color-accent: #1B9AAA; /* Teal - represents stability */
  --color-success: #52A675; /* Green - positive financial indicators */
  --color-warning: #E15554; /* Red - alerts and warnings */
  --color-background: #F7F9FC; /* Light blue-gray - clean background */
  --color-card-bg: #FFFFFF; /* White for card backgrounds */
  --color-text-primary: #1A2A3A; /* Dark blue-gray - main text */
  --color-text-secondary: #5B6B7C; /* Medium gray - secondary text */
  --color-text-light: #8696A6; /* Light gray - tertiary text */
  --color-border: #E1E7EF; /* Light border color */
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Text Sizes */
  --text-xs: 0.75rem;   /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-md: 1.125rem;  /* 18px */
  --text-lg: 1.25rem;   /* 20px */
  --text-xl: 1.5rem;    /* 24px */
  --text-2xl: 1.75rem;  /* 28px */
  --text-3xl: 2rem;     /* 32px */
  --text-4xl: 2.5rem;   /* 40px */
  --text-5xl: 3rem;     /* 48px */
  
  /* Spacing */
  --space-xs: 0.25rem;  /* 4px */
  --space-sm: 0.5rem;   /* 8px */
  --space-md: 1rem;     /* 16px */
  --space-lg: 1.5rem;   /* 24px */
  --space-xl: 2rem;     /* 32px */
  --space-2xl: 3rem;    /* 48px */
  --space-3xl: 4rem;    /* 64px */
  --space-4xl: 5rem;    /* 80px */
  --space-5xl: 7.5rem;  /* 120px */
  
  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  --border-radius-full: 9999px;
  --border-width-thin: 1px;
  --border-width-medium: 2px;
  --border-width-thick: 3px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 4px 8px -2px rgba(16, 24, 40, 0.1), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
  --shadow-xl: 0 20px 24px -4px rgba(16, 24, 40, 0.08), 0 8px 8px -4px rgba(16, 24, 40, 0.03);
  --shadow-inner: inset 0 2px 4px 0 rgba(16, 24, 40, 0.06);
  
  /* Icon sizes */
  --icon-xs: 1rem;     /* 16px */
  --icon-sm: 1.25rem;  /* 20px */
  --icon-md: 1.5rem;   /* 24px */
  --icon-lg: 2rem;     /* 32px */
  --icon-xl: 2.5rem;   /* 40px */
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
}

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

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

body {
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

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

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

h1 {
  font-size: var(--text-4xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--text-3xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-md);
  font-weight: var(--font-weight-semibold);
}

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

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

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

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

.text-medium {
  font-weight: var(--font-weight-medium);
}

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

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

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

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

/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

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

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

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

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

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

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

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

.btn-text {
  background-color: transparent;
  color: var(--color-primary);
  padding: var(--space-xs) var(--space-sm);
}

.btn-text:hover {
  background-color: rgba(45, 95, 154, 0.1);
  text-decoration: none;
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-lg);
}

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

.btn i {
  margin-right: var(--space-sm);
}

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

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

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

.icon-xs { font-size: var(--icon-xs); }
.icon-sm { font-size: var(--icon-sm); }
.icon-md { font-size: var(--icon-md); }
.icon-lg { font-size: var(--icon-lg); }
.icon-xl { font-size: var(--icon-xl); }

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

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

/* Form elements */
input, select, textarea {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  padding: var(--space-sm) var(--space-md);
  border: var(--border-width-thin) solid var(--color-border);
  border-radius: var(--border-radius-md);
  background-color: white;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45, 95, 154, 0.15);
}

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl); }
  h4 { font-size: var(--text-lg); }
  h5 { font-size: var(--text-md); }
  h6 { font-size: var(--text-base); }
  
  .card {
    padding: var(--space-lg);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
}

@media (min-width: 1024px) {
  body {
    font-size: var(--text-md);
  }
  
  h1 { font-size: var(--text-5xl); }
}
.header {
  background-color: var(--color-card-bg);
  border-bottom: var(--border-width-thin) solid var(--color-border);
  padding: var(--space-md) 0;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo-wrapper {
  display: flex;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text-primary);
  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;
  width: 36px;
  height: 36px;
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--border-radius-full);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-xl);
  margin-right: var(--space-sm);
}

.header__logo-text {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-xl);
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

.header__nav {
  display: none;
}

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

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

.header__nav-link {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-normal);
  position: relative;
}

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

.header__nav-link:hover {
  color: var(--color-text-primary);
  text-decoration: none;
}

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

.header__actions {
  display: none;
}

.header__action-link {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
  color: var(--color-accent);
  text-decoration: none;
  margin-right: var(--space-lg);
  transition: all var(--transition-normal);
}

.header__action-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.header__cta {
  padding: var(--space-xs) var(--space-lg);
  font-size: var(--text-sm);
  border-radius: var(--border-radius-full);
  font-weight: var(--font-weight-medium);
}

.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-card-bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
}

.header__mobile-menu.active {
  transform: translateX(0);
}

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

.header__mobile-logo {
  display: flex;
  align-items: center;
}

.header__mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  font-size: var(--text-2xl);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-full);
  transition: all var(--transition-normal);
}

.header__mobile-close:hover {
  background-color: rgba(45, 95, 154, 0.1);
  color: var(--color-text-primary);
}

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

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

.header__mobile-nav-link {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  text-decoration: none;
  display: block;
  transition: color var(--transition-normal);
}

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

.header__mobile-footer {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
}

.header__mobile-cta {
  width: 100%;
  margin-bottom: var(--space-lg);
}

.header__mobile-links {
  display: flex;
  justify-content: center;
}

.header__mobile-legal {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  text-decoration: none;
  margin: 0 var(--space-md);
  transition: color var(--transition-normal);
}

.header__mobile-legal:hover {
  color: var(--color-text-primary);
  text-decoration: none;
}

/* Dutch-inspired decorative element */
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--color-primary) 0%,
    var(--color-primary) 33.33%,
    var(--color-card-bg) 33.33%,
    var(--color-card-bg) 66.66%,
    var(--color-secondary) 66.66%,
    var(--color-secondary) 100%
  );
}

/* Responsive styles */
@media (min-width: 768px) {
  .header__container {
    padding: 0 var(--space-xl);
  }
  
  .header__nav {
    display: flex;
  }
  
  .header__actions {
    display: flex;
    align-items: center;
  }
  
  .header__mobile-toggle {
    display: none;
  }
}

@media (max-width: 992px) {
  .header__nav-item {
    margin: 0 var(--space-sm);
  }
  
  .header__nav-link {
    font-size: var(--text-sm);
  }
  
  .header__action-link {
    margin-right: var(--space-md);
    font-size: var(--text-sm);
  }
}

@media (min-width: 1200px) {
  .header__container {
    padding: 0 var(--space-2xl);
  }
  
  .header__nav-item {
    margin: 0 var(--space-lg);
  }
  
  .header__logo-text {
    font-size: var(--text-2xl);
  }
  
  .header__logo-icon {
    width: 42px;
    height: 42px;
    font-size: var(--text-2xl);
  }
}

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

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

.main .hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.main .hero-content {
  position: relative;
  z-index: 2;
}

.main .hero h1 {
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
  position: relative;
}

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

.main .hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

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

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

.main .hero-visual img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-normal);
}

.main .hero-visual img:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

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

.main .hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  opacity: 0.1;
  top: 0;
  right: -50px;
  transform: rotate(-15deg);
}

.main .hero-shape-2 {
  width: 200px;
  height: 200px;
  background-color: var(--color-secondary);
  opacity: 0.1;
  bottom: 50px;
  left: 0;
  transform: rotate(20deg);
}

.main .hero-card {
  position: absolute;
  bottom: 80px;
  left: -30px;
  background-color: var(--color-card-bg);
  padding: var(--space-md);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.main .hero-card:hover {
  transform: rotate(0deg) translateY(-5px);
}

.main .hero-card-2 {
  position: absolute;
  top: 60px;
  right: -20px;
  background-color: var(--color-card-bg);
  padding: var(--space-md);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  transform: rotate(5deg);
  transition: transform var(--transition-normal);
}

.main .hero-card-2:hover {
  transform: rotate(0deg) translateY(-5px);
}

.main .hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main .hero-stat-number {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-2xl);
  color: var(--color-primary);
}

.main .hero-stat-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 150px;
}

.main .hero-decoration {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.main .hero-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: var(--border-radius-full);
}

.main .hero-line {
  width: 60px;
  height: 2px;
  background-color: var(--color-primary);
  opacity: 0.5;
}

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

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

.main .section-description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

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

.main .post-card {
  background-color: var(--color-card-bg);
  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(-8px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

.main .post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.main .post-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

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

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

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

.main .benefits::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(150px, -150px);
}

.main .benefits::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: var(--color-secondary);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(-100px, 100px);
}

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

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

.main .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.main .benefit-card:hover::before {
  opacity: 1;
}

.main .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(45, 95, 154, 0.1);
  border-radius: var(--border-radius-full);
  margin-bottom: var(--space-lg);
}

.main .benefit-icon i {
  font-size: var(--icon-lg);
  color: var(--color-primary);
}

.main .benefit-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.main .benefit-card p {
  color: var(--color-text-secondary);
}

/* How It Works Section */
.main .how-it-works {
  padding: var(--space-3xl) 0;
  background-color: var(--color-card-bg);
  position: relative;
}

.main .process-container {
  position: relative;
  padding-left: 50px;
}

.main .process-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background-color: var(--color-primary);
  opacity: 0.3;
}

.main .process-step {
  position: relative;
  margin-bottom: var(--space-2xl);
}

.main .process-step:last-child {
  margin-bottom: 0;
}

.main .process-number {
  position: absolute;
  top: 0;
  left: -50px;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-lg);
  z-index: 2;
}

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

.main .process-content:hover {
  transform: translateX(10px);
}

.main .process-content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.main .process-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.main .process-content img {
  width: 100%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

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

.main .testimonials::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--color-accent);
  opacity: 0.05;
  border-radius: 50%;
}

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

.main .testimonial-card {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.main .testimonial-content {
  flex-grow: 1;
  margin-bottom: var(--space-lg);
  position: relative;
}

.main .testimonial-quote {
  font-size: var(--text-3xl);
  color: var(--color-primary);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: -5px;
}

.main .testimonial-content p {
  font-style: italic;
  color: var(--color-text-secondary);
  position: relative;
  z-index: 1;
}

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

.main .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
}

.main .testimonial-info h4 {
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.main .testimonial-info p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin: 0;
}

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

.main .contact::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.main .contact::after {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

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

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

.main .contact-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
}

.main .contact-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

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

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

.main .contact-feature p {
  margin: 0;
  font-size: var(--text-base);
}

.main .contact-form-container {
  background-color: var(--color-card-bg);
  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 {
  margin-bottom: var(--space-md);
}

.main .form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

.main .form-group input,
.main .form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: var(--border-width-thin) solid var(--color-border);
  border-radius: var(--border-radius-md);
  font-family: var(--font-secondary);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.main .form-group input:focus,
.main .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45, 95, 154, 0.15);
}

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

.main .form-checkbox input {
  width: auto;
}

.main .form-checkbox label {
  margin: 0;
}

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

.main .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.main .faq-item {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-normal);
}

.main .faq-item:hover {
  box-shadow: var(--shadow-lg);
}

.main .faq-question {
  padding: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: var(--border-width-thin) solid var(--color-border);
}

.main .faq-question h3 {
  font-size: var(--text-md);
  margin: 0;
  color: var(--color-text-primary);
}

.main .faq-toggle {
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--border-radius-full);
  transition: background-color var(--transition-normal);
}

.main .faq-toggle:hover {
  background-color: rgba(45, 95, 154, 0.1);
}

.main .faq-toggle .fa-minus {
  display: none;
}

.main .faq-item.active .faq-toggle .fa-plus {
  display: none;
}

.main .faq-item.active .faq-toggle .fa-minus {
  display: block;
}

.main .faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.main .faq-item.active .faq-answer {
  padding: var(--space-lg);
  max-height: 500px;
}

/* Cookie Banner */
.main .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-card-bg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  padding: var(--space-lg);
  display: none;
}

.main .cookie-banner.visible {
  display: block;
}

.main .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.main .cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

/* Responsive Styles */
@media (max-width: 1023px) {
  .main .posts-grid,
  .main .benefits-grid,
  .main .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .main .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .main .hero-container {
    grid-template-columns: 1fr;
  }
  
  .main .hero-visual {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .main .posts-grid,
  .main .benefits-grid,
  .main .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .main .hero-cta {
    flex-direction: column;
  }
  
  .main .hero-card,
  .main .hero-card-2 {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: var(--space-md);
    transform: none;
  }
  
  .main .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .main .contact-features {
    grid-template-columns: 1fr;
  }
}

.footer {
  position: relative;
  background-color: var(--color-card-bg);
  padding: var(--space-2xl) 0 var(--space-xl);
  margin-top: var(--space-3xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-family: var(--font-secondary);
}

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

.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__title {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  position: relative;
}

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

.footer__tagline {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
}

.footer__badge {
  display: flex;
  align-items: center;
  background-color: rgba(45, 95, 154, 0.1);
  border-radius: var(--border-radius-md);
  padding: var(--space-sm);
  width: fit-content;
  margin-top: var(--space-sm);
}

.footer__badge-icon {
  background-color: var(--color-primary);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-sm);
}

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

.footer__badge-text span:first-child {
  font-size: var(--text-sm);
  color: var(--color-primary);
}

.footer__badge-text span:last-child {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
}

.footer__nav-title {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-md);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  position: relative;
}

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

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

.footer__nav-link {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  text-decoration: none;
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
  position: relative;
}

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

.footer__nav-link::before {
  content: '›';
  position: absolute;
  left: -12px;
  opacity: 0;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

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

.footer__newsletter-text {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
}

.footer__input-group {
  display: flex;
  margin-bottom: var(--space-sm);
}

.footer__input {
  flex: 1;
  border: var(--border-width-thin) solid var(--color-border);
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  transition: border-color var(--transition-normal);
}

.footer__input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.footer__btn {
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

.footer__btn:hover {
  background-color: #234b7a;
}

.footer__form-disclaimer {
  color: var(--color-text-light);
  font-size: var(--text-xs);
  margin: 0;
}

.footer__divider {
  height: 1px;
  background-color: var(--color-border);
  margin: var(--space-lg) 0;
}

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

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

.footer__legal-link {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer__legal-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.footer__separator {
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

.footer__copyright {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  text-align: center;
}

/* Decorative elements */
.footer__decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.footer__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-secondary) 100%);
}

.footer__dots {
  position: absolute;
  top: 30px;
  right: 5%;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(var(--color-border) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.4;
}

/* Media Queries */
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer__legal {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
  
  .footer__dots {
    right: 10%;
    width: 240px;
    height: 240px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer__brand,
.footer__nav,
.footer__resources,
.footer__newsletter {
  animation: fadeIn 0.5s ease-out forwards;
}

.footer__brand {
  animation-delay: 0.1s;
}

.footer__nav {
  animation-delay: 0.2s;
}

.footer__resources {
  animation-delay: 0.3s;
}

.footer__newsletter {
  animation-delay: 0.4s;
}

.privacy-page {
  padding: var(--space-xl) 0;
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
}

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

.privacy-page__updated {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-top: var(--space-sm);
}

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

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

.privacy-page__section h2 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.privacy-page__section p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

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

.privacy-page__list li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.privacy-page__contact {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  border-left: var(--border-width-thick) solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-lg) 0;
  }
  
  .privacy-page__header {
    margin-bottom: var(--space-xl);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .privacy-page__section h2 {
    font-size: var(--text-xl);
  }
  
  .privacy-page__list {
    margin-left: var(--space-lg);
  }
  
  .privacy-page__contact {
    padding: var(--space-md);
  }
}

.terms-page {
  padding: var(--space-xl) 0;
  background-color: var(--color-background);
  color: var(--color-text-primary);
}

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

.terms-page__header h1 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.terms-page__updated {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-medium);
}

.terms-page__content {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

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

.terms-page__section:last-child {
  margin-bottom: 0;
}

.terms-page__section h2 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  border-bottom: var(--border-width-thin) solid var(--color-border);
  padding-bottom: var(--space-sm);
}

.terms-page__section p {
  margin-bottom: var(--space-md);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

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

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

@media (max-width: 767px) {
  .terms-page {
    padding: var(--space-lg) 0;
  }
  
  .terms-page__content {
    padding: var(--space-lg);
  }
  
  .terms-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .terms-page__section h2 {
    font-size: var(--text-lg);
  }
}

/* Cookie Policy Page Styles */
.cookie-page {
  background-color: var(--color-background);
  padding: var(--space-2xl) 0;
  font-family: var(--font-secondary);
}

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

.cookie-page__header h1 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
}

.cookie-page__content {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
}

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

.cookie-page__section:last-child {
  margin-bottom: 0;
}

.cookie-page__section h2 {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  border-bottom: var(--border-width-thin) solid var(--color-border);
  padding-bottom: var(--space-sm);
}

.cookie-page__section h3 {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.cookie-page__section p {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

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

.cookie-page__list-item {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .cookie-page {
    padding: var(--space-xl) 0;
  }
  
  .cookie-page__content {
    padding: var(--space-lg);
  }
  
  .cookie-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .cookie-page__section h2 {
    font-size: var(--text-lg);
  }
  
  .cookie-page__section h3 {
    font-size: var(--text-md);
  }
  
  .cookie-page__list {
    padding-left: var(--space-lg);
  }
}

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

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

.thank-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-2xl);
}

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

.thank-page__title {
  color: var(--color-success);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
}

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

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

.thank-page__message .text-large {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-medium);
}

.thank-page__highlight {
  background-color: rgba(82, 166, 117, 0.1);
  color: var(--color-success);
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  font-weight: var(--font-weight-medium);
  margin: var(--space-lg) 0;
}

.thank-page__next-steps {
  width: 100%;
  text-align: left;
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background-color: var(--color-background);
  border-radius: var(--border-radius-md);
}

.thank-page__next-steps h2 {
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.thank-page__steps-list {
  list-style-type: none;
  padding-left: var(--space-md);
}

.thank-page__steps-list li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.thank-page__steps-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}

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

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

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__content {
    padding: var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--text-3xl);
  }
  
  .thank-page__next-steps {
    padding: var(--space-md);
  }
}

/* Category Page Styles */
.category-page {
  background-color: var(--color-background);
  color: var(--color-text-primary);
}

/* Hero Section */
.category-page__hero {
  background-color: var(--color-primary);
  padding: var(--space-3xl) 0;
  margin-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

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

.category-page__hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  font-weight: var(--font-weight-medium);
}

/* Posts Section */
.category-page__posts {
  padding: var(--space-2xl) 0;
}

.category-page__posts h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
  position: relative;
}

.category-page__posts h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
}

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

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

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

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

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

.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
}

.post-card h3 {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.post-card p {
  padding: 0 var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  flex-grow: 1;
}

.post-card a {
  margin: var(--space-md);
  align-self: flex-start;
}

/* Financial Tips Section */
.category-page__financial-tips {
  background-color: var(--color-card-bg);
  padding: var(--space-3xl) 0;
  margin: var(--space-3xl) 0;
}

.category-page__financial-tips h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
  position: relative;
}

.category-page__financial-tips h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
}

.category-page__tips-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-lg);
}

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

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

.category-page__tip-card {
  background-color: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.category-page__tip-card .icon {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.category-page__tip-card h4 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.category-page__tip-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Planning Steps Section */
.category-page__planning-steps {
  padding: var(--space-3xl) 0;
}

.category-page__planning-steps h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
  position: relative;
}

.category-page__planning-steps h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
}

.category-page__steps-content {
  background-color: var(--color-card-bg);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.category-page__steps-list {
  list-style-position: inside;
  counter-reset: step-counter;
  padding: 0;
}

.category-page__step-item {
  position: relative;
  padding-left: 45px;
  margin-bottom: var(--space-lg);
  counter-increment: step-counter;
}

.category-page__step-item:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
}

.category-page__step-item h4 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.category-page__step-item p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Icon placeholders - These would be replaced with actual icons */
.icon-budget:before { content: "💰"; }
.icon-savings:before { content: "💸"; }
.icon-tax:before { content: "📊"; }
.icon-insurance:before { content: "🛡️"; }

/* Add hover effects for better interactivity */
.category-page__tip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .category-page__hero {
    padding: var(--space-xl) 0;
  }
  
  .category-page__posts,
  .category-page__financial-tips,
  .category-page__planning-steps {
    padding: var(--space-xl) 0;
  }
}

/* Base Styles for Post Page */
.post-gezinsbudget-optimaliseren-tips {
  color: var(--color-text-primary);
}

/* Breadcrumbs */
.post-gezinsbudget-optimaliseren-tips .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  border-bottom: var(--border-width-thin) solid var(--color-border);
  margin-bottom: var(--space-xl);
}

.post-gezinsbudget-optimaliseren-tips .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
}

.post-gezinsbudget-optimaliseren-tips .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Hero Section */
.post-gezinsbudget-optimaliseren-tips .post-hero {
  padding: var(--space-3xl) 0;
  background-color: var(--color-primary);
  color: white;
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.post-gezinsbudget-optimaliseren-tips .post-hero h1 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-gezinsbudget-optimaliseren-tips .post-hero .lead {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-light);
  color: white;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Content Sections */
.post-gezinsbudget-optimaliseren-tips .content-section {
  padding: var(--space-4xl) 0;
  margin-bottom: var(--space-xl);
}

.post-gezinsbudget-optimaliseren-tips .section-light {
  background-color: var(--color-card-bg);
}

.post-gezinsbudget-optimaliseren-tips .section-accent {
  background-color: var(--color-background);
  position: relative;
}

.post-gezinsbudget-optimaliseren-tips .section-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: center;
}

.post-gezinsbudget-optimaliseren-tips .text-content {
  flex: 1;
  min-width: 300px;
}

.post-gezinsbudget-optimaliseren-tips .image-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.post-gezinsbudget-optimaliseren-tips .content-image {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-gezinsbudget-optimaliseren-tips .centered-image {
  display: block;
  margin: var(--space-xl) auto 0;
  max-width: 600px;
}

/* Budget Categories */
.post-gezinsbudget-optimaliseren-tips .budget-categories {
  list-style: none;
  padding-left: 0;
  margin: var(--space-lg) 0;
}

.post-gezinsbudget-optimaliseren-tips .budget-categories li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.post-gezinsbudget-optimaliseren-tips .budget-categories li::before {
  content: "✓";
  color: var(--color-success);
  position: absolute;
  left: 0;
  font-weight: var(--font-weight-bold);
}

/* Budget Steps */
.post-gezinsbudget-optimaliseren-tips .steps-container {
  margin: var(--space-xl) 0;
}

.post-gezinsbudget-optimaliseren-tips .budget-step {
  display: flex;
  margin-bottom: var(--space-xl);
  gap: var(--space-lg);
}

.post-gezinsbudget-optimaliseren-tips .step-number {
  background-color: var(--color-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.post-gezinsbudget-optimaliseren-tips .step-content {
  flex: 1;
}

.post-gezinsbudget-optimaliseren-tips .step-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
  font-size: var(--text-lg);
}

/* Budget Tools */
.post-gezinsbudget-optimaliseren-tips .budget-tools {
  background-color: var(--color-card-bg);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-xl);
}

.post-gezinsbudget-optimaliseren-tips .budget-tools h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-gezinsbudget-optimaliseren-tips .budget-tools ul {
  list-style: none;
  padding-left: 0;
}

.post-gezinsbudget-optimaliseren-tips .budget-tools li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.post-gezinsbudget-optimaliseren-tips .budget-tools li::before {
  content: "→";
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  font-weight: var(--font-weight-bold);
}

/* Savings Categories */
.post-gezinsbudget-optimaliseren-tips .savings-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.post-gezinsbudget-optimaliseren-tips .savings-category {
  background-color: var(--color-card-bg);
  padding: var(--space-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-gezinsbudget-optimaliseren-tips .savings-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-gezinsbudget-optimaliseren-tips .savings-category h3 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.post-gezinsbudget-optimaliseren-tips .savings-category ul {
  list-style: none;
  padding-left: 0;
}

.post-gezinsbudget-optimaliseren-tips .savings-category li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.post-gezinsbudget-optimaliseren-tips .savings-category li::before {
  content: "•";
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  font-weight: var(--font-weight-bold);
}

/* Conclusion */
.post-gezinsbudget-optimaliseren-tips .conclusion {
  background-color: var(--color-card-bg);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border-left: var(--border-width-thick) solid var(--color-primary);
}

.post-gezinsbudget-optimaliseren-tips .conclusion h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-gezinsbudget-optimaliseren-tips .cta-container {
  margin-top: var(--space-xl);
  text-align: center;
}

/* Related Posts Section */
.post-gezinsbudget-optimaliseren-tips .related-posts-section {
  padding: var(--space-4xl) 0;
  background-color: var(--color-background);
}

.post-gezinsbudget-optimaliseren-tips .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.post-gezinsbudget-optimaliseren-tips .related-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.post-gezinsbudget-optimaliseren-tips .related-post-card {
  padding: var(--space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-gezinsbudget-optimaliseren-tips .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.post-gezinsbudget-optimaliseren-tips .related-post-card p {
  flex-grow: 1;
  margin-bottom: var(--space-lg);
}

.post-gezinsbudget-optimaliseren-tips .related-post-card .btn {
  align-self: flex-start;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .post-gezinsbudget-optimaliseren-tips .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-gezinsbudget-optimaliseren-tips .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-gezinsbudget-optimaliseren-tips .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-gezinsbudget-optimaliseren-tips .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-gezinsbudget-optimaliseren-tips .section-content {
    flex-direction: column;
  }
  
  .post-gezinsbudget-optimaliseren-tips .image-content {
    order: -1;
  }
  
  .post-gezinsbudget-optimaliseren-tips .related-posts {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .post-gezinsbudget-optimaliseren-tips .related-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Base Styles for Post Page */
.post-belastingvoordelen-spaarders-nederland {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
}

/* Breadcrumbs Navigation */
.post-belastingvoordelen-spaarders-nederland .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  border-bottom: var(--border-width-thin) solid var(--color-border);
}

.post-belastingvoordelen-spaarders-nederland .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-belastingvoordelen-spaarders-nederland .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Hero Section */
.post-belastingvoordelen-spaarders-nederland .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-belastingvoordelen-spaarders-nederland .post-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.post-belastingvoordelen-spaarders-nederland .post-hero h1 {
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-lg);
  color: white;
  line-height: 1.2;
}

.post-belastingvoordelen-spaarders-nederland .post-hero .lead {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-light);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
}

/* Content Sections - General */
.post-belastingvoordelen-spaarders-nederland .content-section {
  padding: var(--space-5xl) 0;
}

.post-belastingvoordelen-spaarders-nederland .content-section h2 {
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
  font-weight: var(--font-weight-bold);
}

.post-belastingvoordelen-spaarders-nederland .content-section h3 {
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  margin: var(--space-lg) 0 var(--space-md);
  font-weight: var(--font-weight-semibold);
}

.post-belastingvoordelen-spaarders-nederland .content-section p {
  margin-bottom: var(--space-lg);
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.post-belastingvoordelen-spaarders-nederland .image-container {
  margin: var(--space-xl) 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-belastingvoordelen-spaarders-nederland .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.post-belastingvoordelen-spaarders-nederland .image-container:hover img {
  transform: scale(1.02);
}

/* Box 3 Section - First Content Section */
.post-belastingvoordelen-spaarders-nederland .box3-section {
  background-color: var(--color-card-bg);
}

.post-belastingvoordelen-spaarders-nederland .box3-section .section-content {
  display: flex;
  flex-direction: column;
}

.post-belastingvoordelen-spaarders-nederland .box3-section .text-content {
  flex: 1;
}

@media (min-width: 768px) {
  .post-belastingvoordelen-spaarders-nederland .box3-section .section-content {
    flex-direction: row;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .post-belastingvoordelen-spaarders-nederland .box3-section .text-content {
    flex: 0 0 60%;
  }
  
  .post-belastingvoordelen-spaarders-nederland .box3-section .image-container {
    flex: 0 0 35%;
    margin: 0;
  }
}

/* Pension Section - Second Content Section */
.post-belastingvoordelen-spaarders-nederland .pension-section {
  background-color: var(--color-background);
  position: relative;
}

.post-belastingvoordelen-spaarders-nederland .benefits-container {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
  border-left: var(--border-width-thick) solid var(--color-primary);
}

.post-belastingvoordelen-spaarders-nederland .benefits-list {
  list-style-type: none;
  padding: 0;
  margin: var(--space-md) 0 0;
}

.post-belastingvoordelen-spaarders-nederland .benefits-list li {
  padding: var(--space-sm) 0;
  border-bottom: var(--border-width-thin) solid var(--color-border);
  display: flex;
  align-items: center;
}

.post-belastingvoordelen-spaarders-nederland .benefits-list li:last-child {
  border-bottom: none;
}

.post-belastingvoordelen-spaarders-nederland .benefits-list li:before {
  content: "✓";
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
  margin-right: var(--space-md);
  display: inline-block;
}

.post-belastingvoordelen-spaarders-nederland .benefit-highlight {
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
}

/* Savings Strategies Section - Third Content Section */
.post-belastingvoordelen-spaarders-nederland .savings-strategies-section {
  background-color: var(--color-card-bg);
}

.post-belastingvoordelen-spaarders-nederland .strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-belastingvoordelen-spaarders-nederland .strategy-card {
  background-color: var(--color-background);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-belastingvoordelen-spaarders-nederland .strategy-card h3 {
  color: var(--color-primary);
  margin-top: 0;
  border-bottom: var(--border-width-thin) solid var(--color-border);
  padding-bottom: var(--space-sm);
}

.post-belastingvoordelen-spaarders-nederland .strategy-card ul {
  padding-left: var(--space-lg);
  margin-top: var(--space-md);
}

.post-belastingvoordelen-spaarders-nederland .strategy-card li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.post-belastingvoordelen-spaarders-nederland .conclusion {
  font-size: var(--text-md);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  background-color: rgba(45, 95, 154, 0.05);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  border-left: var(--border-width-thick) solid var(--color-accent);
}

/* Related Posts Section */
.post-belastingvoordelen-spaarders-nederland .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-4xl) 0;
  border-top: var(--border-width-thin) solid var(--color-border);
}

.post-belastingvoordelen-spaarders-nederland .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-text-primary);
}

.post-belastingvoordelen-spaarders-nederland .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.post-belastingvoordelen-spaarders-nederland .related-post-card {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-belastingvoordelen-spaarders-nederland .related-post-card a {
  display: block;
  padding: var(--space-xl);
  text-decoration: none;
  color: var(--color-text-primary);
}

.post-belastingvoordelen-spaarders-nederland .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  transition: color var(--transition-normal);
}

.post-belastingvoordelen-spaarders-nederland .related-post-card:hover h3 {
  color: var(--color-accent);
}

.post-belastingvoordelen-spaarders-nederland .related-post-card p {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
}

.post-belastingvoordelen-spaarders-nederland .read-more {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-sm);
  display: inline-block;
  transition: transform var(--transition-normal);
}

.post-belastingvoordelen-spaarders-nederland .related-post-card:hover .read-more {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .post-belastingvoordelen-spaarders-nederland .strategy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .post-belastingvoordelen-spaarders-nederland .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .post-belastingvoordelen-spaarders-nederland .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-belastingvoordelen-spaarders-nederland .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-belastingvoordelen-spaarders-nederland .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-belastingvoordelen-spaarders-nederland .content-section {
    padding: var(--space-3xl) 0;
  }
  
  .post-belastingvoordelen-spaarders-nederland .content-section h2 {
    font-size: var(--text-2xl);
  }
}

/* Page-specific styles */
.post-gezinsbudget-optimaliseren-nederland {
  color: var(--color-text-primary);
}

/* Breadcrumbs */
.post-gezinsbudget-optimaliseren-nederland .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.post-gezinsbudget-optimaliseren-nederland .breadcrumbs a {
  color: var(--color-text-light);
  text-decoration: none;
}

.post-gezinsbudget-optimaliseren-nederland .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Hero Section */
.post-gezinsbudget-optimaliseren-nederland .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-3xl);
}

.post-gezinsbudget-optimaliseren-nederland .post-hero h1 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: var(--text-4xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-gezinsbudget-optimaliseren-nederland .post-hero .lead {
  font-size: var(--text-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-weight: var(--font-weight-medium);
}

/* Content Sections - General */
.post-gezinsbudget-optimaliseren-nederland .content-section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.post-gezinsbudget-optimaliseren-nederland .content-section h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.post-gezinsbudget-optimaliseren-nederland .content-section h3 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
}

.post-gezinsbudget-optimaliseren-nederland .content-section p {
  margin-bottom: var(--space-md);
}

.post-gezinsbudget-optimaliseren-nederland .content-section ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.post-gezinsbudget-optimaliseren-nederland .content-section li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.post-gezinsbudget-optimaliseren-nederland .image-container {
  margin: var(--space-xl) 0;
  text-align: center;
}

.post-gezinsbudget-optimaliseren-nederland .image-container img {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Section 1 - Budget Overview */
.post-gezinsbudget-optimaliseren-nederland .budget-overview-section {
  background-color: var(--color-card-bg);
}

.post-gezinsbudget-optimaliseren-nederland .section-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .post-gezinsbudget-optimaliseren-nederland .section-content {
    flex-direction: row;
    align-items: center;
  }
  
  .post-gezinsbudget-optimaliseren-nederland .text-content {
    flex: 3;
    padding-right: var(--space-xl);
  }
  
  .post-gezinsbudget-optimaliseren-nederland .image-container {
    flex: 2;
    margin: 0;
  }
}

/* Section 2 - Savings Strategies */
.post-gezinsbudget-optimaliseren-nederland .savings-strategies-section {
  background-color: var(--color-background);
}

.post-gezinsbudget-optimaliseren-nederland .strategies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-gezinsbudget-optimaliseren-nederland .strategy-card {
  background-color: var(--color-card-bg);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-gezinsbudget-optimaliseren-nederland .strategy-card h3 {
  color: var(--color-accent);
  margin-top: 0;
}

.post-gezinsbudget-optimaliseren-nederland .strategy-list li {
  margin-bottom: var(--space-md);
}

.post-gezinsbudget-optimaliseren-nederland .strategy-list strong {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-medium);
}

.post-gezinsbudget-optimaliseren-nederland .centered-image {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .post-gezinsbudget-optimaliseren-nederland .strategies-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Section 3 - Financial Future */
.post-gezinsbudget-optimaliseren-nederland .financial-future-section {
  background-color: var(--color-card-bg);
}

.post-gezinsbudget-optimaliseren-nederland .future-planning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.post-gezinsbudget-optimaliseren-nederland .planning-card {
  background-color: var(--color-background);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border-left: var(--border-width-thick) solid var(--color-secondary);
}

.post-gezinsbudget-optimaliseren-nederland .planning-card h3 {
  color: var(--color-secondary);
  margin-top: 0;
}

.post-gezinsbudget-optimaliseren-nederland .conclusion {
  background-color: rgba(45, 95, 154, 0.05);
  padding: var(--space-xl);
  border-radius: var(--border-radius-lg);
  margin: var(--space-2xl) 0;
}

.post-gezinsbudget-optimaliseren-nederland .conclusion h3 {
  color: var(--color-primary);
  text-align: center;
  margin-top: 0;
}

@media (min-width: 768px) {
  .post-gezinsbudget-optimaliseren-nederland .future-planning-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Related Posts Section */
.post-gezinsbudget-optimaliseren-nederland .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-4xl) 0;
}

.post-gezinsbudget-optimaliseren-nederland .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  color: var(--color-text-primary);
}

.post-gezinsbudget-optimaliseren-nederland .related-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.post-gezinsbudget-optimaliseren-nederland .post-card {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.post-gezinsbudget-optimaliseren-nederland .post-card h3 {
  margin-top: 0;
  font-size: var(--text-lg);
}

.post-gezinsbudget-optimaliseren-nederland .post-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-gezinsbudget-optimaliseren-nederland .post-card h3 a:hover {
  color: var(--color-accent);
}

.post-gezinsbudget-optimaliseren-nederland .post-card p {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-gezinsbudget-optimaliseren-nederland .post-card .btn-text {
  display: inline-flex;
  align-items: center;
  font-weight: var(--font-weight-medium);
  margin-top: auto;
}

.post-gezinsbudget-optimaliseren-nederland .post-card .btn-text .icon {
  margin-left: var(--space-xs);
  transition: transform var(--transition-normal);
}

.post-gezinsbudget-optimaliseren-nederland .post-card .btn-text:hover .icon {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .post-gezinsbudget-optimaliseren-nederland .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .post-gezinsbudget-optimaliseren-nederland .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .post-gezinsbudget-optimaliseren-nederland .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-gezinsbudget-optimaliseren-nederland .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-gezinsbudget-optimaliseren-nederland .post-hero .lead {
    font-size: var(--text-md);
  }
  
  .post-gezinsbudget-optimaliseren-nederland .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-gezinsbudget-optimaliseren-nederland .content-section h2 {
    font-size: var(--text-2xl);
  }
  
  .post-gezinsbudget-optimaliseren-nederland .strategy-card,
  .post-gezinsbudget-optimaliseren-nederland .planning-card {
    padding: var(--space-lg);
  }
}

/* Base styles for the pension planning page */
.post-pensioenplanning-zelfstandigen-nederland {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

/* Breadcrumbs Navigation */
.post-pensioenplanning-zelfstandigen-nederland .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  border-bottom: var(--border-width-thin) solid var(--color-border);
}

.post-pensioenplanning-zelfstandigen-nederland .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-pensioenplanning-zelfstandigen-nederland .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-pensioenplanning-zelfstandigen-nederland .post-hero {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-4xl) 0;
  text-align: center;
}

.post-pensioenplanning-zelfstandigen-nederland .post-hero h1 {
  color: white;
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-pensioenplanning-zelfstandigen-nederland .post-hero .lead {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-regular);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* Content Sections */
.post-pensioenplanning-zelfstandigen-nederland .content-section {
  padding: var(--space-4xl) 0;
}

.post-pensioenplanning-zelfstandigen-nederland .section-light {
  background-color: var(--color-card-bg);
}

.post-pensioenplanning-zelfstandigen-nederland .section-accent {
  background-color: var(--color-background);
}

.post-pensioenplanning-zelfstandigen-nederland .section-cta {
  background-color: var(--color-accent);
  color: white;
  text-align: center;
}

.post-pensioenplanning-zelfstandigen-nederland h2 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
}

.post-pensioenplanning-zelfstandigen-nederland .section-accent h2 {
  text-align: center;
}

.post-pensioenplanning-zelfstandigen-nederland .section-cta h2 {
  color: white;
}

.post-pensioenplanning-zelfstandigen-nederland h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.post-pensioenplanning-zelfstandigen-nederland h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.post-pensioenplanning-zelfstandigen-nederland p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

/* Section 1 Layout */
.post-pensioenplanning-zelfstandigen-nederland .section-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: center;
}

.post-pensioenplanning-zelfstandigen-nederland .content-text {
  flex: 1;
  min-width: 300px;
}

.post-pensioenplanning-zelfstandigen-nederland .content-image {
  flex: 1;
  min-width: 300px;
}

.post-pensioenplanning-zelfstandigen-nederland .content-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Benefits List */
.post-pensioenplanning-zelfstandigen-nederland .benefits-list {
  list-style: none;
  margin: var(--space-lg) 0;
}

.post-pensioenplanning-zelfstandigen-nederland .benefits-list li {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  position: relative;
}

.post-pensioenplanning-zelfstandigen-nederland .benefits-list li::before {
  content: "•";
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  position: absolute;
  left: 0;
  font-size: var(--text-xl);
}

.post-pensioenplanning-zelfstandigen-nederland .benefit-title {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

/* Section 2 - Tax Benefits */
.post-pensioenplanning-zelfstandigen-nederland .tax-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.post-pensioenplanning-zelfstandigen-nederland .tax-benefit-card {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-pensioenplanning-zelfstandigen-nederland .tax-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-pensioenplanning-zelfstandigen-nederland .important-note {
  background-color: rgba(243, 167, 18, 0.1);
  border-left: var(--border-width-thick) solid var(--color-secondary);
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  margin-top: var(--space-xl);
}

/* Section 3 - Strategy */
.post-pensioenplanning-zelfstandigen-nederland .strategy-section {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: flex-start;
  margin-top: var(--space-xl);
}

.post-pensioenplanning-zelfstandigen-nederland .strategy-content {
  flex: 2;
  min-width: 300px;
}

.post-pensioenplanning-zelfstandigen-nederland .strategy-image {
  flex: 1;
  min-width: 300px;
}

.post-pensioenplanning-zelfstandigen-nederland .strategy-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.post-pensioenplanning-zelfstandigen-nederland .strategy-steps {
  list-style: none;
  counter-reset: step-counter;
  margin: var(--space-lg) 0;
}

.post-pensioenplanning-zelfstandigen-nederland .strategy-steps li {
  position: relative;
  padding-left: var(--space-3xl);
  margin-bottom: var(--space-lg);
  counter-increment: step-counter;
}

.post-pensioenplanning-zelfstandigen-nederland .strategy-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-primary);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
}

.post-pensioenplanning-zelfstandigen-nederland .strategy-steps li strong {
  display: block;
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.post-pensioenplanning-zelfstandigen-nederland .expert-advice {
  background-color: rgba(27, 154, 170, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  border-left: var(--border-width-thick) solid var(--color-accent);
}

/* CTA Section */
.post-pensioenplanning-zelfstandigen-nederland .cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.post-pensioenplanning-zelfstandigen-nederland .cta-wrapper p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
}

.post-pensioenplanning-zelfstandigen-nederland .cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.post-pensioenplanning-zelfstandigen-nederland .btn-outline {
  background-color: transparent;
  border: var(--border-width-thin) solid white;
  color: white;
}

.post-pensioenplanning-zelfstandigen-nederland .btn-outline:hover {
  background-color: white;
  color: var(--color-accent);
  text-decoration: none;
}

/* Related Posts Section */
.post-pensioenplanning-zelfstandigen-nederland .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-4xl) 0;
}

.post-pensioenplanning-zelfstandigen-nederland .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.post-pensioenplanning-zelfstandigen-nederland .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.post-pensioenplanning-zelfstandigen-nederland .related-post-card {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-pensioenplanning-zelfstandigen-nederland .related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-pensioenplanning-zelfstandigen-nederland .related-post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-pensioenplanning-zelfstandigen-nederland .related-post-content {
  padding: var(--space-lg);
}

.post-pensioenplanning-zelfstandigen-nederland .related-post-content h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

.post-pensioenplanning-zelfstandigen-nederland .related-post-content p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .post-pensioenplanning-zelfstandigen-nederland .post-hero {
    padding: var(--space-2xl) 0;
  }
  
  .post-pensioenplanning-zelfstandigen-nederland .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-pensioenplanning-zelfstandigen-nederland .post-hero .lead {
    font-size: var(--text-md);
  }
  
  .post-pensioenplanning-zelfstandigen-nederland .content-section {
    padding: var(--space-2xl) 0;
  }
  
  .post-pensioenplanning-zelfstandigen-nederland h2 {
    font-size: var(--text-2xl);
  }
  
  .post-pensioenplanning-zelfstandigen-nederland .tax-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .post-pensioenplanning-zelfstandigen-nederland .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-pensioenplanning-zelfstandigen-nederland .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .post-pensioenplanning-zelfstandigen-nederland .btn {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .post-pensioenplanning-zelfstandigen-nederland .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Base Styles for Spaarrekeningen Page */
.post-beste-spaarrekeningen-nederland {
  background-color: var(--color-background);
}

/* Breadcrumbs */
.post-beste-spaarrekeningen-nederland .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  border-bottom: var(--border-width-thin) solid var(--color-border);
}

.post-beste-spaarrekeningen-nederland .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.post-beste-spaarrekeningen-nederland .breadcrumbs a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Hero Section */
.post-beste-spaarrekeningen-nederland .post-hero {
  padding: var(--space-4xl) 0;
  background-color: var(--color-primary);
  color: white;
  text-align: center;
  position: relative;
}

.post-beste-spaarrekeningen-nederland .post-hero h1 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-beste-spaarrekeningen-nederland .post-hero .lead {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

/* Content Sections */
.post-beste-spaarrekeningen-nederland .content-section {
  padding: var(--space-5xl) 0;
}

.post-beste-spaarrekeningen-nederland .section-light {
  background-color: var(--color-card-bg);
}

.post-beste-spaarrekeningen-nederland .section-dark {
  background-color: var(--color-background);
}

.post-beste-spaarrekeningen-nederland .section-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.post-beste-spaarrekeningen-nederland .text-content {
  flex: 1;
}

.post-beste-spaarrekeningen-nederland .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-beste-spaarrekeningen-nederland .section-image {
  max-width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Top Rates Section */
.post-beste-spaarrekeningen-nederland .top-rates {
  background-color: var(--color-background);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-sm);
}

.post-beste-spaarrekeningen-nederland .top-rates h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-beste-spaarrekeningen-nederland .rates-list {
  list-style: none;
  padding: 0;
}

.post-beste-spaarrekeningen-nederland .rates-list li {
  padding: var(--space-sm) 0;
  border-bottom: var(--border-width-thin) solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-beste-spaarrekeningen-nederland .rates-list li:last-child {
  border-bottom: none;
}

.post-beste-spaarrekeningen-nederland .bank-name {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.post-beste-spaarrekeningen-nederland .rate {
  font-weight: var(--font-weight-bold);
  color: var(--color-success);
}

.post-beste-spaarrekeningen-nederland .note {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: var(--space-md);
}

/* Account Types Grid */
.post-beste-spaarrekeningen-nederland .account-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.post-beste-spaarrekeningen-nederland .account-type-card {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-beste-spaarrekeningen-nederland .account-type-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-beste-spaarrekeningen-nederland .account-type-card h3 {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.post-beste-spaarrekeningen-nederland .features {
  list-style: none;
  padding: 0;
  margin-top: var(--space-md);
}

.post-beste-spaarrekeningen-nederland .features li {
  padding: var(--space-xs) 0;
  position: relative;
  padding-left: var(--space-lg);
}

.post-beste-spaarrekeningen-nederland .features li::before {
  content: "✓";
  color: var(--color-success);
  position: absolute;
  left: 0;
  font-weight: var(--font-weight-bold);
}

/* Comparison Info */
.post-beste-spaarrekeningen-nederland .comparison-info {
  margin-top: var(--space-xl);
}

.post-beste-spaarrekeningen-nederland .tip-box {
  background-color: var(--color-accent);
  color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.post-beste-spaarrekeningen-nederland .tip-box h4 {
  color: white;
  margin-bottom: var(--space-sm);
}

.post-beste-spaarrekeningen-nederland .tip-box p {
  color: white;
  margin-bottom: 0;
}

/* Strategies Section */
.post-beste-spaarrekeningen-nederland .strategies-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}

.post-beste-spaarrekeningen-nederland .strategy-item {
  margin-bottom: var(--space-lg);
}

.post-beste-spaarrekeningen-nederland .strategy-item h3 {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.post-beste-spaarrekeningen-nederland .conclusion {
  background-color: var(--color-background);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.post-beste-spaarrekeningen-nederland .conclusion h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.post-beste-spaarrekeningen-nederland .conclusion ul {
  padding-left: var(--space-lg);
}

.post-beste-spaarrekeningen-nederland .conclusion li {
  margin-bottom: var(--space-sm);
}

/* Action Box */
.post-beste-spaarrekeningen-nederland .action-box {
  background-color: var(--color-primary);
  color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.post-beste-spaarrekeningen-nederland .action-box h3 {
  color: white;
  margin-bottom: var(--space-lg);
}

.post-beste-spaarrekeningen-nederland .action-box ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-beste-spaarrekeningen-nederland .action-box li {
  color: white;
  margin-bottom: var(--space-md);
}

.post-beste-spaarrekeningen-nederland .cta-container {
  text-align: center;
  margin-top: var(--space-lg);
}

/* Related Posts */
.post-beste-spaarrekeningen-nederland .related-posts {
  background-color: var(--color-background);
  padding: var(--space-5xl) 0;
}

.post-beste-spaarrekeningen-nederland .related-posts h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.post-beste-spaarrekeningen-nederland .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.post-beste-spaarrekeningen-nederland .post-card {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-beste-spaarrekeningen-nederland .post-content {
  padding: var(--space-lg);
}

.post-beste-spaarrekeningen-nederland .post-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.post-beste-spaarrekeningen-nederland .post-content h3 a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-beste-spaarrekeningen-nederland .post-content h3 a:hover {
  color: var(--color-primary);
}

.post-beste-spaarrekeningen-nederland .post-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.post-beste-spaarrekeningen-nederland .read-more {
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.post-beste-spaarrekeningen-nederland .read-more:hover {
  text-decoration: underline;
}

.post-beste-spaarrekeningen-nederland .read-more::after {
  content: "→";
  margin-left: var(--space-xs);
  transition: transform var(--transition-normal);
}

.post-beste-spaarrekeningen-nederland .read-more:hover::after {
  transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-beste-spaarrekeningen-nederland .section-content {
    flex-direction: column;
  }
  
  .post-beste-spaarrekeningen-nederland .account-types-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .post-beste-spaarrekeningen-nederland .strategies-container {
    grid-template-columns: 1fr;
  }
  
  .post-beste-spaarrekeningen-nederland .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-beste-spaarrekeningen-nederland .post-hero {
    padding: var(--space-3xl) 0;
  }
  
  .post-beste-spaarrekeningen-nederland .content-section {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 767px) {
  .post-beste-spaarrekeningen-nederland .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-beste-spaarrekeningen-nederland .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-beste-spaarrekeningen-nederland .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-beste-spaarrekeningen-nederland .content-section {
    padding: var(--space-2xl) 0;
  }
}

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

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

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

.privacy-page__last-updated {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-style: italic;
}

.privacy-page__content {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

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

.privacy-page__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-page__section h2 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

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

.privacy-page__list li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

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

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

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

@media (max-width: 767px) {
  .privacy-page__content {
    padding: var(--space-lg);
  }
  
  .privacy-page__section h2 {
    font-size: var(--text-lg);
  }
  
  .privacy-page__list {
    padding-left: var(--space-lg);
  }
}

/* Terms Page Specific Styles */
.terms-page {
  padding: var(--space-2xl) 0;
  background-color: var(--color-background);
}

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

.terms-page__updated {
  color: var(--color-text-light);
  font-size: var(--text-sm);
  margin-top: var(--space-md);
}

.terms-page__content {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

.terms-page__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-page__section h2 {
  color: var(--color-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
}

.terms-page__section p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.terms-page__section ul, 
.terms-page__section ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.terms-page__section li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.terms-page__footer {
  text-align: center;
  padding-top: var(--space-xl);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .terms-page__content {
    padding: var(--space-lg);
  }
  
  .terms-page__section h2 {
    font-size: var(--text-lg);
  }
}

.cookie-page {
  padding: var(--space-2xl) 0;
  background-color: var(--color-background);
}

.cookie-page__container {
  background-color: var(--color-card-bg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
}

.cookie-page__title {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
}

.cookie-page__last-updated {
  margin-bottom: var(--space-xl);
  border-bottom: var(--border-width-thin) solid var(--color-border);
  padding-bottom: var(--space-md);
}

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

.cookie-page__section-title {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  border-left: var(--border-width-thick) solid var(--color-accent);
  padding-left: var(--space-md);
}

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

.cookie-page__subsection-title {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

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

.cookie-page__list li {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .cookie-page {
    padding: var(--space-xl) 0;
  }
  
  .cookie-page__container {
    padding: var(--space-lg);
  }
  
  .cookie-page__section-title {
    font-size: var(--text-lg);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--text-md);
  }
  
  .cookie-page__subsection {
    padding-left: var(--space-md);
  }
}

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

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

.thank-page__card {
  text-align: center;
  padding: var(--space-2xl);
  border-radius: var(--border-radius-lg);
  background-color: var(--color-card-bg);
  box-shadow: var(--shadow-md);
  border-top: var(--border-width-medium) solid var(--color-success);
}

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

.thank-page__icon {
  margin: var(--space-xl) auto;
  height: var(--icon-xl);
  width: var(--icon-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-page__message {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-lg);
  font-size: var(--text-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-page__submessage {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-page__info {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.thank-page__button {
  padding: var(--space-sm) var(--space-xl);
  font-weight: var(--font-weight-medium);
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-xl) 0;
  }
  
  .thank-page__card {
    padding: var(--space-xl) var(--space-lg);
  }
  
  .thank-page__title {
    font-size: var(--text-2xl);
  }
  
  .thank-page__message {
    font-size: var(--text-md);
  }
  
  .thank-page__icon {
    margin: var(--space-lg) auto;
  }
}

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

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

.error-404__code {
  font-family: var(--font-primary);
  font-size: 10rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-lg);
  position: relative;
  letter-spacing: -0.05em;
}

.error-404__code::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  border-radius: var(--border-radius-full);
}

.error-404__title {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
}

.error-404__message {
  font-family: var(--font-secondary);
  font-size: var(--text-md);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.error-404__button {
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-xl);
  transition: all var(--transition-normal);
  font-weight: var(--font-weight-medium);
}

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .error-404__code {
    font-size: 7rem;
  }
  
  .error-404__title {
    font-size: var(--text-xl);
  }
  
  .error-404__message {
    font-size: var(--text-base);
    padding: 0 var(--space-md);
  }
}

@media (max-width: 480px) {
  .error-404__code {
    font-size: 5rem;
  }
  
  .error-404__code::after {
    width: 60px;
  }
  
  .error-404 {
    padding: var(--space-3xl) var(--space-md);
  }
}
