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

:root {
  /* Color Scheme - Modern Dutch-inspired palette with professional tones */
  --color-primary: #005C8A; /* Deep blue representing water/canals */
  --color-secondary: #FF6B35; /* Warm orange accent - Dutch heritage */
  --color-tertiary: #2B4162; /* Dark blue for trust and professionalism */
  --color-accent: #00A878; /* Green representing growth and financial health */
  --color-background: #F8F9FB; /* Light background for clean, airy feel */
  --color-surface: #FFFFFF; /* White surface for cards and containers */
  --color-text-primary: #1A2A3A; /* Dark text for readability */
  --color-text-secondary: #4D5E6F; /* Medium gray text for secondary content */
  --color-text-tertiary: #8494A4; /* Light gray text for captions */
  --color-border: #E2E8F0; /* Subtle border color */
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;
  
  /* Font Sizes - Using a modular scale */
  --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.875rem;  /* 30px */
  --text-3xl: 2.25rem;   /* 36px */
  --text-4xl: 2.75rem;   /* 44px */
  --text-5xl: 3.25rem;   /* 52px */
  
  /* Spacing - Dutch-inspired "gezellig" (cozy but spacious) */
  --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: 2.5rem;   /* 40px */
  --space-3xl: 3rem;     /* 48px */
  --space-4xl: 4rem;     /* 64px */
  --space-5xl: 5rem;     /* 80px */
  --space-6xl: 7.5rem;   /* 120px */
  
  /* Border Radius - Clean, modern with subtle rounding */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;
  --radius-full: 999px;
  
  /* Shadows - Subtle, professional depth */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.09);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Icon sizes */
  --icon-xs: 1rem;
  --icon-sm: 1.25rem;
  --icon-md: 1.5rem;
  --icon-lg: 2rem;
  --icon-xl: 2.5rem;
  
  /* Line heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-loose: 1.7;
}

/* 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-size: var(--text-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 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: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-tertiary:hover {
  background-color: rgba(0, 92, 138, 0.05);
}

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

.btn-accent:hover {
  background-color: #008f65;
  box-shadow: var(--shadow-md);
}

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

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

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

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

/* Card styling */
.card {
  background-color: var(--color-surface);
  border-radius: var(--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(-3px);
  box-shadow: var(--shadow-lg);
}

/* Section styling */
.section {
  padding: var(--space-5xl) 0;
}

/* Responsive adjustments */
@media (max-width: 1023px) {
  :root {
    --text-4xl: 2.5rem;
    --text-3xl: 2rem;
    --text-2xl: 1.75rem;
  }
  
  .section {
    padding: var(--space-4xl) 0;
  }
}

@media (max-width: 767px) {
  :root {
    --text-4xl: 2.25rem;
    --text-3xl: 1.75rem;
    --text-2xl: 1.5rem;
    --text-xl: 1.25rem;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-md);
  }
  
  p {
    margin-bottom: var(--space-md);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
  }
  
  .section {
    padding: var(--space-3xl) 0;
  }
  
  .card {
    padding: var(--space-lg);
  }
}

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

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

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

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

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

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

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

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

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

.bg-accent {
  background-color: var(--color-accent);
  color: white;
}
/* Header Styles */
.header {
  font-family: var(--font-primary);
  position: relative;
  width: 100%;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  position: relative;
}

/* Logo Styles */
.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);
}

.header__logo-icon {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
  margin-right: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-tertiary);
  border-radius: var(--radius-full);
  color: var(--color-surface);
}

.header__logo-text {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.header__logo-tagline {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  font-weight: 400;
  margin-left: var(--space-xs);
  padding-left: var(--space-xs);
  border-left: 1px solid var(--color-border);
  display: none;
}

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

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

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

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

.header__nav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-normal);
}

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

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

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

.header__nav-link--cta {
  color: var(--color-accent);
  font-weight: 600;
}

.header__nav-link--cta:hover {
  color: var(--color-accent);
}

.header__nav-link--cta::after {
  background-color: var(--color-accent);
}

/* Header Actions */
.header__actions {
  display: none;
}

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

.header__search-wrapper {
  position: relative;
  margin-right: var(--space-md);
}

.header__search-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xs);
  border-radius: var(--radius-full);
  transition: background-color var(--transition-normal);
}

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

.header__search-icon {
  font-size: var(--text-md);
  color: var(--color-text-secondary);
}

.header__search-form {
  position: absolute;
  top: 100%;
  right: 0;
  width: 280px;
  padding: var(--space-md);
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 100;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.header__search-form.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.header__search-input {
  flex-grow: 1;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  margin-right: var(--space-xs);
}

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

.header__search-submit:hover {
  background-color: #00496e;
}

.header__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary);
  color: white;
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.header__cta-btn:hover {
  background-color: #e85a25;
  transform: translateY(-2px);
  color: white;
}

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

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

.header__mobile-line {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

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

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

.header__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.header__mobile-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text-primary);
}

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

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

.header__mobile-nav {
  list-style: none;
  padding: var(--space-lg);
  flex-grow: 1;
}

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

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

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

.header__mobile-link--cta {
  color: var(--color-accent);
  font-weight: 600;
}

.header__mobile-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.header__mobile-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

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

.header__mobile-small-link {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.header__mobile-small-link:hover {
  color: var(--color-text-secondary);
}

/* Notification Bar */
.header__notification {
  background-color: var(--color-tertiary);
  color: white;
  padding: var(--space-xs) 0;
}

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

.header__notification-text {
  font-size: var(--text-xs);
  margin-bottom: 0;
  color: white;
}

@media (min-width: 768px) {
  .header__notification-text {
    font-size: var(--text-sm);
  }
}

.header__notification-highlight {
  font-weight: 600;
  color: var(--color-secondary);
}

.header__notification-link {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  transition: color var(--transition-normal);
}

.header__notification-link:hover {
  color: var(--color-secondary);
}

.header__notification-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: var(--text-md);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}

.header__notification-close:hover {
  opacity: 1;
}

/* Media Queries */
@media (min-width: 768px) {
  .header__container {
    padding: var(--space-md) var(--space-xl);
  }
  
  .header__logo-icon {
    width: 40px;
    height: 40px;
    font-size: var(--text-2xl);
  }
  
  .header__logo-text {
    font-size: var(--text-2xl);
  }
}

@media (min-width: 1024px) {
  .header__mobile-menu {
    width: 380px;
  }
}

@media (min-width: 1280px) {
  .header__container {
    padding: var(--space-lg) var(--space-2xl);
  }
  
  .header__logo-icon {
    width: 44px;
    height: 44px;
    font-size: var(--text-3xl);
  }
  
  .header__nav-link {
    font-size: var(--text-base);
  }
}

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

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

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

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

.main .hero-tag {
  display: inline-block;
  background-color: rgba(0, 92, 138, 0.1);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main .hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
  line-height: 1.2;
}

.main .hero p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 90%;
  line-height: var(--line-height-loose);
}

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

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

.main .hero-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-tertiary) 100%);
  opacity: 0.1;
  top: -100px;
  right: -50px;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.main .hero-shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  opacity: 0.1;
  bottom: -70px;
  left: -30px;
  z-index: -1;
  animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.main .hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform var(--transition-normal);
}

.main .hero-image-container:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.main .hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-normal);
}

.main .hero-stats {
  position: absolute;
  bottom: -30px;
  left: 50px;
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: var(--space-xl);
  z-index: 3;
}

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

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

.main .stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin-top: var(--space-xs);
}

/* Featured Posts Section */
.main .featured-posts {
  padding: var(--space-6xl) 0 var(--space-5xl);
  background-color: var(--color-surface);
  position: relative;
}

.main .featured-posts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--color-background), transparent);
  z-index: 1;
}

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

.main .section-header h2 {
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.main .section-cta .btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-md);
}

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

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

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

.main .benefits::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-tertiary) 100%);
  opacity: 0.03;
  top: -200px;
  right: -200px;
}

.main .benefits::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  opacity: 0.03;
  bottom: -150px;
  left: -150px;
}

.main .benefits-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  position: relative;
  z-index: 2;
}

.main .benefits-header h2 {
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.main .benefits-header p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.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-surface);
  border-radius: var(--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:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.main .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  opacity: 0.7;
}

.main .benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 92, 138, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  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 {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Methodology Section */
.main .methodology {
  padding: var(--space-6xl) 0;
  background-color: var(--color-surface);
  position: relative;
}

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

.main .methodology-text {
  position: relative;
}

.main .methodology-text h2 {
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.main .methodology-text > p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
}

.main .methodology-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.main .methodology-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.main .step-number {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--color-primary);
  opacity: 0.2;
  min-width: 50px;
}

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

.main .step-content p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.main .methodology-visual {
  position: relative;
}

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

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

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

.main .methodology-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 20px;
  left: 20px;
  border: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
  opacity: 0.1;
  z-index: 1;
}

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

.main .testimonials::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0.03;
  top: -150px;
  right: -150px;
}

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

.main .testimonials-header h2 {
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.main .testimonials-header p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

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

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

.main .testimonial-quote p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: 0;
  padding-left: var(--space-lg);
  font-style: italic;
}

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

.main .author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

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

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

.main .author-info p {
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
  margin-bottom: 0;
}

/* Training Topics Section */
.main .training-topics {
  padding: var(--space-5xl) 0;
  background-color: var(--color-surface);
  position: relative;
}

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

.main .topics-header h2 {
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.main .topics-header p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

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

.main .topic-card {
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.main .topic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: var(--color-primary);
}

.main .topic-card:hover h3,
.main .topic-card:hover p,
.main .topic-card:hover .topic-icon i {
  color: white;
}

.main .topic-icon {
  margin-bottom: var(--space-md);
}

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

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

.main .topic-card p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: 0;
  transition: color var(--transition-normal);
}

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

.main .contact::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-tertiary) 100%);
  opacity: 0.03;
  bottom: -200px;
  right: -200px;
}

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

.main .contact-text {
  position: relative;
}

.main .contact-text h2 {
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.main .contact-text > p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
}

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

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

.main .contact-feature i {
  font-size: var(--icon-md);
  color: var(--color-primary);
}

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

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

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

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

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

.main .contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

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

.main .form-group {
  margin-bottom: 0;
}

.main .form-group.full-width {
  grid-column: 1 / -1;
}

.main .contact-form label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.main .contact-form input,
.main .contact-form textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.main .contact-form input:focus,
.main .contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 92, 138, 0.1);
  outline: none;
}

.main .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  grid-column: 1 / -1;
}

.main .checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.main .checkbox-label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.main .submit-btn {
  grid-column: 1 / -1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
}

.main .submit-btn i {
  transition: transform var(--transition-normal);
}

.main .submit-btn:hover i {
  transform: translateX(3px);
}

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

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

.main .cookie-content p {
  margin-bottom: 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  max-width: 70%;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
  .main .hero-content {
    gap: var(--space-xl);
  }
  
  .main .hero h1 {
    font-size: var(--text-3xl);
  }
  
  .main .hero p {
    font-size: var(--text-md);
  }
  
  .main .hero-stats {
    left: 20px;
  }
}

@media (max-width: 991px) {
  .main .hero-content {
    grid-template-columns: 1fr;
  }
  
  .main .hero-text {
    order: 1;
    text-align: center;
  }
  
  .main .hero p {
    max-width: 100%;
  }
  
  .main .hero-cta {
    justify-content: center;
  }
  
  .main .hero-visual {
    order: 0;
    margin-bottom: var(--space-xl);
  }
  
  .main .hero-stats {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: var(--space-xl);
    justify-content: center;
  }
  
  .main .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .methodology-content {
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
  }
  
  .main .methodology-visual {
    order: 0;
  }
  
  .main .methodology-text {
    order: 1;
  }
  
  .main .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl) var(--space-lg);
  }
  
  .main .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
  }
  
  .main .cookie-content {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: flex-start;
  }
  
  .main .cookie-content p {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .main .hero {
    padding: var(--space-4xl) 0;
  }
  
  .main .hero h1 {
    font-size: var(--text-2xl);
  }
  
  .main .hero p {
    font-size: var(--text-base);
  }
  
  .main .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .main .hero-cta .btn {
    width: 100%;
  }
  
  .main .posts-grid,
  .main .benefits-grid,
  .main .testimonials-slider,
  .main .topics-grid {
    grid-template-columns: 1fr;
  }
  
  .main .section-header h2,
  .main .benefits-header h2,
  .main .methodology-text h2,
  .main .testimonials-header h2,
  .main .topics-header h2,
  .main .contact-text h2 {
    font-size: var(--text-2xl);
  }
  
  .main .section-description,
  .main .benefits-header p,
  .main .methodology-text > p,
  .main .testimonials-header p,
  .main .topics-header p,
  .main .contact-text > p {
    font-size: var(--text-base);
  }
  
  .main .contact-form {
    grid-template-columns: 1fr;
  }
  
  .main .submit-btn {
    width: 100%;
    justify-content: center;
  }
  
  .main .cookie-buttons {
    width: 100%;
  }
  
  .main .cookie-buttons .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .main .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .main .methodology-step {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  .main .step-number {
    min-width: auto;
  }
}

.footer {
  position: relative;
  background-color: var(--color-tertiary);
  color: var(--color-surface);
  font-family: var(--font-secondary);
  padding: var(--space-4xl) 0 var(--space-2xl);
  overflow: hidden;
}

.footer__wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(135deg, var(--color-tertiary) 25%, transparent 25%) -20px 0,
              linear-gradient(225deg, var(--color-tertiary) 25%, transparent 25%) -20px 0,
              linear-gradient(315deg, var(--color-tertiary) 25%, transparent 25%),
              linear-gradient(45deg, var(--color-tertiary) 25%, transparent 25%);
  background-size: 40px 40px;
  background-color: var(--color-background);
}

.footer__wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, 
    var(--color-primary) 0%, 
    var(--color-primary) 20%, 
    var(--color-secondary) 20%, 
    var(--color-secondary) 40%, 
    var(--color-accent) 40%, 
    var(--color-accent) 60%, 
    var(--color-primary) 60%, 
    var(--color-primary) 80%,
    var(--color-secondary) 80%, 
    var(--color-secondary) 100%);
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.footer__brand {
  grid-column: span 1;
}

.footer__title {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-surface);
  margin-bottom: var(--space-md);
  position: relative;
}

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

.footer__description {
  font-size: var(--text-sm);
  line-height: var(--line-height-normal);
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-lg);
}

.footer__feature {
  display: flex;
  align-items: center;
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal);
}

.footer__feature:hover {
  transform: translateY(-3px);
}

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

.footer__feature-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-surface);
  margin: 0;
}

.footer__links {
  grid-column: span 1;
}

.footer__heading {
  font-family: var(--font-primary);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-surface);
  margin-bottom: var(--space-lg);
  position: relative;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: var(--radius-sm);
}

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

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

.footer__nav-link {
  color: var(--color-text-tertiary);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition-normal), transform var(--transition-normal);
  display: inline-block;
  position: relative;
  padding-left: var(--space-sm);
}

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

.footer__nav-link:hover {
  color: var(--color-surface);
  transform: translateX(5px);
}

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

.footer__nav-link:focus {
  outline: none;
  color: var(--color-secondary);
}

.footer__newsletter {
  grid-column: span 1;
}

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

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

.footer__input {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-surface);
  font-size: var(--text-sm);
  transition: all var(--transition-normal);
}

.footer__input::placeholder {
  color: var(--color-text-tertiary);
}

.footer__input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
}

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

.footer__button:hover {
  background-color: #008f65;
}

.footer__button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 168, 120, 0.5);
}

.footer__checkbox-container {
  display: flex;
  align-items: flex-start;
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
  cursor: pointer;
}

.footer__checkbox {
  margin-right: var(--space-sm);
  margin-top: 2px;
}

.footer__checkbox-text {
  line-height: var(--line-height-normal);
}

.footer__inline-link {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color var(--transition-normal);
}

.footer__inline-link:hover {
  color: var(--color-secondary);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

.footer__badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
  margin: 0;
}

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: var(--space-3xl) 0 var(--space-xl);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer__brand {
    grid-column: span 1;
  }
  
  .footer__feature {
    margin-top: var(--space-md);
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer__certification {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

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

.privacy-page__container {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  max-width: 900px;
}

.privacy-page h1 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.privacy-page h2 {
  color: var(--color-tertiary);
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-sm);
}

.privacy-page h3 {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
  font-weight: 600;
}

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

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

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

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

.privacy-page__list li {
  margin-bottom: var(--space-md);
}

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

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

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

@media (max-width: 767px) {
  .privacy-page {
    padding: var(--space-2xl) 0;
  }
  
  .privacy-page__container {
    padding: var(--space-lg);
  }
  
  .privacy-page h1 {
    font-size: var(--text-2xl);
  }
  
  .privacy-page h2 {
    font-size: var(--text-lg);
    margin-top: var(--space-xl);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-xl);
  }
  
  .privacy-page__contact-info {
    padding: var(--space-md);
  }
}

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

.terms-page .container {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  max-width: 900px;
}

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

.terms-page__header h1 {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

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

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

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

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

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

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

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

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

.cookie-page__container {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
  max-width: 900px;
}

.cookie-page__header {
  margin-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-lg);
}

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

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

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

.cookie-page__section-title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  color: var(--color-tertiary);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

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

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

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

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

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

@media (max-width: 767px) {
  .cookie-page__container {
    padding: var(--space-lg);
  }
  
  .cookie-page__title {
    font-size: var(--text-2xl);
  }
  
  .cookie-page__section-title {
    font-size: var(--text-lg);
  }
  
  .cookie-page__subsection-title {
    font-size: var(--text-base);
  }
  
  .cookie-page__text,
  .cookie-page__list-item {
    font-size: var(--text-sm);
  }
}

/* Thank You Page Styles */
.thank-page {
  padding: var(--space-4xl) 0;
  background-color: var(--color-background);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

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

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

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

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

.thank-page__divider {
  height: 4px;
  width: 80px;
  background-color: var(--color-secondary);
  margin: 0 auto;
  border-radius: var(--radius-full);
}

.thank-page__message {
  margin-bottom: var(--space-3xl);
  max-width: 700px;
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.thank-page__message:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

.thank-page__subtitle {
  color: var(--color-tertiary);
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
}

.thank-page__text {
  color: var(--color-text-secondary);
  font-family: var(--font-secondary);
  font-size: var(--text-md);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-lg);
}

.thank-page__icon {
  color: var(--color-accent);
  margin: var(--space-xl) 0;
}

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

.thank-page__button {
  font-size: var(--text-md);
  padding: var(--space-md) var(--space-2xl);
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-2xl) 0;
  }
  
  .thank-page__title {
    font-size: var(--text-2xl);
  }
  
  .thank-page__subtitle {
    font-size: var(--text-lg);
  }
  
  .thank-page__text {
    font-size: var(--text-base);
  }
  
  .thank-page__message {
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
  }
}

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

/* Hero Section */
.category-page__hero {
  padding: var(--space-5xl) 0;
  background-color: var(--color-primary);
  position: relative;
}

.category-page__hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.category-page__hero h1 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: var(--text-4xl);
  font-weight: 700;
}

.category-page__hero-description {
  color: white;
  font-size: var(--text-lg);
  line-height: var(--line-height-loose);
  margin-bottom: 0;
}

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

.category-page__subtitle {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
  font-size: var(--text-md);
  color: var(--color-text-secondary);
}

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

.post-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  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;
}

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

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

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

/* Best Practices Section */
.category-page__best-practices {
  padding: var(--space-5xl) 0;
  background-color: var(--color-background);
}

.category-page__section-intro {
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
  font-size: var(--text-md);
  color: var(--color-text-secondary);
}

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

.category-page__practice-item {
  padding: var(--space-xl);
  height: 100%;
}

.category-page__practice-item .icon-container {
  margin-bottom: var(--space-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: rgba(0, 168, 120, 0.1);
}

.category-page__practice-item h4 {
  margin-bottom: var(--space-md);
  color: var(--color-tertiary);
  font-weight: 600;
}

.category-page__practice-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Statistics Section */
.category-page__statistics {
  padding: var(--space-5xl) 0;
  background-color: var(--color-surface);
}

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

.category-page__stat-group {
  padding: var(--space-xl);
  background-color: var(--color-background);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.category-page__stat-group h3 {
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  position: relative;
  padding-bottom: var(--space-sm);
}

.category-page__stat-group h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
}

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

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

.category-page__stat-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.category-page__stat-list li strong {
  color: var(--color-tertiary);
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .category-page__posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-page__practices-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__stats-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .category-page__hero {
    padding: var(--space-3xl) 0;
  }
  
  .category-page__hero h1 {
    font-size: var(--text-3xl);
  }
  
  .category-page__hero-description {
    font-size: var(--text-base);
  }
  
  .category-page__posts-grid {
    grid-template-columns: 1fr;
  }
  
  .category-page__posts,
  .category-page__best-practices,
  .category-page__statistics {
    padding: var(--space-3xl) 0;
  }
  
  .category-page__subtitle,
  .category-page__section-intro {
    margin-bottom: var(--space-xl);
    font-size: var(--text-base);
  }
}

/* Page-specific styles */
.post-uitgavenbewustzijn-creeren-binnen-organisatie .breadcrumbs {
  padding: var(--space-md) 0;
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero {
  background-color: var(--color-primary);
  color: var(--color-surface);
  padding: var(--space-5xl) 0;
  position: relative;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero h1 {
  color: var(--color-surface);
  margin-bottom: var(--space-md);
  font-size: var(--text-4xl);
  max-width: 80%;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero .lead {
  font-size: var(--text-lg);
  line-height: var(--line-height-loose);
  color: var(--color-surface);
  max-width: 90%;
  margin-bottom: 0;
}

/* Fundamentals Section */
.post-uitgavenbewustzijn-creeren-binnen-organisatie .fundamentals-section {
  padding: var(--space-5xl) 0;
  background-color: var(--color-surface);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .content-wrapper {
  display: flex;
  gap: var(--space-3xl);
  align-items: center;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .text-content {
  flex: 1;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .image-container img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .principles-list {
  list-style-type: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .principles-list li {
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  background-color: var(--color-background);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
}

/* Legal Framework Section */
.post-uitgavenbewustzijn-creeren-binnen-organisatie .legal-framework-section {
  padding: var(--space-5xl) 0;
  background-color: var(--color-background);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .framework-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .framework-item {
  background-color: var(--color-surface);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .framework-item h3 {
  color: var(--color-tertiary);
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .center-image {
  display: flex;
  justify-content: center;
  margin-top: var(--space-3xl);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .center-image img {
  max-width: 80%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Implementation Section */
.post-uitgavenbewustzijn-creeren-binnen-organisatie .implementation-section {
  padding: var(--space-5xl) 0;
  background-color: var(--color-surface);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .strategy-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .strategy-step {
  background-color: var(--color-background);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .strategy-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .strategy-step h3 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .key-takeaways {
  background-color: var(--color-tertiary);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-3xl) 0;
  color: var(--color-surface);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .key-takeaways h3 {
  color: var(--color-surface);
  margin-bottom: var(--space-md);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .key-takeaways ul {
  padding-left: var(--space-xl);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .key-takeaways li {
  margin-bottom: var(--space-sm);
  color: var(--color-surface);
}

/* Related Posts Section */
.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-posts-section {
  padding: var(--space-5xl) 0;
  background-color: var(--color-background);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-post-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-post-card p {
  flex-grow: 1;
  margin-bottom: var(--space-lg);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-post-card .btn {
  align-self: flex-start;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero h1 {
    max-width: 100%;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero .lead {
    max-width: 100%;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .content-wrapper {
    flex-direction: column;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .framework-grid {
    grid-template-columns: 1fr;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .strategy-steps {
    grid-template-columns: 1fr;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero {
    padding: var(--space-3xl) 0;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .center-image img {
    max-width: 100%;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .fundamentals-section,
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .legal-framework-section,
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .implementation-section,
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .related-posts-section {
    padding: var(--space-3xl) 0;
  }
}

/* Base styles specific to this post */
.post-uitgavenbewustzijn-creeren-binnen-organisatie {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
}

/* Breadcrumbs */
.post-uitgavenbewustzijn-creeren-binnen-organisatie .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
  border-bottom: 1px solid var(--color-border);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero {
  padding: var(--space-5xl) 0;
  background-color: var(--color-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: white;
  max-width: 800px;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero .lead {
  font-size: var(--text-xl);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  color: rgba(255, 255, 255, 0.9);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .expense-hero-image {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xl);
}

/* Content Sections - General */
.post-uitgavenbewustzijn-creeren-binnen-organisatie .content-section {
  padding: var(--space-5xl) 0;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .content-section h2 {
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
  font-weight: 700;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .content-section h3 {
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .content-section h4 {
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .content-section p {
  font-size: var(--text-base);
  line-height: var(--line-height-loose);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .content-section img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
}

/* Section 1 - Automation */
.post-uitgavenbewustzijn-creeren-binnen-organisatie .section-automation {
  background-color: var(--color-surface);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .automation-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .feature-card {
  background-color: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .feature-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .feature-card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Section 2 - Analytics */
.post-uitgavenbewustzijn-creeren-binnen-organisatie .section-analytics {
  background-color: var(--color-background);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .analytics-benefits ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: var(--space-md);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .analytics-benefits li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .analytics-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .case-study {
  background-color: var(--color-surface);
  border-left: 4px solid var(--color-secondary);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .case-study h4 {
  color: var(--color-secondary);
  margin-top: 0;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .case-study p {
  margin-bottom: 0;
}

/* Section 3 - Integration */
.post-uitgavenbewustzijn-creeren-binnen-organisatie .section-integration {
  background-color: var(--color-surface);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .integration-approaches {
  margin-top: var(--space-xl);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .approach-card {
  background-color: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .approach-card h4 {
  color: var(--color-primary);
  margin-top: 0;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .approach-card p {
  margin-bottom: 0;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .key-takeaways {
  background-color: rgba(0, 92, 138, 0.05);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .key-takeaways h3 {
  color: var(--color-primary);
  margin-top: 0;
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .key-takeaways ol {
  padding-left: var(--space-xl);
  margin-top: var(--space-md);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .key-takeaways li {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

/* Related Posts Section */
.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-posts-section {
  padding: var(--space-5xl) 0;
  background-color: var(--color-background);
  border-top: 1px solid var(--color-border);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: var(--text-2xl);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-post-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-post-card h3 {
  font-size: var(--text-lg);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-post-card a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-post-card a:hover {
  color: var(--color-accent);
}

.post-uitgavenbewustzijn-creeren-binnen-organisatie .related-post-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .automation-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .content-section h2 {
    font-size: var(--text-2xl);
  }
}

@media (max-width: 767px) {
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .automation-features {
    grid-template-columns: 1fr;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero {
    padding: var(--space-3xl) 0;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .content-section {
    padding: var(--space-3xl) 0;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-organisatie .post-hero .lead {
    font-size: var(--text-base);
  }
}

/* Base Styles for the Post Page */
.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

/* Breadcrumbs Navigation */
.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-surface);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .post-hero {
  background-color: var(--color-tertiary);
  color: white;
  padding: var(--space-5xl) 0;
  position: relative;
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .post-hero h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: white;
  max-width: 800px;
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .post-hero .lead {
  font-size: var(--text-xl);
  line-height: var(--line-height-normal);
  max-width: 800px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* Content Sections - General */
.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .content-section {
  padding: var(--space-5xl) 0;
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .content-section h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .content-section h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
  color: var(--color-tertiary);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .content-section p {
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-loose);
  color: var(--color-text-secondary);
}

/* Content Wrapper for Sections with Image + Text */
.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .content-wrapper {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .text-content {
  flex: 3;
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .image-container {
  flex: 2;
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .image-container img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Section 1 - Foundation */
.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .section-foundation {
  background-color: var(--color-surface);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .checklist {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .checklist li {
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-md);
  color: var(--color-text-secondary);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .checklist li::before {
  content: "✓";
  color: var(--color-accent);
  position: absolute;
  left: -20px;
  font-weight: bold;
}

/* Section 2 - Strategies */
.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .section-strategies {
  background-color: var(--color-background);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .strategy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .strategy-card {
  padding: var(--space-lg);
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-primary);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .strategy-card h3 {
  color: var(--color-primary);
  margin-top: 0;
  font-size: var(--text-lg);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .strategy-card p {
  margin-bottom: 0;
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .case-study {
  background-color: rgba(0, 92, 138, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-xl);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .case-study h3 {
  margin-top: 0;
  color: var(--color-primary);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .case-study p {
  margin-bottom: 0;
}

/* Section 3 - Implementation */
.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .section-implementation {
  background-color: var(--color-surface);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .implementation-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-xl);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .implementation-steps > li {
  position: relative;
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .implementation-steps > li strong {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .implementation-steps > li ul {
  padding-left: var(--space-lg);
  margin-top: var(--space-sm);
  list-style-type: circle;
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .implementation-steps > li ul li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

/* Related Posts Section */
.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-5xl) 0;
  border-top: 1px solid var(--color-border);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: var(--text-2xl);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .related-post-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .related-post-card .card-content {
  padding: var(--space-lg);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .related-post-card h3 {
  font-size: var(--text-md);
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .related-post-card h3 a {
  color: var(--color-tertiary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .related-post-card h3 a:hover {
  color: var(--color-primary);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .related-post-card p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .read-more {
  display: inline-block;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-normal);
}

.post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .read-more:hover {
  color: var(--color-accent);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .content-section {
    padding: var(--space-4xl) 0;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .strategy-cards {
    grid-template-columns: 1fr;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .content-wrapper {
    flex-direction: column;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .image-container {
    order: -1;
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .post-hero {
    padding: var(--space-3xl) 0;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .post-hero h1 {
    font-size: var(--text-2xl);
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .post-hero .lead {
    font-size: var(--text-md);
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .content-section {
    padding: var(--space-3xl) 0;
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .content-section h2 {
    font-size: var(--text-xl);
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .content-section h3 {
    font-size: var(--text-lg);
  }
  
  .post-uitgavenbewustzijn-creeren-binnen-uw-organisatie .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

/* Base styles for the post page */
.post-strategische-kostenbesparingsmethoden-mkb {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

/* Breadcrumbs */
.post-strategische-kostenbesparingsmethoden-mkb .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-surface);
}

.post-strategische-kostenbesparingsmethoden-mkb .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-strategische-kostenbesparingsmethoden-mkb .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-strategische-kostenbesparingsmethoden-mkb .post-hero {
  background-color: var(--color-tertiary);
  color: white;
  padding: var(--space-5xl) 0;
  text-align: center;
  position: relative;
}

.post-strategische-kostenbesparingsmethoden-mkb .post-hero h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: white;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-strategische-kostenbesparingsmethoden-mkb .post-hero .lead {
  font-size: var(--text-lg);
  line-height: var(--line-height-loose);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

/* Content Sections - General */
.post-strategische-kostenbesparingsmethoden-mkb .content-section {
  padding: var(--space-5xl) 0;
}

.post-strategische-kostenbesparingsmethoden-mkb .content-section h2 {
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
  font-weight: 700;
}

.post-strategische-kostenbesparingsmethoden-mkb .content-section h3 {
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
}

.post-strategische-kostenbesparingsmethoden-mkb .content-section h4 {
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
}

.post-strategische-kostenbesparingsmethoden-mkb .content-section p {
  font-size: var(--text-base);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.post-strategische-kostenbesparingsmethoden-mkb .section-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
  max-width: 100%;
  height: auto;
}

/* Financial Analysis Section */
.post-strategische-kostenbesparingsmethoden-mkb .financial-analysis-section {
  background-color: var(--color-surface);
}

.post-strategische-kostenbesparingsmethoden-mkb .section-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: center;
}

.post-strategische-kostenbesparingsmethoden-mkb .text-content {
  flex: 1;
  min-width: 300px;
}

.post-strategische-kostenbesparingsmethoden-mkb .image-container {
  flex: 1;
  min-width: 300px;
}

.post-strategische-kostenbesparingsmethoden-mkb .cost-analysis-list {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.post-strategische-kostenbesparingsmethoden-mkb .cost-analysis-list li {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  line-height: var(--line-height-loose);
}

/* Optimization Section */
.post-strategische-kostenbesparingsmethoden-mkb .optimization-section {
  background-color: var(--color-background);
}

.post-strategische-kostenbesparingsmethoden-mkb .optimization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.post-strategische-kostenbesparingsmethoden-mkb .optimization-card {
  background-color: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-strategische-kostenbesparingsmethoden-mkb .optimization-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-strategische-kostenbesparingsmethoden-mkb .optimization-card h3 {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  margin-top: 0;
}

.post-strategische-kostenbesparingsmethoden-mkb .case-study {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.post-strategische-kostenbesparingsmethoden-mkb .case-study h4 {
  color: white;
  margin-top: 0;
}

.post-strategische-kostenbesparingsmethoden-mkb .case-study p,
.post-strategische-kostenbesparingsmethoden-mkb .case-study li {
  color: white;
}

.post-strategische-kostenbesparingsmethoden-mkb .case-study ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
}

.post-strategische-kostenbesparingsmethoden-mkb .case-study li {
  margin-bottom: var(--space-sm);
}

/* Strategy Section */
.post-strategische-kostenbesparingsmethoden-mkb .strategy-section {
  background-color: var(--color-surface);
}

.post-strategische-kostenbesparingsmethoden-mkb .strategy-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.post-strategische-kostenbesparingsmethoden-mkb .strategy-column {
  background-color: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.post-strategische-kostenbesparingsmethoden-mkb .strategy-column h3 {
  color: var(--color-primary);
  margin-top: 0;
}

.post-strategische-kostenbesparingsmethoden-mkb .strategy-column ul,
.post-strategische-kostenbesparingsmethoden-mkb .strategy-column ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.post-strategische-kostenbesparingsmethoden-mkb .strategy-column li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.post-strategische-kostenbesparingsmethoden-mkb .key-takeaways {
  background-color: var(--color-tertiary);
  color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
}

.post-strategische-kostenbesparingsmethoden-mkb .key-takeaways h3 {
  color: white;
  margin-top: 0;
}

.post-strategische-kostenbesparingsmethoden-mkb .key-takeaways p,
.post-strategische-kostenbesparingsmethoden-mkb .key-takeaways li {
  color: white;
}

.post-strategische-kostenbesparingsmethoden-mkb .key-takeaways ol {
  padding-left: var(--space-xl);
  margin: var(--space-md) 0;
}

.post-strategische-kostenbesparingsmethoden-mkb .key-takeaways li {
  margin-bottom: var(--space-md);
}

/* Related Posts Section */
.post-strategische-kostenbesparingsmethoden-mkb .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-5xl) 0;
}

.post-strategische-kostenbesparingsmethoden-mkb .related-posts-section h2 {
  text-align: center;
  margin-bottom: var(--space-2xl);
  font-size: var(--text-3xl);
}

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

.post-strategische-kostenbesparingsmethoden-mkb .related-post-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.post-strategische-kostenbesparingsmethoden-mkb .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-strategische-kostenbesparingsmethoden-mkb .related-post-card h3 {
  font-size: var(--text-lg);
  margin: var(--space-lg) var(--space-lg) var(--space-sm);
}

.post-strategische-kostenbesparingsmethoden-mkb .related-post-card p {
  margin: 0 var(--space-lg) var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.post-strategische-kostenbesparingsmethoden-mkb .read-more-link {
  display: inline-block;
  margin: 0 var(--space-lg) var(--space-lg);
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--transition-normal);
}

.post-strategische-kostenbesparingsmethoden-mkb .read-more-link:hover {
  color: var(--color-accent);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-strategische-kostenbesparingsmethoden-mkb .post-hero {
    padding: var(--space-4xl) 0;
  }
  
  .post-strategische-kostenbesparingsmethoden-mkb .content-section {
    padding: var(--space-4xl) 0;
  }
  
  .post-strategische-kostenbesparingsmethoden-mkb .related-posts-section {
    padding: var(--space-4xl) 0;
  }
}

@media (max-width: 767px) {
  .post-strategische-kostenbesparingsmethoden-mkb .post-hero {
    padding: var(--space-3xl) 0;
  }
  
  .post-strategische-kostenbesparingsmethoden-mkb .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-strategische-kostenbesparingsmethoden-mkb .post-hero .lead {
    font-size: var(--text-base);
  }
  
  .post-strategische-kostenbesparingsmethoden-mkb .content-section {
    padding: var(--space-3xl) 0;
  }
  
  .post-strategische-kostenbesparingsmethoden-mkb .section-content {
    flex-direction: column;
  }
  
  .post-strategische-kostenbesparingsmethoden-mkb .related-posts-section {
    padding: var(--space-3xl) 0;
  }
  
  .post-strategische-kostenbesparingsmethoden-mkb .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

/* Page-specific styles */
.post-data-gedreven-uitgavenbeheer-corporates {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  background-color: var(--color-background);
}

/* Breadcrumbs */
.post-data-gedreven-uitgavenbeheer-corporates .breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
}

.post-data-gedreven-uitgavenbeheer-corporates .breadcrumbs a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-data-gedreven-uitgavenbeheer-corporates .breadcrumbs a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.post-data-gedreven-uitgavenbeheer-corporates .post-hero {
  background-color: var(--color-tertiary);
  color: white;
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
}

.post-data-gedreven-uitgavenbeheer-corporates .post-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.post-data-gedreven-uitgavenbeheer-corporates .post-hero h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: white;
  max-width: 800px;
}

.post-data-gedreven-uitgavenbeheer-corporates .post-hero .lead {
  font-size: var(--text-xl);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  color: rgba(255, 255, 255, 0.9);
}

.post-data-gedreven-uitgavenbeheer-corporates .post-hero .hero-image {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xl);
}

/* Content Sections - General */
.post-data-gedreven-uitgavenbeheer-corporates .content-section {
  padding: var(--space-5xl) 0;
}

.post-data-gedreven-uitgavenbeheer-corporates .content-section h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
  position: relative;
}

.post-data-gedreven-uitgavenbeheer-corporates .content-section h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-secondary);
  margin-top: var(--space-sm);
  border-radius: var(--radius-full);
}

.post-data-gedreven-uitgavenbeheer-corporates .content-section p {
  font-size: var(--text-md);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
}

.post-data-gedreven-uitgavenbeheer-corporates .section-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2xl);
}

.post-data-gedreven-uitgavenbeheer-corporates .section-text {
  flex: 1;
  min-width: 300px;
}

.post-data-gedreven-uitgavenbeheer-corporates .section-image {
  flex: 1;
  min-width: 300px;
}

.post-data-gedreven-uitgavenbeheer-corporates .section-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-data-gedreven-uitgavenbeheer-corporates .section-image img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Section 1 - Data Analytics */
.post-data-gedreven-uitgavenbeheer-corporates .data-analytics-section {
  background-color: var(--color-surface);
}

.post-data-gedreven-uitgavenbeheer-corporates .benefits-list {
  margin: var(--space-xl) 0;
  padding-left: var(--space-xl);
}

.post-data-gedreven-uitgavenbeheer-corporates .benefits-list li {
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-md);
  color: var(--color-text-secondary);
}

.post-data-gedreven-uitgavenbeheer-corporates .benefits-list li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

/* Section 2 - KPI Dashboard */
.post-data-gedreven-uitgavenbeheer-corporates .kpi-dashboard-section {
  background-color: var(--color-background);
}

.post-data-gedreven-uitgavenbeheer-corporates .dashboard-elements {
  margin: var(--space-xl) 0;
  padding-left: var(--space-xl);
  counter-reset: dashboard-counter;
}

.post-data-gedreven-uitgavenbeheer-corporates .dashboard-elements li {
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-md);
  color: var(--color-text-secondary);
}

.post-data-gedreven-uitgavenbeheer-corporates .dashboard-elements li::before {
  color: var(--color-primary);
  font-weight: 600;
}

/* Section 3 - Predictive Analytics */
.post-data-gedreven-uitgavenbeheer-corporates .predictive-analytics-section {
  background-color: var(--color-surface);
}

.post-data-gedreven-uitgavenbeheer-corporates .implementation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.post-data-gedreven-uitgavenbeheer-corporates .step {
  background-color: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.post-data-gedreven-uitgavenbeheer-corporates .step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.post-data-gedreven-uitgavenbeheer-corporates .step h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-data-gedreven-uitgavenbeheer-corporates .step p {
  font-size: var(--text-base);
  margin-bottom: 0;
}

.post-data-gedreven-uitgavenbeheer-corporates .case-study {
  background-color: rgba(0, 92, 138, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: var(--space-2xl);
}

.post-data-gedreven-uitgavenbeheer-corporates .case-study h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.post-data-gedreven-uitgavenbeheer-corporates .case-study p {
  margin-bottom: 0;
}

/* Related Posts Section */
.post-data-gedreven-uitgavenbeheer-corporates .related-posts-section {
  background-color: var(--color-background);
  padding: var(--space-5xl) 0;
  border-top: 1px solid var(--color-border);
}

.post-data-gedreven-uitgavenbeheer-corporates .related-posts-section h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.post-data-gedreven-uitgavenbeheer-corporates .related-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.post-data-gedreven-uitgavenbeheer-corporates .post-card {
  background-color: var(--color-surface);
  border-radius: var(--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;
}

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

.post-data-gedreven-uitgavenbeheer-corporates .post-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.post-data-gedreven-uitgavenbeheer-corporates .post-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.post-data-gedreven-uitgavenbeheer-corporates .post-card h3 a:hover {
  color: var(--color-accent);
}

.post-data-gedreven-uitgavenbeheer-corporates .post-card p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.post-data-gedreven-uitgavenbeheer-corporates .read-more {
  display: inline-block;
  color: var(--color-secondary);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-normal);
  position: relative;
}

.post-data-gedreven-uitgavenbeheer-corporates .read-more:after {
  content: '→';
  display: inline-block;
  margin-left: var(--space-xs);
  transition: transform var(--transition-normal);
}

.post-data-gedreven-uitgavenbeheer-corporates .read-more:hover {
  color: var(--color-accent);
}

.post-data-gedreven-uitgavenbeheer-corporates .read-more:hover:after {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .post-data-gedreven-uitgavenbeheer-corporates .post-hero {
    padding: var(--space-4xl) 0;
  }
  
  .post-data-gedreven-uitgavenbeheer-corporates .content-section {
    padding: var(--space-4xl) 0;
  }
  
  .post-data-gedreven-uitgavenbeheer-corporates .related-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .post-data-gedreven-uitgavenbeheer-corporates .post-hero {
    padding: var(--space-3xl) 0;
  }
  
  .post-data-gedreven-uitgavenbeheer-corporates .post-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .post-data-gedreven-uitgavenbeheer-corporates .post-hero .lead {
    font-size: var(--text-lg);
  }
  
  .post-data-gedreven-uitgavenbeheer-corporates .content-section {
    padding: var(--space-3xl) 0;
  }
  
  .post-data-gedreven-uitgavenbeheer-corporates .content-section h2 {
    font-size: var(--text-2xl);
  }
  
  .post-data-gedreven-uitgavenbeheer-corporates .section-content {
    flex-direction: column;
  }
  
  .post-data-gedreven-uitgavenbeheer-corporates .related-posts {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .post-data-gedreven-uitgavenbeheer-corporates .implementation-steps {
    grid-template-columns: 1fr;
  }
}

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

.privacy-page .container {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-2xl);
  max-width: 960px;
}

.privacy-page__header {
  margin-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-lg);
}

.privacy-page h1 {
  color: var(--color-primary);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.privacy-page h2 {
  color: var(--color-tertiary);
  font-size: var(--text-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.privacy-page h3 {
  color: var(--color-text-primary);
  font-size: var(--text-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

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

.privacy-page__contact {
  background-color: var(--color-background);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
  margin-top: var(--space-md);
}

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

@media (max-width: 767px) {
  .privacy-page .container {
    padding: var(--space-lg);
  }
  
  .privacy-page h1 {
    font-size: var(--text-2xl);
  }
  
  .privacy-page h2 {
    font-size: var(--text-lg);
  }
  
  .privacy-page h3 {
    font-size: var(--text-md);
  }
  
  .privacy-page__section {
    margin-bottom: var(--space-xl);
  }
}

.terms-page {
  background-color: var(--color-background);
  padding: var(--space-3xl) 0;
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
}

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

.terms-page__header h1 {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.terms-page__updated {
  color: var(--color-text-tertiary);
  font-size: var(--text-sm);
  font-style: italic;
  margin-bottom: var(--space-md);
}

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

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

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

.terms-page__section h2 {
  color: var(--color-tertiary);
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-md);
  border-left: 3px solid var(--color-primary);
  padding-left: var(--space-md);
}

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

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

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

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

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

.cookie-page__container {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl) var(--space-2xl);
  max-width: 900px;
}

.cookie-page__header {
  margin-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-lg);
}

.cookie-page__title {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.cookie-page__updated {
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
  margin-bottom: 0;
}

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

.cookie-page__section-title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  color: var(--color-tertiary);
  margin-bottom: 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 {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

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

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

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

@media (max-width: 767px) {
  .cookie-page__container {
    padding: var(--space-lg);
  }
  
  .cookie-page__title {
    font-size: var(--text-2xl);
  }
  
  .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 {
  background-color: var(--color-background);
  padding: var(--space-4xl) 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

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

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

.thank-page__header {
  margin-bottom: var(--space-3xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.thank-page__icon {
  margin: var(--space-lg) 0;
}

.thank-page__message {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
  margin-bottom: var(--space-3xl);
  width: 100%;
}

.thank-page__message:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

.thank-page__subtitle {
  color: var(--color-tertiary);
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.thank-page__text {
  color: var(--color-text-secondary);
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-md);
}

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

.thank-page__button {
  font-weight: 600;
  padding: var(--space-md) var(--space-2xl);
}

.thank-page__additional-info {
  margin-top: var(--space-xl);
  color: var(--color-text-tertiary);
  font-size: var(--text-sm);
  max-width: 600px;
}

@media (max-width: 767px) {
  .thank-page {
    padding: var(--space-2xl) 0;
  }
  
  .thank-page__title {
    font-size: var(--text-2xl);
  }
  
  .thank-page__subtitle {
    font-size: var(--text-lg);
  }
  
  .thank-page__message {
    padding: var(--space-lg);
  }
  
  .thank-page__button {
    width: 100%;
  }
}

  .error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: var(--space-6xl) 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;
    margin: 0 auto;
  }

  .error-404__code {
    font-family: var(--font-primary);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    line-height: 1;
    position: relative;
    display: inline-block;
  }

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

  .error-404__title {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 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-2xl);
    line-height: var(--line-height-loose);
  }

  .error-404__button {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }

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

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

    .error-404__code {
      font-size: var(--text-4xl);
    }

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

    .error-404__message {
      font-size: var(--text-base);
      margin-bottom: var(--space-xl);
    }
  }

  @media (max-width: 480px) {
    .error-404__code {
      font-size: var(--text-3xl);
    }

    .error-404__code::after {
      width: 60px;
    }
  }
